/* ============================================================
   DRKJ — design system v3 "light cinematic"
   Warm ivory canvas, pastel aurora light, floating imagery,
   oversized serif, choreographed motion. Brass + ink + indigo.
   ============================================================ */

:root {
  --paper: #f7f4ed;
  --paper-2: #efeae0;
  --card: #fffdf8;
  --ink: #171a21;
  --ink-2: #10131a;
  --text: #1d212a;
  --text-2: #575d69;
  --muted: #8a8f9a;
  --brass: #a6874e;
  --brass-2: #c9ac72;
  --indigo: #5b6cdf;
  --line: rgba(23, 26, 33, 0.12);
  --line-brass: rgba(166, 135, 78, 0.45);
  --glass: rgba(255, 253, 248, 0.6);
  --shadow-soft: 0 30px 70px -30px rgba(23, 26, 33, 0.25);

  --display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --serif: Charter, "Bitstream Charter", "Sitka Text", Cambria, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "Cascadia Code", Menlo, Consolas, monospace;

  --shell: 1180px;
  --measure: 70ch;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--brass); color: #fff; }

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 28px; }

/* film grain, very quiet on light */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.02 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- cursor ---------- */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 999; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor-dot { width: 6px; height: 6px; background: var(--ink); }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(166, 135, 78, 0.7); transition: width 0.25s, height 0.25s, border-color 0.25s; }
.cursor-ring.is-link { width: 58px; height: 58px; border-color: var(--indigo); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- type helpers ---------- */
.kicker { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass); display: block; }
.meta { font-family: var(--sans); font-size: 0.8rem; color: var(--muted); }
.tag { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; border: 1px solid var(--line); padding: 0.25em 0.7em; border-radius: 999px; color: var(--text-2); white-space: nowrap; background: rgba(255, 253, 248, 0.7); }
.tag--accent { color: var(--brass); border-color: var(--line-brass); }

/* ---------- masthead ---------- */
.masthead, .masthead--dark, .masthead--solid {
  position: fixed; inset: 0 0 auto 0; z-index: 20;
  padding: 18px 0;
  background: rgba(247, 244, 237, 0.66);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(23, 26, 33, 0.08);
}
.masthead .shell { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.wordmark { font-family: var(--display); font-weight: 600; font-size: 1.3rem; letter-spacing: 0.16em; text-decoration: none; color: var(--ink); position: relative; }
.wordmark::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1.5px; background: linear-gradient(90deg, var(--brass), transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
.wordmark:hover::after { transform: scaleX(1); }
.nav { display: flex; gap: 26px; flex-wrap: wrap; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; }
.nav a { text-decoration: none; color: var(--text-2); padding-bottom: 3px; border-bottom: 1px solid transparent; transition: color 0.2s, border-color 0.2s; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--brass); border-bottom-color: var(--brass); }
.nav a.lang {
  border: 1px solid var(--line-brass);
  border-radius: 999px;
  padding: 4px 14px;
  color: var(--brass);
  border-bottom: 1px solid var(--line-brass);
}
.nav a.lang:hover { background: rgba(166, 135, 78, 0.12); border-color: var(--brass); }

@media (max-width: 600px) {
  .masthead, .masthead--dark, .masthead--solid { padding: 11px 0; }
  .masthead .shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .wordmark { font-size: 1.15rem; line-height: 1.2; }
  .nav {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: space-between;
    width: 100%;
    gap: 7px 12px;
    font-size: 0.62rem;
    line-height: 1.25;
    letter-spacing: 0.12em;
  }
  .nav a { padding-bottom: 1px; }
}

.progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: linear-gradient(90deg, var(--brass), var(--indigo)); z-index: 30; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 150px 0 110px;
  overflow: hidden;
  isolation: isolate;
}
.hero .fx { position: absolute; inset: 0; z-index: -2; }
.hero .aurora {
  position: absolute; inset: -18%;
  z-index: -3;
  background:
    radial-gradient(46% 40% at 80% 12%, rgba(201, 172, 114, 0.28), transparent 70%),
    radial-gradient(38% 44% at 8% 78%, rgba(91, 108, 223, 0.16), transparent 70%),
    radial-gradient(30% 30% at 50% 50%, rgba(224, 112, 90, 0.07), transparent 70%);
  filter: blur(46px);
  animation: aurora 18s ease-in-out infinite alternate;
}
@keyframes aurora { from { transform: translate3d(-2%, -1%, 0) scale(1); } to { transform: translate3d(2.5%, 2%, 0) scale(1.07); } }
.hero .ghost {
  position: absolute; right: -2%; top: 8%;
  font-family: var(--display);
  font-size: clamp(12rem, 26vw, 26rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(166, 135, 78, 0.18);
  pointer-events: none; user-select: none; z-index: -1;
  animation: ghostIn 2s 0.3s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes ghostIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes rise { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }

.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 56px; } }

.hero .kicker { margin-bottom: 26px; animation: rise 0.8s 0.1s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.hero h1.stack { font-family: var(--display); font-weight: 500; letter-spacing: -0.02em; color: var(--ink); animation: rise 1.05s 0.42s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.hero .stack span.l1, .hero .stack span.l2, .hero .stack span.l3 { display: block; font-size: clamp(3rem, 8.4vw, 7rem); line-height: 0.98; }
.hero .stack .l1 { color: var(--ink); }
.hero .stack .l2 { color: transparent; -webkit-text-stroke: 1.5px rgba(23, 26, 33, 0.55); }
.hero .stack .l3 {
  font-style: italic;
  background: linear-gradient(100deg, #8a6d3a 15%, var(--brass-2) 50%, #8a6d3a 85%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.rotator { display: inline-grid; align-items: end; vertical-align: baseline; }
.rotator .word { grid-area: 1 / 1; align-self: end; position: static; width: auto; opacity: 0; transform: translateY(36%) rotateX(50deg); transition: none; will-change: transform, opacity; }
.rotator .word.is-on { opacity: 1; transform: none; transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1); }
.hero .byline { margin-top: 34px; max-width: 52ch; font-size: clamp(1rem, 1.5vw, 1.16rem); line-height: 1.65; color: var(--text-2); animation: rise 1s 0.92s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.hero .byline strong { color: var(--ink); font-weight: 600; }

.hero-now {
  margin-top: 42px;
  display: inline-flex; align-items: baseline; gap: 14px;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 16px 26px;
  background: var(--glass);
  box-shadow: 0 16px 40px -22px rgba(23, 26, 33, 0.35);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
  animation: rise 1s 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  position: relative; overflow: hidden; max-width: 100%;
}
.hero-now::before { content: none; }
.hero--film .hero-now { background: rgba(14, 17, 26, 0.55); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-color: rgba(255, 255, 255, 0.16); }
.hero--film .hero-now span.t { color: #ece8df; }
@keyframes sheen { 0% { transform: translateX(-100%); } 45%, 100% { transform: translateX(100%); } }
.hero-now:hover { border-color: var(--line-brass); box-shadow: 0 22px 50px -22px rgba(23, 26, 33, 0.45); }
.hero-now .kicker { margin: 0; }
.hero-now span.t { font-family: var(--serif); font-size: 1rem; color: var(--ink); }
.hero-now span.arrow { color: var(--brass); font-family: var(--sans); transition: transform 0.25s; }
.hero-now:hover span.arrow { transform: translateX(5px); }

/* floating photo collage */
.collage { position: relative; height: clamp(420px, 56vh, 600px); animation: rise 1.1s 0.5s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.collage figure {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: 0 40px 90px -35px rgba(23, 26, 33, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.65);
  outline: 1px solid var(--line);
  will-change: transform;
}
.collage figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(201, 172, 114, 0.06), transparent 40%, rgba(23, 26, 33, 0.12)); pointer-events: none; }
.collage img, .collage canvas { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.collage img { opacity: 0; transition: opacity 0.8s ease; }
.collage img.ok { opacity: 1; }
.collage figcaption {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255, 253, 248, 0.9);
  background: rgba(23, 26, 33, 0.45);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 5px 10px; border-radius: 999px;
}
.collage .f1 { width: 62%; aspect-ratio: 3 / 4; left: 0; top: 4%; transform: rotate(-3deg); z-index: 2; }
.collage .f2 { width: 52%; aspect-ratio: 4 / 3; right: 0; top: 0; transform: rotate(2.5deg); z-index: 1; }
.collage .f3 { width: 56%; aspect-ratio: 5 / 4; right: 6%; bottom: 0; transform: rotate(-1.5deg); z-index: 3; }
@media (max-width: 980px) { .collage { height: 420px; max-width: 520px; } }

.hero .scrollcue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); width: 1px; height: 56px; background: linear-gradient(180deg, var(--brass), transparent); animation: cue 2.2s ease-in-out infinite; z-index: 2; }
@keyframes cue { 0%, 100% { opacity: 0.25; transform: translateX(-50%) scaleY(0.6); transform-origin: top; } 50% { opacity: 1; transform: translateX(-50%) scaleY(1); } }

/* ---------- FILM HERO (full-bleed cinematic opener) ---------- */
.hero--film { color: #f2eee3; background: #0d1017; }
.hero--film .filmbg { position: absolute; inset: 0; z-index: -4; }
.hero--film .filmbg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.2s ease; }
.hero--film .filmbg img.ok { opacity: 1; animation: kenburns 26s ease-in-out infinite alternate; }
.hero--film .filmbg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(97deg, rgba(8, 10, 16, 0.88) 0%, rgba(8, 10, 16, 0.72) 34%, rgba(8, 10, 16, 0.38) 58%, rgba(8, 10, 16, 0.08) 82%, rgba(8, 10, 16, 0) 100%),
    linear-gradient(180deg, rgba(8, 10, 16, 0.42) 0%, rgba(8, 10, 16, 0) 24%, rgba(8, 10, 16, 0) 52%, rgba(8, 10, 16, 0.78) 100%);
}
.hero--film .stack, .hero--film .byline, .hero--film .kicker {
  text-shadow: 0 2px 24px rgba(10, 13, 20, 0.75), 0 1px 6px rgba(10, 13, 20, 0.6);
}
.hero--film .byline { color: #dde0e8; }
.hero--film .byline strong { color: #ffffff; }
@media (max-width: 480px) {
  .hero--film { padding-top: 124px; }
}
/* vivid editorial grade: colour kept, cinema scrim on top */
.filmbg--vivid img { filter: saturate(1.05) contrast(1.04) brightness(0.92); }

/* duotone treatment: timeless ink-and-brass editorial grade */
.filmbg--duo img { filter: grayscale(1) contrast(1.08) brightness(0.92); }
.filmbg--duo::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(91, 76, 42, 0.42), rgba(201, 172, 114, 0.18) 55%, rgba(124, 140, 255, 0.14));
  mix-blend-mode: color;
  pointer-events: none;
}
.hero--film .aurora {
  background:
    radial-gradient(42% 38% at 82% 16%, rgba(201, 172, 114, 0.2), transparent 70%),
    radial-gradient(36% 42% at 10% 84%, rgba(124, 140, 255, 0.14), transparent 70%);
  z-index: -3;
}
.hero--film .ghost { -webkit-text-stroke: 1px rgba(201, 172, 114, 0.16); }
.hero--film .kicker { color: var(--brass-2); }
.hero--film .stack .l1 { color: #f2eee3; font-size: clamp(1.9rem, 4.6vw, 3.6rem); line-height: 1.1; letter-spacing: 0; margin-bottom: 0.5rem; font-style: italic; }
.hero--film .stack .l2 { color: transparent; -webkit-text-stroke: 1.5px rgba(242, 238, 227, 0.7); }
.hero--film .stack .l3 { background: linear-gradient(100deg, var(--brass-2) 15%, #ecd9ab 50%, var(--brass-2) 85%); -webkit-background-clip: text; background-clip: text; }
.hero--film .byline { color: #ece8df; }
.hero--film .byline strong { color: #ffffff; }
.hero--film .byline {
  max-width: 60ch;
  padding: 2px 0 2px 18px;
  border-left: 2px solid rgba(201, 172, 114, 0.72);
}
.hero--film .byline-text { min-width: 0; }
.hero--film .byline .byline-name {
  font-family: var(--display);
  font-size: 1.12em;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration-line: underline;
  text-decoration-color: rgba(201, 172, 114, 0.9);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}
.hero--film .byline .byline-identity {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.18em 0.7em;
  margin-bottom: 0.28em;
}
.hero--film .byline .byline-credentials {
  color: var(--brass-2);
  font-family: var(--mono);
  font-size: 0.64em;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero--film .byline .byline-copy { display: block; }
@media (max-width: 480px) {
  .hero--film .byline {
    padding: 2px 0 2px 12px;
    border-left-width: 1px;
  }
}
@media (max-width: 350px) {
  .hero-now {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px 12px;
    width: 100%;
    padding: 16px 18px;
    border-radius: 24px;
  }
  .hero-now .kicker, .hero-now span.t { grid-column: 1; }
  .hero-now span.arrow { grid-column: 2; grid-row: 1 / span 2; }
}
.hero--film .hero-now { border-color: rgba(242, 238, 227, 0.22); background: rgba(16, 19, 26, 0.45); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.7); }
.hero--film .hero-now span.t { color: #f2eee3; }
.hero--film .hero-now .kicker, .hero--film .hero-now span.arrow { color: var(--brass-2); }
.hero--film + .marquee { border-top: 0; }

/* ---------- particle-type hero canvas ---------- */
.hero--film .ptext { position: absolute; inset: 0; z-index: -1; }
.hero--film .filmbg { position: absolute; inset: 0; z-index: -5; }
.hero--film .flowfield { position: absolute; inset: 0; z-index: -4; }
.hero--film .lawfield { position: absolute; inset: 0; z-index: -3; }

/* image trail (cursor-following photos) */
.trail-img {
  position: absolute;
  width: 120px;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 1;
  border: 1px solid rgba(242, 238, 227, 0.35);
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: scale(0.6) rotate(var(--rot, 0deg));
  transition: opacity 0.25s ease, transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.trail-img.on { opacity: 0.95; transform: scale(1) rotate(var(--rot, 0deg)); }
.trail-img.off { opacity: 0; transform: scale(0.9) translateY(30px) rotate(var(--rot, 0deg)); transition: opacity 0.5s, transform 0.6s; }

/* ---------- filmstrip (frames from the field) ---------- */
.filmstrip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px 0; overflow: hidden; background: rgba(255, 253, 248, 0.5); }
.filmstrip-track { display: flex; gap: 14px; width: max-content; animation: marquee 60s linear infinite; }
.filmstrip:hover .filmstrip-track { animation-play-state: paused; }
.filmstrip img { height: 200px; width: auto; border-radius: 14px; border: 1px solid var(--line); box-shadow: 0 16px 36px -22px rgba(23, 26, 33, 0.4); transition: transform 0.3s; }
.filmstrip img:hover { transform: scale(1.03); }
.filmstrip .fs-cap { text-align: center; margin-top: 14px; }

/* ---------- off counsel stories and gallery ---------- */
.section.offc-section { padding: 58px 0 76px; }
.offc-stories { display: grid; gap: 26px; }
.offc-story {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  gap: clamp(38px, 6vw, 76px);
  align-items: center;
  padding: 58px 8px 72px;
  border-top: 1px solid var(--line);
}
.offc-story:last-child { border-bottom: 1px solid var(--line); }
.offc-story--reverse .offc-story__copy { order: 2; }
.offc-story--reverse .offc-story__triptych { order: 1; }
.offc-story__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.offc-story h2 {
  max-width: 18ch;
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--ink);
}
.offc-story p { max-width: 60ch; color: var(--text-2); font-size: 0.98rem; line-height: 1.78; }
.offc-story p + p { margin-top: 14px; }
.offc-story p a {
  color: var(--ink);
  text-decoration-color: var(--line-brass);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}
.offc-story p a:hover { color: var(--brass); }
.offc-story__links { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; padding-top: 8px; }
.offc-story__links a {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brass);
}
.offc-story__links a:hover { text-decoration: underline; text-underline-offset: 0.35em; }
.offc-story__media,
.offc-story__triptych figure {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-2);
  box-shadow: 0 24px 48px -22px rgba(23, 26, 33, 0.48), 0 5px 14px -9px rgba(23, 26, 33, 0.38);
}
.offc-story__media { aspect-ratio: 4 / 3; transform: rotate(0.6deg); }
.offc-story__triptych {
  position: relative;
  aspect-ratio: 1 / 1.04;
  isolation: isolate;
}
.offc-story__triptych figure:first-child {
  position: absolute;
  left: 0;
  top: 9%;
  width: 56%;
  height: 84%;
  transform: rotate(-4.2deg);
  z-index: 2;
}
.offc-story__triptych figure:nth-child(2) {
  position: absolute;
  right: 0;
  top: 1%;
  width: 60%;
  height: 40%;
  transform: rotate(3.4deg);
  z-index: 4;
}
.offc-story__triptych figure:nth-child(3) {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 48%;
  height: 58%;
  transform: rotate(-2.8deg);
  z-index: 3;
}
.offc-story__media img,
.offc-story__triptych img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.offc-story__media:hover img,
.offc-story__triptych figure:hover img { transform: scale(1.025); }
.offc-story__triptych figure:first-child img { object-position: center; }
.offc-story__triptych figure:nth-child(2) img { object-position: center; }
.offc-story__triptych figure:nth-child(3) img { object-position: center; }
.offc-story__triptych--mate figure:nth-child(2) img { object-position: center 38%; }
.offc-story__triptych--mate figure:nth-child(3) img { object-fit: cover; object-position: center; }
.offc-story__triptych--mate figure:first-child { width: 54%; height: 82%; }
.offc-story__triptych--mate figure:nth-child(2) { width: 55%; height: 36%; }
.offc-story__triptych--mate figure:nth-child(3) { right: 2%; width: 42%; height: 52%; }
.offc-story__poster-card { width: 44% !important; height: 52% !important; background: #171a20; }
.offc-story__poster-card img { object-fit: contain; object-position: center; }
.offc-story__triptych--zsombor figure:first-child { top: 14%; width: 56%; height: 72%; }
.offc-story__triptych--zsombor figure:nth-child(3) { right: 3%; width: 46%; height: 59%; }
.offc-story__article-card a { display: block; width: 100%; height: 100%; }
.offc-story__media figcaption,
.offc-story__triptych figcaption {
  position: absolute;
  left: 12px;
  bottom: 11px;
  z-index: 2;
  max-width: calc(100% - 24px);
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(23, 26, 33, 0.55);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  color: rgba(255, 253, 248, 0.96);
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}
.offc-gallery-head { margin-top: 82px; }
.gallery.offc-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  columns: initial;
  position: relative;
  isolation: isolate;
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(124, 103, 66, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 72%, transparent 0 66px, rgba(154, 126, 56, 0.13) 67px 68px, transparent 69px 104px, rgba(154, 126, 56, 0.07) 105px 106px, transparent 107px),
    linear-gradient(122deg, transparent 0 48%, rgba(154, 126, 56, 0.07) 48.1% 48.2%, transparent 48.3%),
    rgba(255, 253, 248, 0.42);
}
.offc-gallery .gitem { display: block; margin: 0; z-index: 1; border-radius: 9px; }
.offc-gallery .offc-gallery__wide { grid-column: span 6; aspect-ratio: 16 / 9; }
.offc-gallery .offc-gallery__portrait { grid-column: span 4; aspect-ratio: 3 / 4; }
.offc-gallery .offc-gallery__landscape { grid-column: span 8; aspect-ratio: 3 / 2; }
.offc-gallery .offc-gallery__tile { grid-column: span 3; aspect-ratio: 4 / 5; }
.offc-gallery .offc-gallery__panorama { grid-column: 3 / 11; aspect-ratio: 16 / 9; }
.offc-gallery__rooftop img { object-position: 64% center; }
.offc-gallery__opera img { object-position: center 44%; }
.offc-gallery__london img { object-position: center 46%; }
.offc-gallery__cambridge img { object-position: center 18%; }
.offc-gallery .gitem img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.offc-smallprint { margin-top: 36px; max-width: 70ch; }
.offc-smallprint a { color: inherit; text-underline-offset: 0.2em; }
@media (max-width: 900px) {
  .offc-story { grid-template-columns: 1fr; gap: 36px; padding: 48px 0 58px; }
  .offc-story--reverse .offc-story__copy { order: 1; }
  .offc-story--reverse .offc-story__triptych { order: 2; }
  .offc-story__media { transform: none; }
  .offc-story__triptych { width: 100%; max-width: 720px; }
}
@media (max-width: 720px) {
  .section.offc-section { padding-top: 48px; padding-bottom: 58px; }
  .offc-story h2 { margin-bottom: 18px; }
  .offc-story p { font-size: 0.96rem; }
  .offc-story__triptych { aspect-ratio: 1 / 1.08; }
  .offc-story__triptych figure:first-child { transform: rotate(-3.2deg); }
  .offc-story__triptych figure:nth-child(2) { transform: rotate(2.8deg); }
  .offc-story__triptych figure:nth-child(3) { transform: rotate(-2.3deg); }
  .gallery.offc-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-flow: dense; gap: 10px; padding: 14px; }
  .offc-gallery .offc-gallery__wide { grid-column: span 2; aspect-ratio: 16 / 10; }
  .offc-gallery .offc-gallery__portrait { grid-column: span 1; aspect-ratio: 3 / 4; }
  .offc-gallery .offc-gallery__landscape { grid-column: span 2; aspect-ratio: 3 / 2; }
  .offc-gallery .offc-gallery__tile { grid-column: span 1; aspect-ratio: 4 / 5; }
  .offc-gallery .offc-gallery__panorama { grid-column: span 2; aspect-ratio: 16 / 9; }
}
@media (max-width: 480px) {
  .offc-story__triptych figcaption { left: 7px; bottom: 7px; max-width: calc(100% - 14px); padding: 4px 7px; font-size: 0.49rem; letter-spacing: 0.09em; }
}
.gitem { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4 / 5; box-shadow: 0 18px 40px -26px rgba(23, 26, 33, 0.35); }
.gitem--wide { grid-column: span 2; aspect-ratio: 16 / 9; }
.gitem img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gitem:hover img { transform: scale(1.05); }
.gitem figcaption {
  position: absolute; left: 12px; bottom: 10px; z-index: 2;
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255, 253, 248, 0.95);
  background: rgba(23, 26, 33, 0.5);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 5px 11px; border-radius: 999px;
}
.gitem::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(23, 26, 33, 0.35)); pointer-events: none; }

/* ---------- marquee ---------- */
.marquee { border-top: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.07); padding: 18px 0; overflow: hidden; background: linear-gradient(90deg, rgba(255, 46, 136, 0.1), rgba(18, 20, 29, 0.97) 30%, rgba(18, 20, 29, 0.97) 70%, rgba(0, 229, 255, 0.09)), #12141d; }
.marquee-track { display: flex; gap: 3.2rem; width: max-content; animation: marquee 38s linear infinite; }
.marquee span { font-family: var(--display); font-size: 1.35rem; letter-spacing: 0.26em; text-transform: uppercase; color: transparent; -webkit-text-stroke: 1px rgba(236, 232, 223, 0.4); white-space: nowrap; }
.marquee span.solid { color: var(--brass); -webkit-text-stroke: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- stats ---------- */
.stats { border-bottom: 1px solid var(--line); background: linear-gradient(180deg, rgba(255, 253, 248, 0.7), transparent); }
.stats .shell { display: grid; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .stats .shell { grid-template-columns: repeat(2, 1fr); } }
.stat { padding: 34px 26px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
@media (max-width: 900px) { .stat:nth-child(3) { border-left: 0; } .stat { padding: 26px 20px; } }
.stat .n { font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1; color: var(--brass); display: block; }
.stat .n sup { font-size: 0.45em; color: var(--text-2); }
.stat .lab { display: block; margin-top: 10px; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); line-height: 1.7; }

/* ---------- cinematic full-bleed band ---------- */
.band {
  position: relative;
  height: clamp(340px, 56vh, 560px);
  overflow: hidden;
  margin: 96px 0;
  isolation: isolate;
}
.band img, .band canvas { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band img { opacity: 0; transition: opacity 1s ease; }
.band img.ok { opacity: 1; animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.09) translateY(-1.5%); } }
.band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23, 26, 33, 0.15), rgba(23, 26, 33, 0.55) 85%); }
.band .shell { position: absolute; inset: auto 0 0 0; z-index: 2; padding-bottom: 44px; }
.band .kicker { color: var(--brass-2); margin-bottom: 12px; }
.band h2 { font-family: var(--display); font-weight: 500; font-size: clamp(1.8rem, 4.4vw, 3.4rem); line-height: 1.08; color: #f7f4ed; max-width: 24ch; letter-spacing: -0.01em; }
.band a { color: inherit; text-decoration: none; }
.band a:hover h2 { text-decoration: underline; text-decoration-color: var(--brass-2); text-decoration-thickness: 2px; text-underline-offset: 8px; }

/* ---------- pageheads ---------- */
.pagehead, .article-head { position: relative; padding: 170px 0 80px; overflow: hidden; isolation: isolate; }
.pagehead .fx, .article-head .fx { position: absolute; inset: 0; z-index: -1; opacity: 0.75; }
.pagehead::before, .article-head::before {
  content: ""; position: absolute; inset: -18%; z-index: -2; filter: blur(46px);
  background:
    radial-gradient(44% 40% at 82% 10%, rgba(201, 172, 114, 0.24), transparent 70%),
    radial-gradient(36% 42% at 6% 80%, rgba(91, 108, 223, 0.13), transparent 70%);
}
.pagehead::after, .article-head::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--line-brass), transparent); }
.pagehead h1, .article-head h1 { font-family: var(--display); font-weight: 500; font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.04; letter-spacing: -0.015em; color: var(--ink); animation: rise 0.9s 0.2s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.pagehead .kicker, .article-head .kicker { margin-bottom: 18px; animation: rise 0.8s 0.1s both; }
.pagehead .sub { margin-top: 20px; max-width: 60ch; color: var(--text-2); font-size: 1.05rem; animation: rise 0.9s 0.35s both; }
.article-head h1 { max-width: 24ch; }
.article-head .standfirst { margin-top: 26px; font-size: 1.18rem; line-height: 1.6; color: var(--text-2); max-width: 56ch; animation: rise 0.9s 0.4s both; }
.article-head .metaline { margin-top: 30px; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; animation: rise 0.9s 0.5s both; }

/* ---------- sections ---------- */
.section { padding: 96px 0; position: relative; }
.section + .section { padding-top: 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 44px; position: relative; padding-top: 18px; }
.section-head::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, var(--line-brass), var(--line) 40%, transparent); }
.section-head .kicker { color: var(--ink); letter-spacing: 0.26em; }
.section-head a { font-family: var(--mono); font-size: 0.7rem; color: var(--brass); text-decoration: none; letter-spacing: 0.16em; text-transform: uppercase; }
.section-head a:hover { text-decoration: underline; }

/* ---------- cards ---------- */
.grid { display: grid; gap: 28px; }
.grid--featured { grid-template-columns: 1.6fr 1fr; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 940px) { .grid--featured, .grid--3 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
  padding: 0 0 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 18px 44px -28px rgba(23, 26, 33, 0.28);
  transition: border-color 0.3s, transform 0.35s, box-shadow 0.35s;
  will-change: transform;
}
.card:hover { border-color: var(--line-brass); box-shadow: 0 40px 80px -34px rgba(23, 26, 33, 0.4), 0 0 60px -30px rgba(201, 172, 114, 0.5); }
.card-art { aspect-ratio: 21 / 9; width: 100%; background: var(--paper-2); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.card-art canvas, .card-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card-art img { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
.card-art img.ok { opacity: 1; }
.card:hover .card-art img.ok { transform: scale(1.05); }
.card-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(201, 172, 114, 0.05), transparent 45%, rgba(23, 26, 33, 0.1)); pointer-events: none; }
.card--featured .card-art { aspect-ratio: 16 / 7; }
.card .toprow { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; padding: 20px 24px 0; }
.card h3 { font-family: var(--display); font-weight: 500; font-size: 1.4rem; line-height: 1.2; padding: 0 24px; color: var(--ink); transition: color 0.25s; }
.card:hover h3 { color: var(--brass); }
.card--featured h3 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.card p { color: var(--text-2); font-size: 0.95rem; line-height: 1.6; padding: 0 24px; }
.card .meta { margin-top: auto; padding: 12px 24px 0; }

/* ---------- premise ---------- */
.premise { background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 52px 46px; position: relative; overflow: hidden; box-shadow: var(--shadow-soft); }
.premise::before { content: ""; position: absolute; inset: -1px; border-radius: 22px; padding: 1px; background: linear-gradient(120deg, var(--line-brass), transparent 30%, transparent 70%, rgba(91, 108, 223, 0.35)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.premise ol { list-style: none; counter-reset: p; display: grid; gap: 26px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 940px) { .premise ol { grid-template-columns: 1fr; } }
.premise li { counter-increment: p; }
.premise li::before { content: "0" counter(p); font-family: var(--display); font-size: 2.6rem; line-height: 1; color: transparent; -webkit-text-stroke: 1px var(--brass); display: block; margin-bottom: 14px; }
.premise li strong { font-family: var(--display); font-weight: 600; display: block; font-size: 1.12rem; margin-bottom: 8px; color: var(--ink); }
.premise li span { color: var(--text-2); font-size: 0.93rem; line-height: 1.6; }
.premise .more { margin-top: 34px; }
.premise .more a { color: var(--brass); font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none; }
.premise .more a:hover { text-decoration: underline; }

/* entropy widget */
.entropy { margin: 6px 0 44px; }
.entropy canvas { width: 100%; height: 300px; display: block; border-radius: 12px; }
.entropy-ui { display: flex; flex-direction: column; align-items: center; margin-top: 14px; }

/* layers viz */
.layers-viz { margin: 6px 0 44px; }
.layers-viz svg { width: 100%; height: auto; display: block; }
.layers-viz .n-label { font-family: var(--mono); font-size: 13px; letter-spacing: 2px; fill: var(--text-2); }
.layers-viz .n-dot { fill: var(--card); stroke: var(--brass); stroke-width: 1.2; }
.layers-viz .flow { fill: none; stroke: url(#flowgrad); stroke-width: 1; opacity: 0.7; stroke-dasharray: 600; stroke-dashoffset: 600; }
.layers-viz.in .flow { animation: draw 2.2s cubic-bezier(0.3, 0, 0.2, 1) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.layers-viz .bar { fill: rgba(166, 135, 78, 0.12); stroke: var(--brass); stroke-width: 1; }
.layers-viz .bar-label { font-family: var(--mono); font-size: 14px; letter-spacing: 4px; fill: #8a6d3a; }
.layers-viz .pulse { fill: var(--brass); opacity: 0; }
.layers-viz.in .pulse { animation: pulse 3s 1.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 0.15; } 50% { opacity: 0.7; } }

/* ---------- strikethrough ---------- */
.strike { position: relative; white-space: nowrap; }
.strike::after { content: ""; position: absolute; left: -2%; top: 54%; width: 104%; height: 0.08em; min-height: 3px; background: var(--brass); transform: scaleX(0); transform-origin: left center; transition: transform 0.7s cubic-bezier(0.3, 0, 0.2, 1) 0.5s; }
.in .strike::after, .strike.in::after { transform: scaleX(1); }

/* ---------- incident (dark island) ---------- */
.incident-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
@media (max-width: 940px) { .incident-grid { grid-template-columns: 1fr; gap: 36px; } }
.incident-copy h2 { font-family: var(--display); font-weight: 500; font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.05; letter-spacing: -0.015em; color: var(--ink); }
.incident-copy h2 .alt { display: block; font-style: italic; background: linear-gradient(100deg, #8a6d3a 15%, var(--brass-2) 50%, #8a6d3a 85%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.incident-copy p { margin-top: 22px; color: var(--text-2); max-width: 46ch; }
.incident-copy .cta { display: inline-block; margin-top: 26px; font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); text-decoration: none; border-bottom: 1px solid var(--line-brass); padding-bottom: 4px; }
.incident-copy .cta:hover { border-bottom-color: var(--brass); }
.incident-copy .stage-note { margin-top: 18px; font-family: var(--sans); font-size: 0.82rem; color: var(--muted); }
.incident-copy .stage-note a { color: var(--text-2); }

.phone {
  position: relative;
  border: 1px solid rgba(236, 232, 223, 0.14);
  border-radius: 26px;
  background: linear-gradient(180deg, #141925, #0c0f16);
  padding: 26px 22px 60px;
  box-shadow: 0 50px 100px -40px rgba(23, 26, 33, 0.55), 0 0 70px -30px rgba(201, 172, 114, 0.35);
  min-height: 480px;
  color: #ece8df;
}
.phone .statusbar { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; color: #78808f; text-transform: uppercase; padding-bottom: 16px; border-bottom: 1px solid rgba(236, 232, 223, 0.1); margin-bottom: 20px; }
.chat { display: flex; flex-direction: column; gap: 12px; }
.msg { max-width: 82%; padding: 12px 16px; border-radius: 16px; font-family: var(--sans); font-size: 0.9rem; line-height: 1.5; opacity: 0; transform: translateY(14px) scale(0.98); transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1); }
.msg.show { opacity: 1; transform: none; }
.msg.me { align-self: flex-end; background: rgba(201, 172, 114, 0.18); border: 1px solid rgba(201, 172, 114, 0.32); border-bottom-right-radius: 4px; color: #f2eee3; }
.msg.bot { align-self: flex-start; background: rgba(236, 232, 223, 0.07); border: 1px solid rgba(236, 232, 223, 0.12); border-bottom-left-radius: 4px; color: #b9bfca; }
.msg .att { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; padding: 7px 12px; border-radius: 8px; background: rgba(10, 13, 20, 0.55); border: 1px solid rgba(236, 232, 223, 0.12); font-family: var(--mono); font-size: 0.7rem; color: var(--brass-2); }
.sys { align-self: center; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: #e0705a; text-align: center; opacity: 0; transform: translateY(10px); transition: opacity 0.5s ease, transform 0.5s ease; padding: 2px 8px; }
.sys.show { opacity: 1; transform: none; }
.typing { align-self: flex-start; display: none; gap: 5px; padding: 14px 18px; border-radius: 16px; border-bottom-left-radius: 4px; background: rgba(236, 232, 223, 0.07); border: 1px solid rgba(236, 232, 223, 0.12); }
.typing.show { display: inline-flex; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: #b9bfca; animation: tdot 1.1s infinite; }
.typing i:nth-child(2) { animation-delay: 0.18s; }
.typing i:nth-child(3) { animation-delay: 0.36s; }
@keyframes tdot { 0%, 60%, 100% { opacity: 0.25; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.replay { position: absolute; bottom: 18px; right: 20px; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: #78808f; background: transparent; border: 1px solid rgba(236, 232, 223, 0.14); border-radius: 999px; padding: 8px 16px; cursor: pointer; transition: color 0.2s, border-color 0.2s; }
.replay:hover { color: var(--brass-2); border-color: rgba(201, 172, 114, 0.4); }

/* ---------- fields (topic mosaic) ---------- */
.fields {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 16px;
}
@media (max-width: 1020px) { .fields { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .fields { grid-template-columns: 1fr; grid-auto-rows: 170px; } }
.field {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  background: var(--ink-2);
  border: 1px solid var(--line);
  isolation: isolate;
  box-shadow: 0 18px 44px -28px rgba(23, 26, 33, 0.35);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s, border-color 0.3s;
}
.field:hover { transform: translateY(-5px); border-color: var(--line-brass); box-shadow: 0 34px 70px -30px rgba(23, 26, 33, 0.5), 0 0 60px -28px rgba(201, 172, 114, 0.55); }
.field--tall { grid-row: span 2; }
.field--wide { grid-column: span 2; }
@media (max-width: 560px) { .field--wide { grid-column: span 1; } }
.field img, .field canvas { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.field img { opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease; }
.field img.ok { opacity: 1; }
.field:hover img.ok { transform: scale(1.06); }
.field::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10, 13, 20, 0.12), rgba(10, 13, 20, 0.32) 55%, rgba(10, 13, 20, 0.82));
}
.field .inner {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 18px 20px;
}
.field .kicker { color: var(--brass-2); font-size: 0.62rem; letter-spacing: 0.2em; margin-bottom: 6px; }
.field h3 { font-family: var(--display); font-weight: 600; font-size: 1.18rem; line-height: 1.15; color: #f7f4ed; }
.field--tall h3, .field--wide h3 { font-size: 1.45rem; }
.field p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(247, 244, 237, 0.85);
  margin-top: 6px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.field:hover p { max-height: 3.5em; opacity: 1; }
@media (hover: none) { .field p { max-height: none; opacity: 1; } }
.field .go { position: absolute; top: 14px; right: 16px; z-index: 2; color: var(--brass-2); font-family: var(--sans); opacity: 0; transform: translateX(-6px); transition: opacity 0.3s, transform 0.3s; }
.field:hover .go { opacity: 1; transform: none; }

/* ---------- notes ---------- */
.notes-list { display: grid; }
.note { position: relative; padding: 30px 8px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 160px 1fr; gap: 26px; transition: background 0.25s, padding-left 0.25s; }
.note:hover { background: rgba(255, 253, 248, 0.8); padding-left: 18px; }
.note:first-child { border-top: 1px solid var(--line); }
@media (max-width: 720px) { .note { grid-template-columns: 1fr; gap: 10px; } }
.note .when { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.note h3 { font-family: var(--display); font-weight: 600; font-size: 1.18rem; margin-bottom: 6px; color: var(--ink); }
.note h3 a { text-decoration: none; }
.note h3 a:hover { color: var(--brass); }
.note p { color: var(--text-2); font-size: 0.96rem; max-width: 64ch; }
.note p + p { margin-top: 10px; }
.note p strong { color: var(--ink); }
.mini-art { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); width: 130px; height: 74px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); background: var(--paper-2); box-shadow: 0 12px 28px -16px rgba(23, 26, 33, 0.3); transition: box-shadow 0.25s, border-color 0.25s; }
.note:hover .mini-art { border-color: var(--line-brass); }
.mini-art canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
@media (min-width: 961px) { .note.has-art { padding-right: 170px; } }
@media (max-width: 960px) { .mini-art { display: none; } }

/* ---------- rows ---------- */
.rows { display: grid; }
.row { display: grid; grid-template-columns: 130px 1fr auto; gap: 20px; align-items: baseline; padding: 24px 8px; border-bottom: 1px solid var(--line); transition: background 0.25s, padding-left 0.25s; }
.row:hover { background: rgba(255, 253, 248, 0.8); padding-left: 18px; }
.row:first-child { border-top: 1px solid var(--line); }
@media (max-width: 720px) { .row { grid-template-columns: 1fr; gap: 4px; } }
.row .what { font-family: var(--display); font-weight: 600; font-size: 1.08rem; color: var(--ink); }
.row .where { color: var(--muted); font-size: 0.9rem; font-family: var(--sans); }

/* ---------- prose ---------- */
.article-head .shell, .prose-shell { max-width: 860px; }
.prose { max-width: var(--measure); margin: 0 auto; padding: 72px 28px 8px; font-size: 1.11rem; line-height: 1.85; color: #2a2e38; }
.prose > * + * { margin-top: 1.3em; }
.prose > p:first-of-type::first-letter { font-family: var(--display); float: left; font-size: 3.6em; line-height: 0.8; padding: 0.08em 0.14em 0 0; color: var(--brass); }
.prose h2 { font-family: var(--display); font-weight: 600; font-size: 1.65rem; line-height: 1.25; margin-top: 2.1em; color: var(--ink); }
.prose h3 { font-family: var(--display); font-weight: 600; font-size: 1.2rem; margin-top: 1.8em; color: var(--ink); }
.prose a { color: #8a6d3a; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; text-decoration-color: var(--line-brass); transition: text-decoration-color 0.2s; }
.prose a:hover { text-decoration-color: var(--brass); }
.prose strong { font-weight: 600; color: var(--ink); }
.prose blockquote { border-left: 2px solid var(--brass); padding: 6px 0 6px 24px; font-style: italic; color: var(--text-2); font-size: 1.05em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: 0.55em; }
.prose li::marker { color: var(--brass); }
.prose hr { border: 0; height: 1px; margin: 2.6em auto; width: 160px; background: linear-gradient(90deg, transparent, var(--line-brass), transparent); }
.footnote { font-size: 0.85rem; color: var(--muted); font-family: var(--sans); line-height: 1.6; }

/* author card */
.author-card { max-width: var(--measure); margin: 64px auto 0; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--card); box-shadow: var(--shadow-soft); display: grid; grid-template-columns: 68px 1fr; gap: 20px; align-items: center; }
@media (max-width: 560px) { .author-card { grid-template-columns: 1fr; } }
.avatar { width: 68px; height: 68px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #232836, var(--ink-2)); border: 1px solid var(--line-brass); color: var(--brass-2); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 1.2rem; letter-spacing: 0.08em; }
img.avatar { object-fit: cover; flex-shrink: 0; }

/* pager thumbnails */
.pager a { display: inline-flex; align-items: center; gap: 14px; }
.pager a img { width: 68px; height: 46px; object-fit: cover; border-radius: 9px; border: 1px solid var(--line); flex: none; }
.pager a:last-child { flex-direction: row-reverse; text-align: right; }

/* next-on-stage band — loud on purpose */
.upnext { position: relative; overflow: hidden; background: linear-gradient(105deg, rgba(255, 46, 136, 0.16), rgba(124, 77, 255, 0.14) 45%, rgba(0, 229, 255, 0.12)), #12141d; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.upnext::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 85% 0%, rgba(0, 229, 255, 0.12), transparent 60%), radial-gradient(50% 120% at 10% 100%, rgba(255, 46, 136, 0.14), transparent 60%); pointer-events: none; }
.upnext .shell { position: relative; z-index: 1; display: flex; gap: 36px; align-items: center; flex-wrap: wrap; padding-top: 30px; padding-bottom: 30px; }
.upnext .lbl { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--hype3); border: 1px solid rgba(0, 229, 255, 0.35); border-radius: 999px; padding: 9px 16px; white-space: nowrap; background: rgba(0, 229, 255, 0.07); }
.upnext .ev { display: flex; flex-direction: column; gap: 3px; padding-left: 18px; border-left: 2px solid rgba(255, 46, 136, 0.45); }
.upnext .d { font-family: var(--display); color: #ffffff; font-size: 1.3rem; letter-spacing: 0.01em; white-space: nowrap; }
.upnext .t { color: #b9bdcc; font-size: 0.88rem; max-width: 34ch; }
.upnext a.all { margin-left: auto; color: #12141d; background: linear-gradient(90deg, var(--hype1), var(--hype2)); border-radius: 999px; padding: 12px 22px; font-size: 0.88rem; font-weight: 600; white-space: nowrap; }
.upnext a.all:hover { filter: brightness(1.12); }
@media (max-width: 980px) { .upnext a.all { margin-left: 0; } .upnext .shell { gap: 22px; } }

/* vivid pageheads on subpages */
.pagehead.dark { background: radial-gradient(75% 130% at 12% 0%, rgba(255, 46, 136, 0.12), transparent 55%), radial-gradient(65% 120% at 88% 15%, rgba(0, 229, 255, 0.1), transparent 60%), radial-gradient(60% 100% at 50% 110%, rgba(124, 77, 255, 0.12), transparent 65%), #f7f4ed; }

/* readable cred cells */
.cred p { line-height: 1.75; }

.stat .n .plus { font-size: 0.62em; color: var(--hype1); vertical-align: 0.12em; }

/* masthead subtitle */
.wordsub { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-2); margin-left: 14px; white-space: nowrap; }
.masthead--dark .wordsub { color: rgba(236, 232, 223, 0.62); }
@media (max-width: 860px) { .wordsub { display: none; } }

/* themed mini images in notes */
.mini-art img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }

/* stages: uniform photo grid */
.stage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-bottom: 64px; }
.stage-grid figure { margin: 0; }
.stage-grid img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 14px; border: 1px solid var(--line); box-shadow: 0 18px 40px -26px rgba(23, 26, 33, 0.35); transition: transform 0.3s; }
.stage-grid figure:hover img { transform: translateY(-4px); }
.stage-grid figcaption { margin-top: 8px; font-family: var(--mono); font-size: 0.7rem; color: var(--text-2); line-height: 1.5; }

/* publications cover thumb */
.pubcover { width: 132px; flex: none; }
.pubcover img { width: 100%; border-radius: 10px; border: 1px solid var(--line); box-shadow: 0 14px 30px -18px rgba(23, 26, 33, 0.4); }

/* poster wall */
.poster-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; }
.poster-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: top; border-radius: 12px; border: 1px solid var(--line); box-shadow: 0 16px 36px -24px rgba(23, 26, 33, 0.4); transition: transform 0.3s; }
.poster-grid img:hover { transform: scale(1.04) rotate(-0.5deg); }

/* certificate wall */
.certs { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-top: 26px; align-items: start; }
.certs a { display: block; }
.certs img { width: 100%; height: auto; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-soft); background: #fff; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.certs a:hover img { transform: translateY(-4px); box-shadow: 0 18px 40px -18px rgba(23, 26, 33, 0.35); }
.certs span { display: block; margin-top: 9px; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.04em; color: var(--brass); line-height: 1.45; }

/* recognition chips */
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.badge-chip { border: 1px solid var(--line-brass); border-radius: 999px; padding: 9px 18px; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.05em; color: var(--brass-2); background: linear-gradient(120deg, rgba(201, 172, 114, 0.1), rgba(201, 172, 114, 0.03)); white-space: nowrap; }
.badge-chip strong { color: var(--text); font-weight: 600; }
@media (max-width: 720px) { .badge-chip { white-space: normal; } }
.author-card .name { font-family: var(--display); font-weight: 600; font-size: 1.1rem; color: var(--ink); }
.author-card .role { font-family: var(--sans); font-size: 0.85rem; color: var(--text-2); margin-top: 2px; }
.author-card .links { margin-top: 10px; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.author-card .links a { color: var(--brass); text-decoration: none; margin-right: 20px; }
.author-card .links a:hover { text-decoration: underline; }

.disclaimer { max-width: var(--measure); margin: 22px auto 0; font-family: var(--sans); font-size: 0.78rem; color: var(--muted); line-height: 1.6; }
.pager { max-width: var(--measure); margin: 52px auto 0; display: flex; justify-content: space-between; gap: 16px; font-family: var(--sans); font-size: 0.85rem; }
.pager a { color: var(--brass); text-decoration: none; max-width: 46%; }
.pager a:hover { opacity: 0.75; }

/* ---------- chips ---------- */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.chip { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid var(--line); background: var(--card); color: var(--text-2); border-radius: 999px; padding: 9px 18px; cursor: pointer; transition: all 0.25s; }
.chip:hover { border-color: var(--line-brass); color: var(--brass); }
.chip.active { background: var(--ink); border-color: var(--ink); color: var(--paper); }

/* ---------- about / contact ---------- */
.bio-grid { display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .bio-grid { grid-template-columns: 1fr; } }
.portrait { aspect-ratio: 4 / 5; border-radius: 18px; background: radial-gradient(80% 60% at 70% 20%, rgba(201, 172, 114, 0.25), transparent 60%), radial-gradient(70% 60% at 20% 90%, rgba(91, 108, 223, 0.16), transparent 60%), var(--ink-2); border: 1px solid var(--line-brass); display: flex; align-items: center; justify-content: center; color: var(--brass-2); font-family: var(--display); font-size: 2.4rem; letter-spacing: 0.12em; position: sticky; top: 96px; box-shadow: var(--shadow-soft); overflow: hidden; }
.portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cred-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; margin-top: 44px; }
@media (max-width: 720px) { .cred-grid { grid-template-columns: 1fr; } }
.cred { background: var(--card); padding: 24px 26px; transition: background 0.25s; }
.cred:hover { background: #fff; }
.cred .kicker { color: var(--muted); margin-bottom: 10px; letter-spacing: 0.18em; }
.cred p { font-size: 0.95rem; line-height: 1.6; color: var(--text-2); }
.cred p strong { font-family: var(--display); font-weight: 600; color: var(--ink); }

.about-main { padding-top: 64px; }
.about-portrait { position: sticky; top: 96px; margin: 0; }
.about-portrait .portrait { position: relative; top: auto; }
.about-portrait figcaption { margin-top: 12px; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); text-align: center; }
.about-copy, .about-dossier, .about-dossier__column, .about-dossier .cred { min-width: 0; }
.about-copy > p { margin-top: 1.2em; max-width: 76ch; }
.about-copy > p:first-child { margin-top: 0; }
.about-copy a { color: var(--brass); }
.about-lead { font-family: var(--display); font-size: clamp(1.28rem, 2vw, 1.62rem); line-height: 1.5; letter-spacing: -0.008em; color: var(--ink); }
.about-quote { margin: 34px 0 0; border-left: 2px solid var(--brass); padding: 8px 0 8px 26px; font-family: var(--display); font-style: italic; font-size: 1.12rem; line-height: 1.65; color: var(--text-2); }
.about-quote .meta { display: inline-block; margin-top: 8px; font-style: normal; letter-spacing: 0.02em; }
.about-note { padding: 20px 22px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255, 253, 248, 0.56); color: var(--text-2); }
.about-proof-head, .about-cert-head { margin-top: 72px; padding-top: 26px; border-top: 1px solid var(--line-brass); }
.about-proof-head h2, .about-cert-head h2, .about-next h2 { margin-top: 10px; font-family: var(--display); font-weight: 500; font-size: clamp(1.8rem, 3.2vw, 2.65rem); line-height: 1.12; color: var(--ink); }
.about-proof-head p, .about-cert-head p { margin-top: 10px; color: var(--text-2); }
.about-dossier { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 30px; align-items: start; }
.about-dossier__column { display: flex; flex-direction: column; gap: 18px; }
.about-dossier .cred { padding: 28px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 253, 248, 0.82); box-shadow: 0 18px 46px -38px rgba(23, 26, 33, 0.55); }
.about-dossier .cred:hover { background: #fff; border-color: var(--line-brass); }
.about-dossier .cred .kicker { margin-bottom: 12px; color: var(--brass); }
.about-dossier .cred h3 { font-family: var(--display); font-size: 1.28rem; font-weight: 600; line-height: 1.28; color: var(--ink); }
.about-dossier .cred h3, .about-dossier .cred p { overflow-wrap: anywhere; }
.about-dossier .cred p { margin-top: 12px; line-height: 1.72; }
.about-dossier .cred p + p { margin-top: 10px; }
.about-dossier .cred--lead { background: radial-gradient(100% 85% at 100% 0%, rgba(124, 77, 255, 0.17), transparent 58%), linear-gradient(145deg, #151821, #22242d); border-color: rgba(201, 172, 114, 0.44); box-shadow: 0 26px 62px -36px rgba(10, 13, 20, 0.9); }
.about-dossier .cred--lead:hover { background: radial-gradient(100% 85% at 100% 0%, rgba(124, 77, 255, 0.2), transparent 58%), linear-gradient(145deg, #171a23, #262832); }
.about-dossier .cred--lead h3, .about-dossier .cred--lead p strong { color: #f4f0e7; }
.about-dossier .cred--lead p { color: #c3c6cf; }
.about-dossier .cred--quiet { background: linear-gradient(150deg, rgba(201, 172, 114, 0.1), rgba(255, 253, 248, 0.9)); }
.cred-link { display: inline-flex; margin-top: 18px; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.13em; text-transform: uppercase; text-decoration: none; }
.cred-link:hover { text-decoration: underline; text-underline-offset: 5px; }
.certs--about { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; margin-top: 30px; }
.certs--about a { grid-column: span 2; min-width: 0; }
.certs--about a:nth-child(n+4) { grid-column: span 3; }
.certs--about img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; padding: 10px; }
.certs--about span { color: var(--text-2); }
.about-next { margin-top: 72px; padding: 42px 44px; border: 1px solid rgba(201, 172, 114, 0.42); border-radius: 20px; background: radial-gradient(75% 100% at 95% 0%, rgba(255, 46, 136, 0.12), transparent 58%), radial-gradient(75% 100% at 0% 100%, rgba(0, 229, 255, 0.08), transparent 62%), #151821; box-shadow: 0 30px 70px -42px rgba(10, 13, 20, 0.95); }
.about-next h2 { max-width: 19ch; color: #f4f0e7; }
.about-next p { margin-top: 14px; max-width: 60ch; color: #bfc3cd; }
.about-next__links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.about-next__links a { display: inline-flex; align-items: center; min-height: 42px; padding: 10px 18px; border: 1px solid rgba(201, 172, 114, 0.46); border-radius: 999px; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; color: var(--brass-2); }
.about-next__links a:first-child { background: var(--brass-2); color: #14171e; }
.about-next__links a:hover { transform: translateY(-2px); }

@media (max-width: 900px) {
  .about-portrait { position: relative; top: auto; width: min(360px, 100%); margin-bottom: 12px; }
  .about-main { padding-top: 48px; }
}
@media (max-width: 720px) {
  .about-dossier { grid-template-columns: 1fr; }
  .about-dossier .cred { padding: 24px; }
  .about-proof-head, .about-cert-head { margin-top: 58px; }
  .certs--about { display: flex; gap: 14px; max-width: 100%; overflow-x: auto; padding: 2px 4px 18px 0; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .certs--about a, .certs--about a:nth-child(n+4) { flex: 0 0 78%; scroll-snap-align: start; }
  .about-next { margin-top: 58px; padding: 30px 26px; }
}

.routes { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 8px; }
@media (max-width: 860px) { .routes { grid-template-columns: 1fr; } }
.route { border: 1px solid var(--line); border-radius: 20px; background: var(--card); padding: 40px 36px; display: flex; flex-direction: column; gap: 14px; box-shadow: 0 18px 44px -30px rgba(23, 26, 33, 0.3); transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; }
.route:hover { border-color: var(--line-brass); transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.route--primary { border-color: var(--line-brass); background: linear-gradient(170deg, #fdf8ec, var(--card) 60%); }
.route h2 { font-family: var(--display); font-weight: 600; font-size: 1.4rem; color: var(--ink); }
.route p { color: var(--text-2); font-size: 0.97rem; }
.route .links { margin-top: 10px; display: flex; flex-direction: column; gap: 10px; font-family: var(--sans); font-size: 0.94rem; }
.route .links a { color: var(--brass); text-decoration: none; }
.route .links a:hover { text-decoration: underline; }

.contact-main { padding-top: 60px; }
.routes--contact { grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr); gap: 22px; align-items: stretch; }
.contact-route { position: relative; min-width: 0; padding: 48px 44px; gap: 0; overflow: hidden; box-shadow: 0 28px 68px -46px rgba(23, 26, 33, 0.78); }
.contact-route:hover { transform: translateY(-3px); }
.contact-route__number { position: absolute; top: 12px; right: 20px; font-family: var(--display); font-size: 6.8rem; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(166, 135, 78, 0.15); pointer-events: none; }
.contact-route .kicker { position: relative; margin-bottom: 20px; }
.contact-route h2 { position: relative; max-width: 18ch; font-size: clamp(1.65rem, 2.7vw, 2.35rem); line-height: 1.12; }
.contact-route p { position: relative; margin-top: 18px; font-size: 0.98rem; line-height: 1.72; }
.contact-route .contact-route__lead { margin-top: 20px; font-family: var(--display); font-size: 1.12rem; line-height: 1.55; color: var(--ink); }
.contact-route__scope { position: relative; display: grid; gap: 0; margin-top: 26px; border-top: 1px solid var(--line); list-style: none; }
.contact-route__scope li { padding: 11px 0; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 0.68rem; line-height: 1.45; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-2); }
.contact-route .contact-route__note { padding: 16px 18px; border-left: 2px solid var(--brass); background: rgba(201, 172, 114, 0.08); font-size: 0.86rem; }
.contact-route__actions { position: relative; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.contact-action { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 17px; border: 1px solid var(--line-brass); border-radius: 999px; font-family: var(--mono); font-size: 0.67rem; line-height: 1.35; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; text-decoration: none; color: var(--brass); transition: transform 0.25s, background 0.25s, color 0.25s; }
.contact-action:hover { transform: translateY(-2px); }
.contact-action--primary { background: var(--ink); border-color: var(--ink); color: #f4f0e7; }
.routes--contact .contact-route--professional { background: radial-gradient(100% 80% at 100% 0%, rgba(124, 77, 255, 0.18), transparent 60%), radial-gradient(80% 70% at 0% 100%, rgba(0, 229, 255, 0.06), transparent 66%), #151821; border-color: rgba(201, 172, 114, 0.44); }
.routes--contact .contact-route--professional:hover { background: radial-gradient(100% 80% at 100% 0%, rgba(124, 77, 255, 0.22), transparent 60%), radial-gradient(80% 70% at 0% 100%, rgba(0, 229, 255, 0.08), transparent 66%), #171a23; }
.contact-route--professional h2, .contact-route--professional .contact-route__lead, .contact-route--professional strong { color: #f4f0e7; }
.contact-route--professional p { color: #c1c5cf; }
.contact-route--professional .contact-route__scope { border-color: rgba(236, 232, 223, 0.14); }
.contact-route--professional .contact-route__scope li { border-color: rgba(236, 232, 223, 0.14); color: #b7bcc7; }
.contact-route--professional .contact-route__note { background: rgba(201, 172, 114, 0.08); color: #c9c4b8; }
.contact-route--professional .contact-action { color: var(--brass-2); }
.contact-route--professional .contact-action--primary { background: var(--brass-2); border-color: var(--brass-2); color: #14171e; }
.routes--contact .contact-route--editorial { background: radial-gradient(85% 65% at 100% 0%, rgba(255, 46, 136, 0.07), transparent 62%), linear-gradient(155deg, rgba(255, 253, 248, 0.96), rgba(201, 172, 114, 0.08)); }
.contact-coordinates { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 24px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 253, 248, 0.7); overflow: hidden; }
.contact-coordinates > div { min-width: 0; padding: 24px 26px; }
.contact-coordinates > div + div { border-left: 1px solid var(--line); }
.contact-coordinates .kicker { margin-bottom: 9px; color: var(--muted); }
.contact-coordinates strong { font-family: var(--display); font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.contact-smallprint { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 26px; margin-top: 34px; padding: 22px 0 0; border-top: 1px solid var(--line); }
.contact-smallprint p { max-width: 78ch; color: var(--muted); font-size: 0.82rem; line-height: 1.72; }
.contact-smallprint a { color: var(--brass); }

@media (max-width: 860px) {
  .routes--contact { grid-template-columns: 1fr; }
  .contact-coordinates { grid-template-columns: 1fr; }
  .contact-coordinates > div + div { border-left: 0; border-top: 1px solid var(--line); }
}
@media (max-width: 600px) {
  .contact-main { padding-top: 42px; }
  .contact-route { padding: 34px 28px; }
  .contact-route__number { right: 8px; font-size: 5.6rem; }
  .contact-route__actions { flex-direction: column; align-items: stretch; }
  .contact-action { width: 100%; }
  .contact-smallprint { grid-template-columns: 1fr; gap: 12px; }
}

/* ---------- legal ---------- */
.legal { max-width: 780px; }
.legal h2 { font-family: var(--display); font-weight: 600; font-size: 1.3rem; margin-top: 2em; color: var(--ink); }
.legal p, .legal li { font-size: 0.97rem; color: var(--text-2); }
.legal a { color: var(--brass); }
.legal .fill { background: rgba(166, 135, 78, 0.16); color: #8a6d3a; padding: 0 5px; border-radius: 3px; font-family: var(--mono); font-size: 0.85em; }

/* ---------- footer (dark anchor) ---------- */
.footer { position: relative; margin-top: 110px; padding: 72px 0 52px; font-family: var(--sans); font-size: 0.85rem; color: #a6adba; background: var(--ink-2); }
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--line-brass), rgba(91, 108, 223, 0.4), transparent); }
.footer .cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; }
@media (max-width: 860px) { .footer .cols { grid-template-columns: 1fr; } }
.footer .fm { font-family: var(--display); font-size: 1.3rem; letter-spacing: 0.16em; color: #ece8df; }
.footer p { line-height: 1.7; margin-top: 12px; max-width: 44ch; }
.footer .kicker { color: var(--brass-2); margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a { color: #a6adba; text-decoration: none; transition: color 0.2s; }
.footer a:hover { color: var(--brass-2); }
.footer .baseline { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(236, 232, 223, 0.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.78rem; color: #78808f; }
.footer .baseline .no-track { color: var(--brass-2); font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); filter: blur(6px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.8s ease; }
.reveal.in { opacity: 1; transform: none; filter: none; }

/* ---------- 404 ---------- */
.notfound { min-height: 82vh; display: flex; align-items: center; }
.notfound h1 { font-family: var(--display); font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 500; line-height: 1.05; color: var(--ink); }
.notfound p { margin-top: 20px; color: var(--text-2); max-width: 46ch; }
.notfound a { color: var(--brass); }

/* ============================================================
   HYPE LAYER — electric energy over the premium base.
   Magenta / violet / cyan for motion, interaction and hype;
   brass stays for editorial luxury; prose stays calm.
   ============================================================ */
:root {
  --hype1: #ff2e88;
  --hype2: #7c4dff;
  --hype3: #00e5ff;
}
::selection { background: var(--hype1); color: #fff; }
.progress { background: linear-gradient(90deg, var(--hype1), var(--hype2), var(--hype3)); }

.hero .aurora {
  background:
    radial-gradient(46% 40% at 82% 14%, rgba(255, 46, 136, 0.26), transparent 70%),
    radial-gradient(40% 46% at 6% 80%, rgba(124, 77, 255, 0.24), transparent 70%),
    radial-gradient(30% 32% at 52% 48%, rgba(0, 229, 255, 0.12), transparent 70%);
  animation: aurora 11s ease-in-out infinite alternate;
}
.pagehead::before, .article-head::before {
  background:
    radial-gradient(44% 40% at 82% 10%, rgba(255, 46, 136, 0.16), transparent 70%),
    radial-gradient(36% 42% at 6% 80%, rgba(124, 77, 255, 0.15), transparent 70%);
}
.hero--film .stack .l3 {
  background: linear-gradient(100deg, var(--hype1) 10%, var(--hype2) 45%, var(--hype3) 80%, var(--hype1) 110%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: gradShift 5s linear infinite;
}
@keyframes gradShift { to { background-position: 220% 0; } }
.hero-now::before { background: linear-gradient(100deg, transparent 30%, rgba(255, 46, 136, 0.22) 50%, transparent 70%); }
.hero-now:hover { border-color: rgba(124, 77, 255, 0.6); }
.hero-now:hover span.arrow { color: var(--hype1); }

.marquee span.solid { color: var(--hype1); }
.marquee-track { animation-duration: 26s; }

.stat .n {
  background: linear-gradient(120deg, var(--hype1), var(--hype2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.stat .n sup { -webkit-text-fill-color: var(--muted); }

.section-head::before { background: linear-gradient(90deg, var(--hype1), rgba(124, 77, 255, 0.4) 35%, var(--line) 70%, transparent); }
.section-head a { color: var(--hype2); }
.tag--accent { color: var(--hype1); border-color: rgba(255, 46, 136, 0.5); }
.chip:hover { border-color: rgba(124, 77, 255, 0.6); color: var(--hype2); }
.chip.active { background: var(--hype2); border-color: var(--hype2); color: #fff; }

.card:hover {
  border-color: rgba(124, 77, 255, 0.55);
  box-shadow: 0 40px 80px -34px rgba(23, 26, 33, 0.4), 0 0 70px -26px rgba(255, 46, 136, 0.45);
}
.card:hover h3 { color: var(--hype2); }
.card::after { background: linear-gradient(90deg, var(--hype1), var(--hype2) 60%, transparent); }

.premise::before { background: linear-gradient(120deg, rgba(255, 46, 136, 0.5), transparent 30%, transparent 70%, rgba(0, 229, 255, 0.45)); }
.premise .more a { color: var(--hype2); }
.premise li::before { -webkit-text-stroke: 1px var(--hype1); }

.strike::after { background: var(--hype1); }
.incident-copy h2 .alt {
  background: linear-gradient(100deg, var(--hype1) 15%, var(--hype2) 60%, var(--hype3) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: gradShift 6s linear infinite;
}
.incident-copy .cta { color: var(--hype2); border-bottom-color: rgba(124, 77, 255, 0.5); }
.sys { color: var(--hype1); }

.field:hover { border-color: rgba(255, 46, 136, 0.55); box-shadow: 0 34px 70px -30px rgba(23, 26, 33, 0.5), 0 0 70px -26px rgba(255, 46, 136, 0.5); }
.field .kicker { color: var(--hype1); }
.field .go { color: var(--hype3); }

.band .kicker { color: var(--hype1); }
.band a:hover h2 { text-decoration-color: var(--hype1); }

.route:hover { border-color: rgba(124, 77, 255, 0.55); }
.route--primary { border-color: rgba(255, 46, 136, 0.45); background: linear-gradient(170deg, rgba(255, 46, 136, 0.07), var(--card) 60%); }
.route .links a { color: var(--hype2); }

.filmstrip img:hover { transform: scale(1.05) rotate(-0.5deg); box-shadow: 0 20px 44px -20px rgba(124, 77, 255, 0.5); }
.gitem:hover { box-shadow: 0 26px 60px -28px rgba(255, 46, 136, 0.45); }

.wordmark::after { background: linear-gradient(90deg, var(--brass), var(--hype1)); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--hype1); border-bottom-color: var(--hype1); }

.footer::before { background: linear-gradient(90deg, transparent, var(--hype1), var(--hype2), rgba(0, 229, 255, 0.6), transparent); }
.footer a:hover { color: var(--hype1); }
.footer .baseline .no-track {
  background: linear-gradient(90deg, var(--brass-2), var(--hype1));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.avatar { border-color: rgba(255, 46, 136, 0.5); box-shadow: 0 0 40px -12px rgba(255, 46, 136, 0.5); }
.author-card .links a { color: var(--hype2); }
.replay:hover { color: var(--hype1); border-color: rgba(255, 46, 136, 0.4); }
.scrollcue { background: linear-gradient(180deg, var(--hype1), transparent); }
.cursor-ring.is-link { border-color: var(--hype1); }

/* ============================================================
   LEGAL-NATIVE LAYER — the site formatted like a regulation.
   OJ header, article numbering, redactions, stamps, §-motif.
   ============================================================ */
.oj {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-2);
  border: 1px solid rgba(201, 172, 114, 0.35);
  border-radius: 3px;
  padding: 7px 14px;
  margin-bottom: 26px;
  animation: rise 0.8s 0.05s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.ghost--para { font-size: clamp(22rem, 46vw, 42rem) !important; right: -4% !important; top: 42% !important; }

/* redaction bars that fall away */
.redact { position: relative; white-space: nowrap; }
.redact::after {
  content: "";
  position: absolute;
  inset: -2px -4px;
  transform-origin: right center;
  animation: redactOff 0.8s 2s cubic-bezier(0.3, 0, 0.2, 1) forwards;
}
.hero .redact::after, .dark .redact::after { background: #ece8df; }
.hero--film .redact::after { content: none; }
.incident-copy .redact::after { background: var(--ink); animation-delay: 1.2s; }
.redact:hover::after { transform: scaleX(0); }
@keyframes redactOff { to { transform: scaleX(0); } }

/* rubber stamps */
.stamp {
  position: absolute;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-align: center;
  line-height: 1.35;
  color: var(--hype1);
  border: 2.5px solid currentColor;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.82rem;
  opacity: 0;
  transform: rotate(-14deg) scale(0);
  pointer-events: none;
  z-index: 6;
}
.stamp.on { animation: stampIn 0.45s cubic-bezier(0.2, 1.5, 0.3, 1) forwards; }
@keyframes stampIn {
  from { transform: rotate(-28deg) scale(2.4); opacity: 0; }
  55% { opacity: 1; }
  to { transform: rotate(-13deg) scale(1); opacity: 0.92; }
}
#incident-stamp { top: 36%; right: 7%; }
.stamp--card {
  top: 16px; right: 16px;
  font-size: 0.6rem;
  padding: 5px 10px;
  border-width: 1.5px;
  border-radius: 5px;
  transform: rotate(8deg) scale(1);
  opacity: 0.92;
  animation: none;
}
/* article-numbered kickers get a hanging number look */
.section-head .kicker em { font-style: normal; color: var(--hype1); margin-right: 10px; }

/* ============================================================
   COLOR-MAX LAYER — more colour, more image energy.
   ============================================================ */
.filmstrip-track--rev { animation-direction: reverse; animation-duration: 74s; margin-top: 14px; }

/* every surface gets a quiet colour wash */
.section::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(42% 34% at 88% 6%, rgba(255, 46, 136, 0.055), transparent 60%),
    radial-gradient(38% 32% at 4% 94%, rgba(124, 77, 255, 0.055), transparent 60%);
}
.stats { background: linear-gradient(180deg, rgba(255, 46, 136, 0.05), rgba(124, 77, 255, 0.04) 60%, transparent); }
.marquee span { color: rgba(236, 232, 223, 0.28); -webkit-text-stroke: 1px rgba(236, 232, 223, 0.5); }
.marquee span.solid { color: var(--brass-2); -webkit-text-stroke: 0; }

/* gradient kickers on section heads */
.section-head .kicker {
  background: linear-gradient(90deg, var(--hype1), var(--hype2) 70%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* per-tile colour grades on the beat mosaic */
.fields .field:nth-child(4n+1)::after { background: linear-gradient(180deg, rgba(10, 13, 20, 0.06), rgba(255, 46, 136, 0.12) 62%, rgba(10, 13, 20, 0.82)); }
.fields .field:nth-child(4n+2)::after { background: linear-gradient(180deg, rgba(10, 13, 20, 0.06), rgba(124, 77, 255, 0.13) 62%, rgba(10, 13, 20, 0.82)); }
.fields .field:nth-child(4n+3)::after { background: linear-gradient(180deg, rgba(10, 13, 20, 0.06), rgba(0, 229, 255, 0.1) 62%, rgba(10, 13, 20, 0.84)); }
.fields .field:nth-child(4n)::after { background: linear-gradient(180deg, rgba(10, 13, 20, 0.06), rgba(201, 172, 114, 0.13) 62%, rgba(10, 13, 20, 0.82)); }

/* colour-graded card art */
.grid .card:nth-child(3n+1) .card-art::after { background: linear-gradient(180deg, rgba(255, 46, 136, 0.14), transparent 45%, rgba(10, 13, 20, 0.14)); }
.grid .card:nth-child(3n+2) .card-art::after { background: linear-gradient(180deg, rgba(124, 77, 255, 0.16), transparent 45%, rgba(10, 13, 20, 0.14)); }
.grid .card:nth-child(3n) .card-art::after { background: linear-gradient(180deg, rgba(0, 229, 255, 0.13), transparent 45%, rgba(10, 13, 20, 0.14)); }

/* filmstrip photos get colour pop on hover, slight tint at rest */
.filmstrip img { filter: saturate(1.08) contrast(1.03); }

/* premise + routes: livelier surfaces */
.premise { background: linear-gradient(160deg, #fffdf8, rgba(255, 46, 136, 0.035) 45%, rgba(124, 77, 255, 0.04)); }
.route { background: linear-gradient(165deg, var(--card), rgba(0, 229, 255, 0.04)); }

/* ---------- reading experience: cinematic essay heads + inline figures ---------- */
.article-head .filmbg { position: absolute; inset: 0; z-index: -3; }
.article-head .filmbg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.1s ease; }
.article-head .filmbg img.ok { opacity: 1; }
.article-head { background: #0d1017; }
.article-head .filmbg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(10, 13, 20, 0.94) 15%, rgba(10, 13, 20, 0.6) 55%, rgba(10, 13, 20, 0.42)),
    linear-gradient(180deg, rgba(10, 13, 20, 0.55), transparent 35%, rgba(10, 13, 20, 0.92));
}
.article-head .kicker, .article-head h1, .article-head .standfirst, .article-head .metaline { position: relative; z-index: 2; }
.article-head h1, .article-head .standfirst { color: #f2eee3; }
.article-head .standfirst { color: #b9bfca; }

.prose-img { margin: 2.6em auto; max-width: 860px; }
.prose-img img { width: 100%; border-radius: 16px; border: 1px solid var(--line); box-shadow: var(--shadow-soft); filter: grayscale(0.12) contrast(1.04) saturate(1.05); }
.prose-img figcaption { margin-top: 12px; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); text-align: center; }

/* ---------- reduced motion (targeted — ambient loops only) ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .aurora, .marquee-track, .hero-now::before, .scrollcue, .layers-viz .pulse { animation: none; }
  .band img.ok { animation: none; }
}

/* ============================================================
   HOME PREMIUM EDIT, 2026-07
   Fewer sections, stronger hierarchy, international BD focus.
   ============================================================ */
.home-premium .marquee--quiet {
  padding: 11px 0;
  background: #12141d;
}
.home-premium .marquee--quiet .marquee-track { gap: 2.35rem; animation-duration: 52s; }
.home-premium .marquee--quiet span {
  font-family: var(--mono);
  font-size: 0.69rem;
  letter-spacing: 0.2em;
  color: rgba(236, 232, 223, 0.35);
  -webkit-text-stroke: 0;
}
.home-premium .marquee--quiet span.solid { color: var(--brass-2); }

.home-proof {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.58);
}
.home-proof .shell { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.home-proof__item {
  --proof-accent: #b57755;
  --proof-accent-soft: rgba(181, 119, 85, 0.12);
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 30px 24px 28px;
  border-left: 1px solid var(--line);
  background: linear-gradient(145deg, var(--proof-accent-soft), rgba(255, 253, 248, 0.2) 58%);
  transition: background-color 0.35s ease, transform 0.35s ease;
}
.home-proof__item:nth-child(2) { --proof-accent: #257f8e; --proof-accent-soft: rgba(37, 127, 142, 0.11); }
.home-proof__item:nth-child(3) { --proof-accent: #8a538f; --proof-accent-soft: rgba(138, 83, 143, 0.11); }
.home-proof__item:nth-child(4) { --proof-accent: #536bb0; --proof-accent-soft: rgba(83, 107, 176, 0.11); }
.home-proof__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--proof-accent), transparent);
  transform: scaleX(0.45);
  transform-origin: left;
  transition: transform 0.45s ease, width 0.45s ease;
}
.home-proof__item:hover { background: linear-gradient(145deg, var(--proof-accent-soft), rgba(255, 255, 255, 0.74) 66%); }
.home-proof__item:hover::before { width: calc(100% - 48px); transform: scaleX(1); }
.home-proof__item:first-child { border-left: 0; }
.home-proof__mark {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.home-proof__mark--credentials { font-size: clamp(1rem, 1.65vw, 1.42rem); letter-spacing: 0.01em; }
.home-proof__mark--metric {
  display: flex;
  min-height: 48px;
  align-items: baseline;
  gap: 6px;
}
.home-proof .stat .n {
  display: inline-block;
  flex: 0 0 auto;
  font-family: var(--display);
  font-size: clamp(2.65rem, 4.6vw, 4.35rem);
  line-height: 0.82;
  letter-spacing: -0.055em;
  background: linear-gradient(145deg, #151821 8%, var(--proof-accent) 76%, #151821 150%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.home-proof__suffix {
  margin-left: -2px;
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--proof-accent);
}
.home-proof__unit {
  max-width: 15ch;
  font-family: var(--mono);
  font-size: 0.64rem;
  line-height: 1.35;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #424854;
}
.home-proof__label {
  display: block;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.58;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #606672;
}

.home-featured {
  --fx: 50%;
  --fy: 50%;
  position: relative;
  overflow: hidden;
  padding: 86px 0 78px;
  border-top: 1px solid rgba(23, 26, 33, 0.08);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(44% 95% at var(--fx) var(--fy), rgba(124, 77, 255, 0.09), transparent 72%),
    linear-gradient(115deg, rgba(255, 46, 136, 0.035), transparent 36%),
    #f8f6f1;
}
.home-featured::before {
  content: "PUBLIC RECORD";
  position: absolute;
  right: -0.02em;
  top: -0.22em;
  font-family: var(--display);
  font-size: clamp(7rem, 18vw, 17rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(23, 26, 33, 0.035);
  pointer-events: none;
  white-space: nowrap;
}
.home-featured .shell { position: relative; z-index: 1; }
.home-featured__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 38px;
}
.home-featured__intro .kicker { margin-bottom: 16px; }
.home-featured__intro h2 {
  font-family: var(--display);
  font-size: clamp(3rem, 6.4vw, 5.8rem);
  line-height: 0.91;
  letter-spacing: -0.05em;
  color: var(--ink);
}
.home-featured__intro p { max-width: 48ch; color: var(--text-2); font-size: 0.98rem; line-height: 1.72; }
.home-featured__grid {
  counter-reset: publication;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.12fr 0.78fr 0.82fr 1.28fr;
  min-height: 196px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
}
.home-featured__grid a {
  counter-increment: publication;
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 22px 24px;
  border-left: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  isolation: isolate;
  transition: color 0.35s ease, transform 0.35s ease, background-color 0.35s ease;
}
.home-featured__grid a:first-child { border-left: 0; }
.home-featured__grid a::before {
  content: "0" counter(publication);
  position: absolute;
  right: 14px;
  top: 12px;
  z-index: -1;
  font-family: var(--display);
  font-size: 3.9rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(23, 26, 33, 0.07);
}
.home-featured__grid a::after {
  content: "↗";
  position: absolute;
  right: 18px;
  bottom: 20px;
  color: var(--hype1);
  opacity: 0;
  transform: translate(-7px, 7px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.home-featured__grid a:hover {
  z-index: 1;
  color: #f6f2e9;
  background: rgba(17, 20, 29, 0.96);
  transform: translateY(-7px);
  box-shadow: 0 26px 58px -34px rgba(17, 20, 29, 0.65);
}
.home-featured__grid a:hover::before { -webkit-text-stroke-color: rgba(236, 232, 223, 0.13); }
.home-featured__grid a:hover::after { opacity: 1; transform: translate(0, 0); }
.home-featured__grid strong {
  max-width: 12ch;
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.75vw, 1.75rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.home-featured__grid span {
  max-width: 13ch;
  font-family: var(--mono);
  font-size: 0.55rem;
  line-height: 1.55;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.35s ease;
}
.home-featured__grid a:hover span { color: #aeb5c0; }
.home-featured__more {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 25px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-2);
  text-decoration: none;
}
.home-featured__more span { color: var(--hype1); transition: transform 0.3s ease; }
.home-featured__more:hover span { transform: translateX(5px); }

.home-systems {
  position: relative;
  overflow: hidden;
  padding: 112px 0 104px;
  background:
    linear-gradient(rgba(23, 26, 33, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 26, 33, 0.035) 1px, transparent 1px),
    radial-gradient(48% 58% at 96% 12%, rgba(124, 77, 255, 0.09), transparent 72%),
    #f5f2eb;
  background-size: 44px 44px, 44px 44px, auto, auto;
}
.home-systems::before {
  content: "SYSTEMS";
  position: absolute;
  right: -0.04em;
  top: -0.17em;
  font-family: var(--display);
  font-size: clamp(9rem, 22vw, 21rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(23, 26, 33, 0.045);
  pointer-events: none;
}
.home-systems .shell { position: relative; z-index: 1; }
.home-systems__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.68fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line-brass);
}
.home-systems__intro .kicker { margin-bottom: 18px; }
.home-systems__intro h2 {
  max-width: 15ch;
  font-family: var(--display);
  font-size: clamp(2.65rem, 5.5vw, 4.85rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.home-systems__intro p { max-width: 45ch; color: var(--text-2); font-size: 1rem; line-height: 1.72; }
.home-systems__experience {
  display: grid;
  grid-template-columns: minmax(340px, 0.76fr) minmax(0, 1.24fr);
  gap: 54px;
  align-items: start;
}
.home-systems__tabs {
  border-top: 1px solid var(--line);
}
.home-system-tab {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 10px 21px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: padding 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}
.home-system-tab::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--hype1), var(--hype3));
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.home-system-tab:hover, .home-system-tab:focus-visible, .home-system-tab.is-active {
  padding-left: 20px;
  background: rgba(255, 255, 255, 0.48);
}
.home-system-tab.is-active::before { transform: scaleY(1); }
.home-system-tab:focus-visible { outline: 1px solid rgba(124, 77, 255, 0.5); outline-offset: -1px; }
.home-system-tab__number {
  padding-top: 4px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--brass);
}
.home-system-tab__copy { display: block; min-width: 0; }
.home-system-tab__eyebrow {
  display: block;
  margin-bottom: 5px;
  font-family: var(--mono);
  font-size: 0.54rem;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.home-system-tab strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.home-system-tab__copy > span:not(.home-system-tab__eyebrow) {
  display: block;
  overflow: hidden;
  max-height: 0;
  margin-top: 0;
  color: var(--text-2);
  font-size: 0.83rem;
  line-height: 1.55;
  opacity: 0;
  transition: max-height 0.4s ease, margin 0.4s ease, opacity 0.3s ease;
}
.home-system-tab small {
  display: block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 0.52rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.home-system-tab.is-active .home-system-tab__copy > span:not(.home-system-tab__eyebrow) {
  max-height: 82px;
  margin-top: 9px;
  opacity: 1;
}
.home-systems__visual {
  position: sticky;
  top: 112px;
  min-width: 0;
  min-height: 590px;
  overflow: hidden;
  border-radius: 26px;
  background: #10131a;
  box-shadow: 0 55px 110px -56px rgba(17, 20, 27, 0.92);
  isolation: isolate;
}
.home-systems__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: inherit;
  pointer-events: none;
}
.home-system-panel {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.72s ease, transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.home-system-panel[hidden] { display: block; visibility: hidden; }
.home-system-panel.is-active { z-index: 2; opacity: 1; transform: scale(1); visibility: visible; }
.home-system-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.06);
  transform: scale(1.015);
  transition: transform 8s ease;
}
.home-system-panel.is-active img { transform: scale(1.075); }
.home-system-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 14, 21, 0.02) 35%, rgba(11, 14, 21, 0.88) 100%),
    linear-gradient(100deg, rgba(11, 14, 21, 0.22), transparent 55%);
}
.home-system-panel figcaption {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 30px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  color: #f5f1e8;
}
.home-system-panel figcaption span {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--brass-2);
}
.home-system-panel figcaption strong {
  max-width: 14ch;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.1vw, 3rem);
  font-weight: 500;
  line-height: 0.98;
  text-align: right;
}
.home-systems__visual-index {
  position: absolute;
  z-index: 5;
  left: 28px;
  right: 28px;
  top: 25px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.72);
}
.home-systems__sectors {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  text-transform: uppercase;
}
.home-systems__sectors > span { flex: 0 0 auto; color: var(--brass); font-size: 0.61rem; letter-spacing: 0.15em; }
.home-systems__sectors ul { display: flex; flex-wrap: wrap; gap: 12px 22px; list-style: none; }
.home-systems__sectors li { font-size: 0.59rem; letter-spacing: 0.13em; color: var(--muted); }
.home-systems__sectors li::before { content: "·"; margin-right: 10px; color: var(--hype1); }

.home-fieldnotes {
  position: relative;
  overflow: hidden;
  padding: 106px 0 0;
  background:
    radial-gradient(44% 90% at 6% 100%, rgba(255, 46, 136, 0.11), transparent 72%),
    radial-gradient(48% 90% at 96% 0%, rgba(0, 229, 255, 0.08), transparent 70%),
    #0d1017;
}
.home-fieldnotes::before {
  content: "FIELD";
  position: absolute;
  right: -0.05em;
  top: -0.15em;
  font-family: var(--display);
  font-size: clamp(10rem, 27vw, 25rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(236, 232, 223, 0.045);
  pointer-events: none;
}
.home-fieldnotes__head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: 72px;
  align-items: end;
}
.home-fieldnotes__head .kicker { margin-bottom: 18px; color: var(--brass-2); }
.home-fieldnotes__head h2 {
  max-width: 13ch;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.7vw, 5.2rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: #f4f0e7;
}
.home-fieldnotes__head p { max-width: 44ch; color: #b7bdc8; font-size: 1rem; line-height: 1.72; }
.home-filmstrip {
  position: relative;
  z-index: 1;
  margin-top: 58px;
  padding: 24px 0 34px;
  border-color: rgba(236, 232, 223, 0.13);
  background: rgba(10, 13, 20, 0.28);
}
.home-filmstrip .filmstrip-track { gap: 18px; animation-duration: 82s; align-items: center; }
.home-filmstrip img {
  height: clamp(188px, 18vw, 258px);
  border-color: rgba(236, 232, 223, 0.16);
  border-radius: 18px;
  filter: saturate(1.04) contrast(1.04);
  box-shadow: 0 28px 62px -32px rgba(0, 0, 0, 0.95);
}
.home-filmstrip img:nth-child(n) { transform: none; }
.home-filmstrip img:hover { transform: translateY(-6px) scale(1.025); filter: saturate(1.12) contrast(1.03); }

.home-journal { padding: 112px 0 124px; }
.home-section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
  padding-top: 20px;
  border-top: 1px solid var(--line-brass);
}
.home-section-intro .kicker { margin-bottom: 18px; }
.home-section-intro h2 {
  max-width: 15ch;
  font-family: var(--display);
  font-size: clamp(2.45rem, 5.3vw, 4.7rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.home-section-intro p { max-width: 42ch; color: var(--text-2); font-size: 1rem; line-height: 1.7; }
.home-text-link {
  display: inline-block;
  margin-top: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-brass);
  font-family: var(--mono);
  font-size: 0.69rem;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brass);
}
.home-text-link:hover { border-bottom-color: currentColor; }
.home-journal__secondary { gap: 24px; }
.home-journal__more {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.home-journal__more .card-art { aspect-ratio: 16 / 6.4; }
.home-journal__more .card:first-child {
  background: linear-gradient(145deg, rgba(245, 219, 195, 0.34), rgba(255, 253, 248, 0.92) 42%);
}
.home-journal__more .card:last-child {
  background: linear-gradient(145deg, rgba(198, 222, 237, 0.3), rgba(255, 253, 248, 0.92) 42%);
}

.home-manifesto {
  position: relative;
  min-height: clamp(440px, 64vh, 720px);
  overflow: hidden;
  background: #10131a;
  isolation: isolate;
}
.home-manifesto > img {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(0.84) contrast(1.1) brightness(0.78);
  animation: manifestoDrift 24s ease-in-out infinite alternate;
}
@keyframes manifestoDrift {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.085) translate3d(0, -1.2%, 0); }
}
.home-manifesto__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 11, 17, 0.78) 0%, rgba(8, 11, 17, 0.42) 45%, rgba(8, 11, 17, 0.08) 72%),
    linear-gradient(180deg, rgba(8, 11, 17, 0.08), rgba(8, 11, 17, 0.62));
}
.home-manifesto__veil::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.home-manifesto__copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: clamp(440px, 64vh, 720px);
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 86px;
  padding-bottom: 64px;
}
.home-manifesto__copy .kicker { margin-bottom: 18px; color: var(--brass-2); }
.home-manifesto__copy a { color: inherit; text-decoration: none; }
.home-manifesto__copy h2 {
  max-width: 14ch;
  font-family: var(--display);
  font-size: clamp(3rem, 7.2vw, 7rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.048em;
  color: #f5f1e8;
  text-wrap: balance;
}
.home-manifesto__copy a:hover h2 { color: #fff; }
.home-manifesto__copy p {
  max-width: 46ch;
  margin-top: 24px;
  color: #c0c4cc;
  font-size: 0.96rem;
  line-height: 1.65;
}
.home-manifesto__folio {
  position: absolute;
  z-index: 2;
  top: 32px;
  right: max(28px, calc((100vw - var(--shell)) / 2));
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.62);
}

.home-framework {
  position: relative;
  overflow: hidden;
  padding: 122px 0 108px;
  background:
    radial-gradient(62% 48% at 100% 0%, rgba(124, 77, 255, 0.2), transparent 70%),
    radial-gradient(54% 48% at 0% 100%, rgba(0, 229, 255, 0.1), transparent 72%),
    #090c13;
  color: #ece8df;
}
.home-framework::after {
  content: "ACCOUNTABILITY";
  position: absolute;
  top: -0.12em;
  right: -0.05em;
  font-family: var(--display);
  font-size: clamp(7rem, 17vw, 16rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(236, 232, 223, 0.045);
  pointer-events: none;
}
.home-framework .shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.42fr);
  gap: 54px 72px;
  align-items: end;
}
.home-framework__intro .kicker { margin-bottom: 22px; color: var(--brass-2); }
.home-framework__intro h2 {
  max-width: 13ch;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.8vw, 4.3rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #f4f0e7;
}
.home-framework__intro p { max-width: 47ch; margin-top: 24px; color: #b8bdc8; font-size: 1rem; line-height: 1.72; }
.home-framework__intro .home-text-link { color: var(--brass-2); }
.home-framework__metric {
  display: flex;
  justify-content: flex-end;
  gap: 19px;
  align-items: end;
  padding-bottom: 6px;
}
.home-framework__metric > span {
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.72;
  letter-spacing: -0.065em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(236, 232, 223, 0.62);
}
.home-framework__metric p {
  font-family: var(--mono);
  font-size: 0.58rem;
  line-height: 1.65;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7f8795;
}
.home-framework__metric strong { color: var(--brass-2); font-weight: 500; }
.home-framework__visual {
  grid-column: 1 / -1;
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 18px 18px 20px;
  border: 1px solid rgba(236, 232, 223, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(56% 100% at 50% 48%, rgba(124, 77, 255, 0.12), transparent 72%),
    rgba(7, 10, 16, 0.76);
  background-size: 42px 42px, 42px 42px, auto, auto;
  box-shadow: 0 60px 130px -58px rgba(0, 0, 0, 0.98), inset 0 1px rgba(255, 255, 255, 0.04);
}
.home-framework__visual::after {
  content: "LIVE SYSTEM";
  position: absolute;
  right: 27px;
  top: 24px;
  font-family: var(--mono);
  font-size: 0.54rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.42);
  pointer-events: none;
}
.entropy--home { margin: 0; }
.entropy--home canvas { height: clamp(430px, 57vh, 620px); border-radius: 18px; }
.entropy--home .entropy-ui { margin-top: -62px; position: relative; z-index: 3; padding-bottom: 8px; }
.entropy--home .chip {
  border-color: rgba(236, 232, 223, 0.22);
  background: rgba(10, 13, 20, 0.66);
  color: #d9d4ca;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.entropy--home .meta { margin-top: 10px; letter-spacing: 0.06em; text-align: center; color: #7f8795; }
.home-principles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  border-top: 1px solid rgba(236, 232, 223, 0.14);
}
.home-principles li { padding: 34px 34px 0 0; }
.home-principles li + li { padding-left: 34px; border-left: 1px solid rgba(236, 232, 223, 0.13); }
.home-principles__number {
  display: block;
  margin-bottom: 15px;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--brass-2);
}
.home-principles strong {
  display: block;
  max-width: 20ch;
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.3;
  color: #f4f0e7;
}
.home-principles p { max-width: 36ch; margin-top: 11px; color: #9ea4b0; font-size: 0.86rem; line-height: 1.65; }

.home-incident { padding: 124px 0 132px; }
.home-incident .incident-copy .kicker { margin-bottom: 22px; }

.home-stage-cinema {
  position: relative;
  overflow: hidden;
  background: #080b11;
}
.home-stage-cinema__frame {
  position: relative;
  min-height: clamp(560px, 76vh, 860px);
  overflow: hidden;
  margin: 0;
  isolation: isolate;
}
.home-stage-cinema__frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(0.94) contrast(1.08) brightness(0.86);
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.7s ease;
}
.home-stage-cinema__frame:hover > img { transform: scale(1.018); filter: saturate(1.02) contrast(1.06) brightness(0.88); }
.home-stage-cinema__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(270deg, rgba(6, 9, 15, 0.88) 0%, rgba(6, 9, 15, 0.62) 35%, rgba(6, 9, 15, 0.08) 67%),
    linear-gradient(180deg, rgba(6, 9, 15, 0.08) 38%, rgba(6, 9, 15, 0.76) 100%);
}
.home-stage-cinema__copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: clamp(560px, 76vh, 860px);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding-top: 94px;
  padding-bottom: 72px;
  text-align: right;
}
.home-stage-cinema__copy .kicker { margin-bottom: 20px; color: var(--brass-2); }
.home-stage-cinema__copy h2 {
  max-width: 11ch;
  font-family: var(--display);
  font-size: clamp(2.85rem, 5vw, 5.15rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: #f5f1e8;
  text-wrap: balance;
}
.home-stage-cinema__copy p { max-width: 42ch; margin-top: 24px; color: #d0d3da; font-size: 0.98rem; line-height: 1.68; }
.home-stage__cta {
  display: inline-block;
  align-self: flex-end;
  margin-top: 28px;
  padding: 12px 18px;
  border: 1px solid rgba(201, 172, 114, 0.55);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brass-2);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.home-stage__cta:hover { transform: translateY(-2px); background: var(--brass-2); color: #11141b; }
.home-stage-cinema__frame figcaption {
  position: absolute;
  z-index: 3;
  left: max(28px, calc((100vw - var(--shell)) / 2));
  right: auto;
  bottom: 34px;
  font-family: var(--mono);
  font-size: 0.56rem;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.72);
}

.home-contact { position: relative; padding: 124px 0 136px; overflow: hidden; }
.home-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(44% 55% at 0% 100%, rgba(201, 172, 114, 0.1), transparent 70%),
    radial-gradient(42% 56% at 100% 0%, rgba(124, 77, 255, 0.08), transparent 72%);
}
.home-contact .shell { position: relative; z-index: 1; }
.home-contact__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  gap: 50px;
  align-items: end;
  padding-top: 20px;
  border-top: 1px solid var(--line-brass);
}
.home-contact__intro .kicker { margin-bottom: 19px; }
.home-contact__intro h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.55rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.home-contact__intro p {
  padding-bottom: 6px;
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.7;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.home-contact__routes { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 24px; margin-top: 52px; }
.home-contact__route {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 42px 40px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.78);
  text-decoration: none;
  box-shadow: 0 32px 74px -50px rgba(23, 26, 33, 0.55);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.home-contact__route:hover { transform: translateY(-4px); border-color: var(--line-brass); box-shadow: 0 42px 88px -48px rgba(23, 26, 33, 0.6); }
.home-contact__route--professional {
  background:
    radial-gradient(68% 82% at 100% 0%, rgba(124, 77, 255, 0.16), transparent 72%),
    #131720;
  border-color: rgba(236, 232, 223, 0.15);
}
.home-contact__route .kicker { margin-bottom: 24px; }
.home-contact__route h3 {
  max-width: 17ch;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--ink);
}
.home-contact__route p { max-width: 50ch; margin-top: 20px; color: var(--text-2); font-size: 0.92rem; line-height: 1.68; }
.home-contact__action {
  position: static;
  margin-top: auto;
  padding-top: 28px;
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}
.home-contact__route--professional h3 { color: #f4f0e7; }
.home-contact__route--professional p { color: #b6bcc7; }
.home-contact__route--professional .kicker, .home-contact__route--professional .home-contact__action { color: var(--brass-2); }

@media (max-width: 980px) {
  .home-proof .shell { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-proof__item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .home-proof__item:nth-child(4) { border-top: 1px solid var(--line); }
  .home-framework .shell { grid-template-columns: 1fr; }
  .home-framework__intro h2 { max-width: 16ch; }
  .home-framework__metric { justify-content: flex-start; }
  .home-framework__visual { width: 100%; }
  .home-systems__experience { grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr); gap: 30px; }
  .home-systems__visual { min-height: 540px; }
  .home-fieldnotes__head { grid-template-columns: 1fr; gap: 24px; }
  .home-fieldnotes__head p { max-width: 60ch; }
  .home-systems__intro { grid-template-columns: 1fr; gap: 24px; }
  .home-systems__intro p { max-width: 60ch; }
  .home-featured__intro { grid-template-columns: 1fr; gap: 24px; }
  .home-featured__intro p { max-width: 60ch; }
  .home-featured__grid { grid-template-columns: 1.2fr 1fr 1.1fr repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .home-journal, .home-incident, .home-contact { padding-top: 86px; padding-bottom: 94px; }
  .home-framework { padding-top: 92px; padding-bottom: 100px; }
  .home-section-intro, .home-contact__intro { grid-template-columns: 1fr; gap: 24px; }
  .home-section-intro { margin-bottom: 38px; }
  .home-section-intro h2, .home-contact__intro h2 { font-size: clamp(2.25rem, 12vw, 3.45rem); }
  .home-principles { grid-template-columns: 1fr; }
  .home-principles li { padding: 26px 0; }
  .home-principles li + li { padding-left: 0; border-left: 0; border-top: 1px solid rgba(236, 232, 223, 0.13); }
  .home-principles strong, .home-principles p { max-width: none; }
  .home-contact__routes { grid-template-columns: 1fr; }
  .home-contact__route { min-height: 320px; }
  .home-fieldnotes { padding-top: 84px; }
  .home-fieldnotes__head h2 { font-size: clamp(2.55rem, 13vw, 3.7rem); }
  .home-filmstrip { margin-top: 38px; padding: 18px 0 26px; }
  .home-filmstrip img { height: 184px; border-radius: 14px; }
  .home-systems { padding-top: 86px; padding-bottom: 82px; }
  .home-systems__intro h2 { font-size: clamp(2.35rem, 12vw, 3.55rem); }
  .home-systems__experience { grid-template-columns: 1fr; gap: 28px; }
  .home-system-tab { grid-template-columns: 38px minmax(0, 1fr); padding-top: 17px; padding-bottom: 18px; }
  .home-system-tab:hover, .home-system-tab:focus-visible, .home-system-tab.is-active { padding-left: 14px; }
  .home-systems__visual { position: relative; top: auto; min-height: clamp(410px, 112vw, 560px); border-radius: 20px; }
  .home-system-panel figcaption { left: 24px; right: 24px; bottom: 24px; }
  .home-system-panel figcaption strong { font-size: clamp(1.7rem, 8.5vw, 2.7rem); }
  .home-featured { padding-top: 78px; padding-bottom: 70px; }
  .home-featured__intro h2 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .home-featured__grid {
    display: flex;
    min-height: 188px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .home-featured__grid::-webkit-scrollbar { display: none; }
  .home-featured__grid a { flex: 0 0 208px; scroll-snap-align: start; }
  .home-featured__grid a:first-child { border-left: 0; }
  .home-stage-cinema__frame { min-height: 0; overflow: visible; background: #080b11; }
  .home-stage-cinema__frame > img {
    position: relative;
    inset: auto;
    height: 460px;
    object-position: 45% 30%;
  }
  .home-stage-cinema__shade {
    height: 460px;
    bottom: auto;
    background: linear-gradient(180deg, rgba(6, 9, 15, 0.02) 38%, rgba(6, 9, 15, 0.56) 100%);
  }
  .home-stage-cinema__copy {
    min-height: 0;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 46px;
    padding-bottom: 56px;
    text-align: left;
    background:
      radial-gradient(80% 90% at 100% 0%, rgba(124, 77, 255, 0.13), transparent 72%),
      #080b11;
  }
  .home-stage-cinema__copy h2 { max-width: 10ch; font-size: clamp(3rem, 9vw, 4.1rem); }
  .home-stage-cinema__copy p { max-width: 36ch; }
  .home-stage__cta { align-self: flex-start; }
  .home-stage-cinema__frame figcaption { left: 28px; right: auto; top: 428px; bottom: auto; }
}

@media (max-width: 560px) {
  .cursor-dot, .cursor-ring { display: none; }
  .home-proof .shell { grid-template-columns: 1fr; }
  .home-proof__item { padding: 20px 0; border-left: 0; display: grid; grid-template-columns: minmax(130px, 0.85fr) 1.15fr; gap: 18px; align-items: center; }
  .home-proof__item + .home-proof__item { border-top: 1px solid var(--line); }
  .home-proof__label { margin-top: 0; font-size: 0.66rem; color: #515864; }
  .home-proof__mark, .home-proof__mark--credentials { font-size: 1.08rem; }
  .home-proof__mark--metric { min-height: 42px; gap: 5px; }
  .home-proof .stat .n { font-size: 3.2rem; }
  .home-proof__suffix { font-size: 1.05rem; }
  .home-proof__unit { font-size: 0.6rem; }
  .home-framework .shell { gap: 42px; }
  .home-framework__intro h2 { font-size: clamp(2.25rem, 12vw, 3.25rem); }
  .home-framework__metric { gap: 14px; }
  .home-framework__metric > span { font-size: clamp(4.6rem, 26vw, 6rem); }
  .home-framework__visual { padding: 8px 8px 14px; border-radius: 18px; }
  .entropy--home canvas { height: 420px; }
  .entropy--home .entropy-ui { margin-top: -70px; }
  .entropy--home .chip { font-size: 0.59rem; letter-spacing: 0.09em; }
  .home-manifesto, .home-manifesto__copy { min-height: 560px; }
  .home-manifesto__copy { padding-bottom: 48px; }
  .home-manifesto__copy h2 { max-width: 100%; font-size: clamp(2.85rem, 14.8vw, 4rem); }
  .home-manifesto__copy p { max-width: 31ch; }
  .home-manifesto__folio { right: 28px; }
  .home-stage-cinema__frame { min-height: 0; overflow: visible; background: #080b11; }
  .home-stage-cinema__frame > img {
    position: relative;
    inset: auto;
    height: 410px;
    object-position: 45% 30%;
  }
  .home-stage-cinema__shade {
    height: 410px;
    bottom: auto;
    background: linear-gradient(180deg, rgba(6, 9, 15, 0.02) 38%, rgba(6, 9, 15, 0.56) 100%);
  }
  .home-stage-cinema__copy {
    min-height: 0;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 42px;
    padding-bottom: 52px;
    text-align: left;
    background:
      radial-gradient(80% 90% at 100% 0%, rgba(124, 77, 255, 0.13), transparent 72%),
      #080b11;
  }
  .home-stage-cinema__copy h2 { max-width: 10ch; font-size: clamp(2.65rem, 13vw, 3.65rem); }
  .home-stage-cinema__copy p { max-width: 31ch; }
  .home-stage__cta { align-self: flex-start; }
  .home-stage-cinema__frame figcaption { left: 28px; right: auto; top: 380px; bottom: auto; }
  .home-journal__more { grid-template-columns: 1fr; }
  .home-journal__more .card-art { aspect-ratio: 16 / 8; }
  .home-contact__route { min-height: 340px; padding: 32px 28px; }
  .home-contact__action { left: 28px; bottom: 30px; }
  .home-systems__intro { margin-bottom: 32px; }
  .home-system-tab strong { font-size: clamp(1.4rem, 7vw, 1.8rem); }
  .home-system-tab small { font-size: 0.48rem; }
  .home-systems__visual { min-height: 430px; }
  .home-systems__visual-index { left: 20px; right: 20px; top: 19px; }
  .home-system-panel figcaption { display: block; }
  .home-system-panel figcaption strong { margin-top: 8px; text-align: left; }
  .home-systems__sectors { align-items: flex-start; gap: 14px; padding-left: 0; padding-right: 0; }
  .home-systems__sectors ul { gap: 9px 12px; }
  .home-featured__intro { margin-bottom: 30px; }
  .home-featured__grid { margin-right: -28px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-manifesto > img { animation: none; }
  .home-system-panel img, .home-stage-cinema__frame > img { transition: none; transform: none; }
}

/* ============================================================
   SITEWIDE DRKJ MASTHEAD
   One dark, premium brand lockup across every public page.
   ============================================================ */
.masthead--dark {
  background: rgba(9, 11, 16, 0.94);
  border-bottom-color: rgba(236, 232, 223, 0.11);
}
.brandlockup {
  display: inline-flex;
  min-width: 0;
  align-items: baseline;
}
.masthead--dark .wordmark { color: #f4f0e7; }
.masthead--dark .nav a { color: rgba(236, 232, 223, 0.58); }
.masthead--dark .nav a:hover,
.masthead--dark .nav a[aria-current="page"] { color: var(--hype1); border-bottom-color: var(--hype1); }

@media (max-width: 600px) {
  .brandlockup { display: flex; width: 100%; }
}

/* ============================================================
   JOURNAL EDITION, 2026-07
   Editorial cover, asymmetric desk and integrated field notes.
   ============================================================ */
.journal-edition { background: #f4f0e8; }
.journal-edition .masthead { background: #090b10; }
.journal-edition .wordmark { color: #f4f0e7; }

.journal-cover {
  position: relative;
  overflow: hidden;
  padding: 28px 0 72px;
  background:
    radial-gradient(48% 62% at 88% 4%, rgba(255, 46, 136, 0.09), transparent 72%),
    radial-gradient(42% 68% at 4% 100%, rgba(0, 229, 255, 0.055), transparent 74%),
    radial-gradient(70% 90% at 100% 0%, rgba(67, 89, 111, 0.22), transparent 72%),
    #090b10;
}
.journal-cover::before {
  content: "JOURNAL";
  position: absolute;
  right: -0.05em;
  top: 0.2em;
  font-family: var(--display);
  font-size: clamp(7rem, 18vw, 17rem);
  line-height: 0.8;
  letter-spacing: -0.07em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(236, 232, 223, 0.045);
  pointer-events: none;
}
.journal-cover__folio {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 13px 0 22px;
  border-top: 1px solid rgba(236, 232, 223, 0.18);
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #868d99;
}
.journal-cover__folio span:nth-child(2) { color: var(--brass-2); text-align: center; }
.journal-cover__folio span:last-child { text-align: right; }
.journal-cover__feature {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(236, 232, 223, 0.18);
  text-decoration: none;
  color: #f4f0e7;
  background: #0b0e14;
}
.journal-cover__feature::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0 0 auto;
  height: 1px;
  opacity: 0.82;
  background: linear-gradient(90deg, var(--brass-2), var(--hype1) 34%, var(--hype2) 66%, var(--hype3));
  pointer-events: none;
}
.journal-cover__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(38px, 5vw, 74px);
  background:
    radial-gradient(80% 60% at 0% 0%, rgba(201, 172, 114, 0.08), transparent 72%),
    #0a0c11;
}
.journal-cover__copy .kicker { margin-bottom: 30px; color: var(--brass-2); }
.journal-cover__copy h1 {
  max-width: 7.2ch;
  font-family: var(--display);
  font-size: clamp(4.4rem, 7.25vw, 7.6rem);
  font-weight: 500;
  line-height: 0.79;
  letter-spacing: -0.065em;
  color: #f4f0e7;
}
.journal-cover__copy p {
  max-width: 41ch;
  margin-top: 34px;
  font-size: 1rem;
  line-height: 1.7;
  color: #aeb4be;
}
.journal-cover__read {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding-top: 17px;
  border-top: 1px solid rgba(201, 172, 114, 0.42);
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass-2);
}
.journal-cover__image { position: relative; min-width: 0; overflow: hidden; margin: 0; }
.journal-cover__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 17, 0.42), transparent 32%),
    linear-gradient(180deg, transparent 62%, rgba(7, 9, 13, 0.72));
  pointer-events: none;
}
.journal-cover__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08) brightness(0.88);
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.7s ease;
}
.journal-cover__feature:hover .journal-cover__image img { transform: scale(1.025); filter: saturate(0.95) contrast(1.05) brightness(0.92); }
.journal-cover__image figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 24px;
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 240, 231, 0.76);
}

.journal-desk {
  position: relative;
  overflow: hidden;
  padding: 118px 0 132px;
  background:
    radial-gradient(38% 54% at 100% 8%, rgba(124, 77, 255, 0.055), transparent 72%),
    radial-gradient(34% 48% at 0% 94%, rgba(0, 229, 255, 0.035), transparent 72%),
    linear-gradient(rgba(23, 26, 33, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 26, 33, 0.035) 1px, transparent 1px),
    #f4f0e8;
  background-size: 72px 72px;
}
.journal-desk::after {
  content: "DESK";
  position: absolute;
  right: -0.05em;
  top: 0.2em;
  font-family: var(--display);
  font-size: clamp(8rem, 22vw, 19rem);
  line-height: 0.8;
  letter-spacing: -0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(23, 26, 33, 0.045);
  pointer-events: none;
}
.journal-desk .shell { position: relative; z-index: 1; }
.journal-desk__head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.66fr);
  gap: 72px;
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--brass), rgba(255, 46, 136, 0.62), rgba(124, 77, 255, 0.42), transparent 84%) 1;
}
.journal-desk__head .kicker { margin-bottom: 20px; }
.journal-desk__head h2 {
  font-family: var(--display);
  font-size: clamp(3.8rem, 7.8vw, 7rem);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.06em;
  color: var(--ink);
}
.journal-desk__intro { padding-bottom: 8px; }
.journal-desk__intro p:first-child { font-family: var(--display); font-size: 1.24rem; line-height: 1.48; color: var(--ink); }
.journal-desk__intro .meta { margin-top: 18px; line-height: 1.6; }
.journal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 62px 0 38px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.journal-filters .chip { border-radius: 999px; background: rgba(255, 253, 248, 0.44); }
.journal-filters a.chip { display: inline-flex; align-items: center; text-decoration: none; }
.journal-filters .chip.active {
  border-color: rgba(124, 77, 255, 0.78);
  color: #f4f0e7;
  background: linear-gradient(110deg, #171a21 12%, #49338e 100%);
  box-shadow: 0 10px 30px -18px rgba(124, 77, 255, 0.75);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 28px;
}
.journal-story {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid var(--ink);
}
.journal-story--lead {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: stretch;
}
.journal-story--portrait, .journal-story--wide, .journal-story--compact { grid-column: auto; margin-top: 0; }
.journal-story figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #12151c;
  box-shadow: 0 26px 60px -38px rgba(23, 26, 33, 0.58);
  transition: box-shadow 0.5s ease, transform 0.5s ease;
}
.journal-story:hover figure { transform: translateY(-2px); box-shadow: 0 34px 72px -34px rgba(23, 26, 33, 0.7), 0 0 64px -34px rgba(124, 77, 255, 0.62); }
.journal-story--lead figure { min-height: 470px; aspect-ratio: auto; }
.journal-story--portrait figure, .journal-story--wide figure, .journal-story--compact figure { aspect-ratio: 4 / 3; }
.journal-story figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(124, 77, 255, 0.05), transparent 50%, rgba(10, 13, 20, 0.12));
  pointer-events: none;
}
.journal-story:nth-child(1) figure::after { background: linear-gradient(145deg, rgba(124, 77, 255, 0.12), transparent 46%, rgba(255, 46, 136, 0.08), rgba(10, 13, 20, 0.14)); }
.journal-story:nth-child(2) figure::after { background: linear-gradient(145deg, rgba(255, 46, 136, 0.12), transparent 48%, rgba(201, 172, 114, 0.08), rgba(10, 13, 20, 0.14)); }
.journal-story:nth-child(3) figure::after { background: linear-gradient(145deg, rgba(0, 229, 255, 0.12), transparent 50%, rgba(124, 77, 255, 0.08), rgba(10, 13, 20, 0.13)); }
.journal-story:nth-child(4) figure::after { background: linear-gradient(145deg, rgba(201, 172, 114, 0.1), transparent 48%, rgba(0, 229, 255, 0.06), rgba(10, 13, 20, 0.14)); }
.journal-story figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.5s ease;
}
.journal-story:hover figure img { transform: scale(1.03); filter: saturate(1.06) contrast(1.03); }
.journal-story__copy { padding: 16px 4px 0; }
.journal-story--lead .journal-story__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px 12px 34px 38px;
  border-left: 1px solid var(--line);
}
.journal-story__line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 25px;
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #737985;
}
.journal-story__line span:first-child { color: var(--brass); }
.journal-story .kicker { margin-bottom: 13px; }
.journal-story h3 {
  max-width: 19ch;
  font-family: var(--display);
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--ink);
  transition: color 0.25s ease;
}
.journal-story--lead h3 { max-width: 12ch; font-size: clamp(3rem, 5vw, 5rem); }
.journal-story:not(.journal-story--lead) h3 { font-size: clamp(2rem, 2.8vw, 2.7rem); }
.journal-story--compact h3 { font-size: clamp(1.85rem, 3vw, 2.7rem); }
.journal-story:hover h3 { color: var(--hype2); }
.journal-story p { max-width: 54ch; margin-top: 17px; color: #555c68; font-size: 0.91rem; line-height: 1.65; }
.journal-story__read {
  display: inline-flex;
  gap: 12px;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
}

.journal-dispatches {
  position: relative;
  overflow: hidden;
  padding: 112px 0 120px;
  background:
    radial-gradient(60% 90% at 100% 0%, rgba(124, 77, 255, 0.14), transparent 72%),
    radial-gradient(42% 72% at 0% 100%, rgba(0, 229, 255, 0.055), transparent 72%),
    #090c12;
}
.journal-dispatches::after {
  content: "NOTES";
  position: absolute;
  left: -0.04em;
  bottom: -0.02em;
  font-family: var(--display);
  font-size: clamp(9rem, 24vw, 22rem);
  line-height: 0.62;
  letter-spacing: -0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(236, 232, 223, 0.05);
  pointer-events: none;
}
.journal-dispatches .shell { position: relative; z-index: 1; }
.journal-dispatches__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 60px;
  align-items: end;
  padding-top: 22px;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--brass-2), rgba(255, 46, 136, 0.56), rgba(124, 77, 255, 0.52), rgba(0, 229, 255, 0.34), transparent 92%) 1;
}
.journal-dispatches__head .kicker { margin-bottom: 20px; color: var(--brass-2); }
.journal-dispatches__head h2 {
  font-family: var(--display);
  font-size: clamp(3.4rem, 6.6vw, 6rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.055em;
  color: #f3efe6;
}
.journal-dispatches__head > p { max-width: 35ch; color: #a6acb7; line-height: 1.7; }
.journal-dispatches__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 64px; background: rgba(236, 232, 223, 0.16); }
.journal-dispatch {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 25px;
  min-height: 300px;
  padding: 34px;
  text-decoration: none;
  color: inherit;
  background: rgba(10, 13, 20, 0.94);
  transition: background 0.3s ease;
}
.journal-dispatch:hover { background: rgba(19, 23, 33, 0.98); }
.journal-dispatch__number { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.16em; color: var(--brass-2); }
.journal-dispatch .kicker { color: #7e8797; }
.journal-dispatch h3 { max-width: 19ch; margin-top: 26px; font-family: var(--display); font-size: clamp(2rem, 3.3vw, 3rem); font-weight: 500; line-height: 1; letter-spacing: -0.035em; color: #f3efe6; }
.journal-dispatch p { max-width: 47ch; margin-top: 19px; color: #9ba2ae; font-size: 0.9rem; line-height: 1.65; }
.journal-dispatch__arrow { align-self: end; font-size: 1.25rem; color: var(--brass-2); transition: transform 0.25s ease; }
.journal-dispatch:hover .journal-dispatch__arrow { transform: translate(3px, -3px); }

.journal-follow { padding: 94px 0 102px; background: #ece6dc; }
.journal-follow .shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: 72px;
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid var(--line-brass);
}
.journal-follow .kicker { margin-bottom: 15px; }
.journal-follow h2 { font-family: var(--display); font-size: clamp(2.7rem, 5vw, 4.8rem); font-weight: 500; line-height: 0.88; letter-spacing: -0.05em; color: var(--ink); }
.journal-follow__links { display: grid; gap: 1px; background: var(--line); }
.journal-follow__links a { display: flex; justify-content: space-between; gap: 20px; padding: 18px 20px; background: rgba(255, 253, 248, 0.56); font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; color: var(--ink); transition: background 0.25s ease, color 0.25s ease; }
.journal-follow__links a:hover { background: var(--ink); color: #f3efe6; }

@media (max-width: 960px) {
  .journal-cover__feature { grid-template-columns: 1fr; }
  .journal-cover__copy { min-height: 560px; }
  .journal-cover__image { min-height: 520px; }
  .journal-desk__head, .journal-dispatches__head { grid-template-columns: 1fr; gap: 32px; }
  .journal-desk__intro, .journal-dispatches__head > p { max-width: 54ch; }
  .journal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journal-story--lead { grid-column: 1 / -1; grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr); }
  .journal-story--portrait, .journal-story--wide, .journal-story--compact { grid-column: auto; margin-top: 0; }
  .journal-story--compact { grid-column: 1 / -1; width: calc(50% - 14px); justify-self: center; }
  .journal-dispatches__grid { grid-template-columns: 1fr; }
  .journal-follow .shell { grid-template-columns: 1fr; gap: 34px; }
  .journal-follow__links { grid-column: 1; margin-top: 0; }
}

@media (max-width: 620px) {
  .journal-cover { padding-bottom: 36px; }
  .journal-cover__folio { grid-template-columns: 1fr auto; }
  .journal-cover__folio span:last-child { display: none; }
  .journal-cover__feature { min-height: 0; }
  .journal-cover__copy { min-height: 500px; padding: 34px 26px 38px; }
  .journal-cover__copy h1 { font-size: clamp(3.75rem, 17vw, 5.2rem); }
  .journal-cover__copy p { margin-top: 26px; }
  .journal-cover__image { min-height: 390px; }
  .journal-cover__image figcaption { right: 18px; bottom: 18px; }
  .journal-desk { padding: 82px 0 90px; background-size: 48px 48px; }
  .journal-desk__head h2 { font-size: clamp(3.45rem, 16vw, 5rem); }
  .journal-filters { flex-wrap: nowrap; overflow-x: auto; margin: 46px -28px 28px; padding-left: 28px; padding-right: 28px; scrollbar-width: none; }
  .journal-filters::-webkit-scrollbar { display: none; }
  .journal-filters .chip { flex: 0 0 auto; }
  .journal-grid { grid-template-columns: 1fr; gap: 54px; }
  .journal-story--lead { display: flex; grid-column: 1; }
  .journal-story--lead figure { min-height: 0; aspect-ratio: 4 / 3; }
  .journal-story--lead .journal-story__copy { padding: 22px 4px 0; border-left: 0; }
  .journal-story--portrait, .journal-story--wide, .journal-story--compact { grid-column: 1; width: auto; justify-self: stretch; }
  .journal-story--portrait figure, .journal-story--wide figure, .journal-story--compact figure { aspect-ratio: 4 / 3; }
  .journal-story h3, .journal-story--compact h3 { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .journal-dispatches { padding: 82px 0 90px; }
  .journal-dispatches__head h2 { font-size: clamp(3.2rem, 14vw, 4.5rem); }
  .journal-dispatch { grid-template-columns: 1fr auto; min-height: 0; padding: 28px 24px 32px; }
  .journal-dispatch__number { grid-column: 1 / -1; }
  .journal-dispatch h3 { font-size: clamp(2.2rem, 11vw, 3rem); }
  .journal-follow { padding: 72px 0 78px; }
  .journal-follow .shell { grid-template-columns: 1fr; }
  .journal-follow h2 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .journal-follow__links { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .journal-cover__image img, .journal-story figure img { transition: none; transform: none; }
}

/* ============================================================
   SUBPAGE CINEMA, 2026-07
   One DRKJ editorial system, with a distinct opening scene for
   Journal, Off Counsel, Speaking, About, Contact and utility pages.
   ============================================================ */
.subpage {
  background:
    linear-gradient(rgba(23, 26, 33, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 26, 33, 0.025) 1px, transparent 1px),
    #f4f0e8;
  background-size: 72px 72px;
}

.subpage-hero {
  position: relative;
  display: flex;
  min-height: min(790px, 88svh);
  overflow: hidden;
  isolation: isolate;
  color: #f4f0e7;
  background: #090b10;
}
.subpage-hero::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 72px 0 auto;
  height: 1px;
  opacity: 0.82;
  background: linear-gradient(90deg, var(--brass-2), var(--hype1) 34%, var(--hype2) 66%, var(--hype3));
  pointer-events: none;
}
.subpage-hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 172, 114, 0.64), rgba(124, 77, 255, 0.58), transparent);
  pointer-events: none;
}
.subpage-hero__media,
.subpage-hero__shade { position: absolute; inset: 0; margin: 0; }
.subpage-hero__media { z-index: -3; background: #090b10; }
.subpage-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08) brightness(0.76);
  animation: subpageFrame 20s ease-in-out infinite alternate;
}
@keyframes subpageFrame {
  from { transform: scale(1.005); }
  to { transform: scale(1.055) translate3d(0, -0.7%, 0); }
}
.subpage-hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.98) 0%, rgba(7, 9, 13, 0.93) 30%, rgba(7, 9, 13, 0.59) 58%, rgba(7, 9, 13, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 9, 13, 0.4), transparent 36%, rgba(7, 9, 13, 0.76));
}
.subpage-hero__shell {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  align-items: flex-end;
  padding-top: 148px;
  padding-bottom: clamp(58px, 8vh, 92px);
}
.subpage-hero__copy { width: min(590px, 55%); }
.subpage-hero__copy .kicker {
  margin-bottom: 28px;
  color: var(--brass-2);
  animation: rise 0.8s 0.08s both;
}
.subpage-hero__copy h1 {
  font-family: var(--display);
  font-size: clamp(4.6rem, 8.4vw, 8.25rem);
  font-weight: 500;
  line-height: 0.79;
  letter-spacing: -0.065em;
  color: #f4f0e7;
  text-wrap: balance;
  animation: rise 0.95s 0.17s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.subpage-hero__copy > p {
  max-width: 46ch;
  margin-top: 34px;
  color: #d9dce2;
  font-size: 1rem;
  line-height: 1.7;
  animation: rise 0.9s 0.28s both;
}
.subpage-hero__copy > p a { color: var(--brass-2); }
.subpage-hero__folio {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  margin-top: 38px;
  padding-top: 17px;
  border-top: 1px solid rgba(201, 172, 114, 0.46);
  font-family: var(--mono);
  font-size: 0.58rem;
  line-height: 1.5;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c1c6cf;
  animation: rise 0.9s 0.36s both;
}
.subpage-hero__folio span:last-child { color: var(--brass-2); text-align: right; }
.subpage-hero__ghost {
  position: absolute;
  z-index: -1;
  right: -0.055em;
  bottom: -0.14em;
  font-family: var(--display);
  font-size: clamp(9rem, 23vw, 22rem);
  line-height: 0.8;
  letter-spacing: -0.07em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 240, 231, 0.075);
  pointer-events: none;
  user-select: none;
}

.subpage-hero--offc .subpage-hero__media img { object-position: 55% 46%; filter: saturate(0.94) contrast(1.04) brightness(0.73); }
.subpage-hero--offc .subpage-hero__shade {
  background:
    linear-gradient(90deg, rgba(10, 9, 10, 0.98) 0%, rgba(10, 9, 10, 0.94) 32%, rgba(10, 9, 10, 0.56) 59%, rgba(10, 9, 10, 0.13) 100%),
    linear-gradient(180deg, rgba(8, 9, 13, 0.32), transparent 38%, rgba(8, 9, 13, 0.72));
}
.subpage-hero--speaking .subpage-hero__media img { object-position: 52% 44%; }
.subpage-hero--about .subpage-hero__media img { object-position: 69% 43%; filter: saturate(0.82) contrast(1.04) brightness(0.7); }
.subpage-hero--about .subpage-hero__shade {
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.99) 0%, rgba(7, 9, 13, 0.95) 35%, rgba(7, 9, 13, 0.56) 61%, rgba(7, 9, 13, 0.08) 100%),
    linear-gradient(180deg, rgba(7, 9, 13, 0.35), transparent 38%, rgba(7, 9, 13, 0.7));
}
.subpage-hero--contact .subpage-hero__media img { object-position: 66% 50%; filter: saturate(0.68) hue-rotate(8deg) contrast(1.14) brightness(0.62); }
.subpage-hero--notes .subpage-hero__media img { object-position: 64% 48%; filter: saturate(0.7) contrast(1.14) brightness(0.58); }

.subpage-hero--compact { min-height: min(660px, 76svh); }
.subpage-hero--compact .subpage-hero__copy h1 { font-size: clamp(4.1rem, 7.6vw, 7.2rem); }
.subpage-hero--legal {
  background:
    radial-gradient(52% 80% at 86% 10%, rgba(124, 77, 255, 0.17), transparent 72%),
    radial-gradient(42% 70% at 8% 100%, rgba(0, 229, 255, 0.08), transparent 74%),
    #090b10;
}
.subpage-hero--legal::before { opacity: 0.48; }
.subpage-hero--legal .subpage-hero__shade {
  background:
    linear-gradient(rgba(236, 232, 223, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236, 232, 223, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
}

.subpage main > .section:first-child { padding-top: 88px !important; }
.subpage .footer { margin-top: 0; }

/* Speaking becomes a magazine spread rather than a tile shelf. */
.subpage--speaking .stage-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 118px;
  gap: 12px;
  margin-bottom: 92px;
}
.subpage--speaking .stage-grid figure {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(23, 26, 33, 0.16);
  background: #0b0e14;
  box-shadow: 0 28px 62px -38px rgba(10, 13, 20, 0.85);
}
.subpage--speaking .stage-grid figure:nth-child(1) { grid-column: span 7; grid-row: span 4; }
.subpage--speaking .stage-grid figure:nth-child(2) { grid-column: span 5; grid-row: span 2; }
.subpage--speaking .stage-grid figure:nth-child(3) { grid-column: span 5; grid-row: span 2; }
.subpage--speaking .stage-grid figure:nth-child(4),
.subpage--speaking .stage-grid figure:nth-child(5),
.subpage--speaking .stage-grid figure:nth-child(6) { grid-column: span 4; grid-row: span 2; }
.subpage--speaking .stage-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: saturate(0.88) contrast(1.05);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.45s ease;
}
.subpage--speaking .stage-grid figure:hover img { transform: scale(1.035); filter: saturate(1) contrast(1.03); }
.subpage--speaking .stage-grid figcaption {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  margin: 0;
  padding: 28px 18px 14px;
  color: rgba(244, 240, 231, 0.9);
  background: linear-gradient(180deg, transparent, rgba(7, 9, 13, 0.9));
}
.subpage--speaking .section-head { margin-top: 76px !important; }
.subpage--speaking .section-head .kicker {
  font-family: var(--display);
  font-size: clamp(2.25rem, 4.8vw, 4.5rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: none;
}
.subpage--speaking .row {
  grid-template-columns: 112px minmax(0, 1fr) 140px;
  gap: 26px;
  padding: 25px 12px;
}
.subpage--speaking .row .what { font-family: var(--serif); font-size: 0.98rem; font-weight: 400; line-height: 1.67; color: #333843; }
.subpage--speaking .row .what strong { font-family: var(--display); font-size: 1.08rem; color: var(--ink); }
.subpage--speaking .row .where { text-align: right; font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.08em; text-transform: uppercase; }
.subpage--speaking .grid--3 .card { border-radius: 0; border-top-color: rgba(201, 172, 114, 0.68); }
.subpage--speaking .poster-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 12px; align-items: start; }
.subpage--speaking .poster-grid img { grid-column: span 2; border-radius: 0; filter: saturate(0.9); }

/* About reads as a dossier, not a stack of generic cards. */
.subpage--about .bio-grid { grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.78fr); gap: clamp(44px, 6vw, 82px); }
.subpage--about .about-portrait .portrait { aspect-ratio: 4 / 5.2; border-radius: 0; border-color: rgba(23, 26, 33, 0.18); background: #0c1017; box-shadow: 0 32px 70px -40px rgba(10, 13, 20, 0.86); }
.subpage--about .about-portrait .portrait img { width: 100%; height: 100%; object-fit: cover; }
.subpage--about .about-dossier .cred { border-radius: 0; border-top-color: rgba(201, 172, 114, 0.62); }
.subpage--about .about-note { border-radius: 0; background: rgba(255, 253, 248, 0.72); }
.subpage--about .about-next { border-radius: 0; }

/* Contact keeps the ethical separation visually unmistakable. */
.subpage--contact .routes--contact { gap: 1px; padding: 1px; background: rgba(23, 26, 33, 0.13); }
.subpage--contact .contact-route { border-radius: 0; border: 0; border-top: 1px solid rgba(201, 172, 114, 0.6); box-shadow: none; }
.subpage--contact .contact-route:hover { transform: none; }
.subpage--contact .contact-coordinates { border-radius: 0; }
.subpage--contact .contact-smallprint { margin-bottom: 24px; }

/* Notes and legal pages use the same editorial grid at quieter volume. */
.subpage--notes .notes-list { border-top: 1px solid var(--line-brass); }
.subpage--notes .note { padding-top: 38px; padding-bottom: 38px; }
.subpage--notes .note:first-child { border-top: 0; }
.subpage--notes .note h3 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); font-weight: 500; }
.subpage--legal .legal {
  max-width: 900px;
  padding: clamp(34px, 6vw, 78px);
  border: 1px solid rgba(23, 26, 33, 0.13);
  border-top-color: rgba(201, 172, 114, 0.68);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 34px 78px -54px rgba(10, 13, 20, 0.72);
}
.subpage--legal .legal h2 { font-family: var(--display); font-size: clamp(1.55rem, 2.7vw, 2.15rem); font-weight: 500; line-height: 1.18; }
.subpage--legal .legal h2:not(:first-child) { margin-top: 2.35em; padding-top: 0.8em; border-top: 1px solid var(--line); }
.subpage--legal .legal p { margin-top: 1em; color: var(--text-2); }

@media (max-width: 960px) {
  .subpage-hero { min-height: 720px; }
  .subpage-hero__copy { width: min(650px, 70%); }
  .subpage-hero--about .subpage-hero__media img { object-position: 76% 42%; }
  .subpage--speaking .stage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 250px; }
  .subpage--speaking .stage-grid figure:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .subpage--speaking .stage-grid figure:nth-child(1) { grid-column: 1 / -1; grid-row: span 2; }
  .subpage--speaking .poster-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .subpage--speaking .poster-grid img { grid-column: auto; }
}

@media (max-width: 720px) {
  .subpage { background-size: 48px 48px; }
  .subpage-hero { min-height: 690px; }
  .subpage-hero::before { top: 108px; }
  .subpage-hero__shell { align-items: flex-end; padding-top: 178px; padding-bottom: 48px; }
  .subpage-hero__copy { width: 100%; }
  .subpage-hero__copy h1,
  .subpage-hero--compact .subpage-hero__copy h1 { font-size: clamp(3.75rem, 17vw, 5.55rem); }
  .subpage-hero__copy > p { max-width: 34ch; margin-top: 26px; font-size: 0.94rem; }
  .subpage-hero__folio { margin-top: 28px; }
  .subpage-hero__folio span:last-child { display: none; }
  .subpage-hero__media img { object-position: 62% center; }
  .subpage-hero__shade {
    background:
      linear-gradient(180deg, rgba(7, 9, 13, 0.37), rgba(7, 9, 13, 0.72) 44%, rgba(7, 9, 13, 0.97) 100%),
      linear-gradient(90deg, rgba(7, 9, 13, 0.78), rgba(7, 9, 13, 0.22));
  }
  .subpage-hero--offc .subpage-hero__media img { object-position: 63% center; }
  .subpage-hero--offc .subpage-hero__shade,
  .subpage-hero--about .subpage-hero__shade {
    background: linear-gradient(180deg, rgba(7, 9, 13, 0.28), rgba(7, 9, 13, 0.72) 42%, rgba(7, 9, 13, 0.98) 100%);
  }
  .subpage-hero--about .subpage-hero__media img { object-position: 64% 26%; }
  .subpage main > .section:first-child { padding-top: 62px !important; }
  .subpage--speaking .stage-grid { grid-template-columns: 1fr; grid-auto-rows: 270px; margin-bottom: 68px; }
  .subpage--speaking .stage-grid figure:nth-child(n),
  .subpage--speaking .stage-grid figure:nth-child(1) { grid-column: 1; grid-row: span 1; }
  .subpage--speaking .stage-grid figure:nth-child(1) { min-height: 390px; }
  .subpage--speaking .section-head .kicker { font-size: clamp(2.25rem, 12vw, 3.4rem); }
  .subpage--speaking .row { grid-template-columns: 1fr; gap: 8px; padding: 24px 2px; }
  .subpage--speaking .row .where { text-align: left; }
  .subpage--speaking .poster-grid { display: flex; max-width: 100%; overflow-x: auto; gap: 12px; padding-bottom: 18px; scroll-snap-type: x mandatory; }
  .subpage--speaking .poster-grid img { flex: 0 0 72%; scroll-snap-align: start; }
  .subpage--about .bio-grid { grid-template-columns: 1fr; }
  .subpage--about .about-portrait { width: 100%; max-width: 520px; }
  .subpage--contact .routes--contact { grid-template-columns: 1fr; }
  .subpage--contact .contact-route { padding: 38px 28px; }
  .subpage--legal .legal { padding: 30px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .subpage-hero__media img { animation: none; transform: none; }
}
/* ============================================================
   DRKJ — design system v3 "light cinematic"
   Warm ivory canvas, pastel aurora light, floating imagery,
   oversized serif, choreographed motion. Brass + ink + indigo.
   ============================================================ */

:root {
  --paper: #f7f4ed;
  --paper-2: #efeae0;
  --card: #fffdf8;
  --ink: #171a21;
  --ink-2: #10131a;
  --text: #1d212a;
  --text-2: #575d69;
  --muted: #8a8f9a;
  --brass: #a6874e;
  --brass-2: #c9ac72;
  --indigo: #5b6cdf;
  --line: rgba(23, 26, 33, 0.12);
  --line-brass: rgba(166, 135, 78, 0.45);
  --glass: rgba(255, 253, 248, 0.6);
  --shadow-soft: 0 30px 70px -30px rgba(23, 26, 33, 0.25);

  --display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --serif: Charter, "Bitstream Charter", "Sitka Text", Cambria, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "Cascadia Code", Menlo, Consolas, monospace;

  --shell: 1180px;
  --measure: 70ch;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--serif);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--brass); color: #fff; }

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 28px; }

/* film grain, very quiet on light */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.02 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- cursor ---------- */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 999; border-radius: 50%; transform: translate(-50%, -50%); }
.cursor-dot { width: 6px; height: 6px; background: var(--ink); }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(166, 135, 78, 0.7); transition: width 0.25s, height 0.25s, border-color 0.25s; }
.cursor-ring.is-link { width: 58px; height: 58px; border-color: var(--indigo); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- type helpers ---------- */
.kicker { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass); display: block; }
.meta { font-family: var(--sans); font-size: 0.8rem; color: var(--muted); }
.tag { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; border: 1px solid var(--line); padding: 0.25em 0.7em; border-radius: 999px; color: var(--text-2); white-space: nowrap; background: rgba(255, 253, 248, 0.7); }
.tag--accent { color: var(--brass); border-color: var(--line-brass); }

/* ---------- masthead ---------- */
.masthead, .masthead--dark, .masthead--solid {
  position: fixed; inset: 0 0 auto 0; z-index: 20;
  padding: 18px 0;
  background: rgba(247, 244, 237, 0.66);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(23, 26, 33, 0.08);
}
.masthead .shell { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.wordmark { font-family: var(--display); font-weight: 600; font-size: 1.3rem; letter-spacing: 0.16em; text-decoration: none; color: var(--ink); position: relative; }
.wordmark::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1.5px; background: linear-gradient(90deg, var(--brass), transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.35s; }
.wordmark:hover::after { transform: scaleX(1); }
.nav { display: flex; gap: 26px; flex-wrap: wrap; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; }
.nav a { text-decoration: none; color: var(--text-2); padding-bottom: 3px; border-bottom: 1px solid transparent; transition: color 0.2s, border-color 0.2s; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--brass); border-bottom-color: var(--brass); }
.nav a.lang {
  border: 1px solid var(--line-brass);
  border-radius: 999px;
  padding: 4px 14px;
  color: var(--brass);
  border-bottom: 1px solid var(--line-brass);
}
.nav a.lang:hover { background: rgba(166, 135, 78, 0.12); border-color: var(--brass); }

@media (max-width: 600px) {
  .masthead, .masthead--dark, .masthead--solid { padding: 11px 0; }
  .masthead .shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .wordmark { font-size: 1.15rem; line-height: 1.2; }
  .nav {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    justify-content: space-between;
    width: 100%;
    gap: 7px 12px;
    font-size: 0.62rem;
    line-height: 1.25;
    letter-spacing: 0.12em;
  }
  .nav a { padding-bottom: 1px; }
}

.progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: linear-gradient(90deg, var(--brass), var(--indigo)); z-index: 30; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 150px 0 110px;
  overflow: hidden;
  isolation: isolate;
}
.hero .fx { position: absolute; inset: 0; z-index: -2; }
.hero .aurora {
  position: absolute; inset: -18%;
  z-index: -3;
  background:
    radial-gradient(46% 40% at 80% 12%, rgba(201, 172, 114, 0.28), transparent 70%),
    radial-gradient(38% 44% at 8% 78%, rgba(91, 108, 223, 0.16), transparent 70%),
    radial-gradient(30% 30% at 50% 50%, rgba(224, 112, 90, 0.07), transparent 70%);
  filter: blur(46px);
  animation: aurora 18s ease-in-out infinite alternate;
}
@keyframes aurora { from { transform: translate3d(-2%, -1%, 0) scale(1); } to { transform: translate3d(2.5%, 2%, 0) scale(1.07); } }
.hero .ghost {
  position: absolute; right: -2%; top: 8%;
  font-family: var(--display);
  font-size: clamp(12rem, 26vw, 26rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(166, 135, 78, 0.18);
  pointer-events: none; user-select: none; z-index: -1;
  animation: ghostIn 2s 0.3s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes ghostIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes rise { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: none; } }

.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 56px; } }

.hero .kicker { margin-bottom: 26px; animation: rise 0.8s 0.1s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.hero h1.stack { font-family: var(--display); font-weight: 500; letter-spacing: -0.02em; color: var(--ink); animation: rise 1.05s 0.42s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.hero .stack span.l1, .hero .stack span.l2, .hero .stack span.l3 { display: block; font-size: clamp(3rem, 8.4vw, 7rem); line-height: 0.98; }
.hero .stack .l1 { color: var(--ink); }
.hero .stack .l2 { color: transparent; -webkit-text-stroke: 1.5px rgba(23, 26, 33, 0.55); }
.hero .stack .l3 {
  font-style: italic;
  background: linear-gradient(100deg, #8a6d3a 15%, var(--brass-2) 50%, #8a6d3a 85%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.rotator { display: inline-grid; align-items: end; vertical-align: baseline; }
.rotator .word { grid-area: 1 / 1; align-self: end; position: static; width: auto; opacity: 0; transform: translateY(36%) rotateX(50deg); transition: none; will-change: transform, opacity; }
.rotator .word.is-on { opacity: 1; transform: none; transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1); }
.hero .byline { margin-top: 34px; max-width: 52ch; font-size: clamp(1rem, 1.5vw, 1.16rem); line-height: 1.65; color: var(--text-2); animation: rise 1s 0.92s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.hero .byline strong { color: var(--ink); font-weight: 600; }

.hero-now {
  margin-top: 42px;
  display: inline-flex; align-items: baseline; gap: 14px;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 16px 26px;
  background: var(--glass);
  box-shadow: 0 16px 40px -22px rgba(23, 26, 33, 0.35);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
  animation: rise 1s 1.2s cubic-bezier(0.2, 0.7, 0.2, 1) both;
  position: relative; overflow: hidden; max-width: 100%;
}
.hero-now::before { content: none; }
.hero--film .hero-now { background: rgba(14, 17, 26, 0.55); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-color: rgba(255, 255, 255, 0.16); }
.hero--film .hero-now span.t { color: #ece8df; }
@keyframes sheen { 0% { transform: translateX(-100%); } 45%, 100% { transform: translateX(100%); } }
.hero-now:hover { border-color: var(--line-brass); box-shadow: 0 22px 50px -22px rgba(23, 26, 33, 0.45); }
.hero-now .kicker { margin: 0; }
.hero-now span.t { font-family: var(--serif); font-size: 1rem; color: var(--ink); }
.hero-now span.arrow { color: var(--brass); font-family: var(--sans); transition: transform 0.25s; }
.hero-now:hover span.arrow { transform: translateX(5px); }

/* floating photo collage */
.collage { position: relative; height: clamp(420px, 56vh, 600px); animation: rise 1.1s 0.5s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.collage figure {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: 0 40px 90px -35px rgba(23, 26, 33, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.65);
  outline: 1px solid var(--line);
  will-change: transform;
}
.collage figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(201, 172, 114, 0.06), transparent 40%, rgba(23, 26, 33, 0.12)); pointer-events: none; }
.collage img, .collage canvas { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.collage img { opacity: 0; transition: opacity 0.8s ease; }
.collage img.ok { opacity: 1; }
.collage figcaption {
  position: absolute; left: 14px; bottom: 12px; z-index: 2;
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255, 253, 248, 0.9);
  background: rgba(23, 26, 33, 0.45);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 5px 10px; border-radius: 999px;
}
.collage .f1 { width: 62%; aspect-ratio: 3 / 4; left: 0; top: 4%; transform: rotate(-3deg); z-index: 2; }
.collage .f2 { width: 52%; aspect-ratio: 4 / 3; right: 0; top: 0; transform: rotate(2.5deg); z-index: 1; }
.collage .f3 { width: 56%; aspect-ratio: 5 / 4; right: 6%; bottom: 0; transform: rotate(-1.5deg); z-index: 3; }
@media (max-width: 980px) { .collage { height: 420px; max-width: 520px; } }

.hero .scrollcue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); width: 1px; height: 56px; background: linear-gradient(180deg, var(--brass), transparent); animation: cue 2.2s ease-in-out infinite; z-index: 2; }
@keyframes cue { 0%, 100% { opacity: 0.25; transform: translateX(-50%) scaleY(0.6); transform-origin: top; } 50% { opacity: 1; transform: translateX(-50%) scaleY(1); } }

/* ---------- FILM HERO (full-bleed cinematic opener) ---------- */
.hero--film { color: #f2eee3; background: #0d1017; }
.hero--film .filmbg { position: absolute; inset: 0; z-index: -4; }
.hero--film .filmbg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.2s ease; }
.hero--film .filmbg img.ok { opacity: 1; animation: kenburns 26s ease-in-out infinite alternate; }
.hero--film .filmbg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(97deg, rgba(8, 10, 16, 0.88) 0%, rgba(8, 10, 16, 0.72) 34%, rgba(8, 10, 16, 0.38) 58%, rgba(8, 10, 16, 0.08) 82%, rgba(8, 10, 16, 0) 100%),
    linear-gradient(180deg, rgba(8, 10, 16, 0.42) 0%, rgba(8, 10, 16, 0) 24%, rgba(8, 10, 16, 0) 52%, rgba(8, 10, 16, 0.78) 100%);
}
.hero--film .stack, .hero--film .byline, .hero--film .kicker {
  text-shadow: 0 2px 24px rgba(10, 13, 20, 0.75), 0 1px 6px rgba(10, 13, 20, 0.6);
}
.hero--film .byline { color: #dde0e8; }
.hero--film .byline strong { color: #ffffff; }
@media (max-width: 480px) {
  .hero--film { padding-top: 124px; }
}
/* vivid editorial grade: colour kept, cinema scrim on top */
.filmbg--vivid img { filter: saturate(1.05) contrast(1.04) brightness(0.92); }

/* duotone treatment: timeless ink-and-brass editorial grade */
.filmbg--duo img { filter: grayscale(1) contrast(1.08) brightness(0.92); }
.filmbg--duo::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(120deg, rgba(91, 76, 42, 0.42), rgba(201, 172, 114, 0.18) 55%, rgba(124, 140, 255, 0.14));
  mix-blend-mode: color;
  pointer-events: none;
}
.hero--film .aurora {
  background:
    radial-gradient(42% 38% at 82% 16%, rgba(201, 172, 114, 0.2), transparent 70%),
    radial-gradient(36% 42% at 10% 84%, rgba(124, 140, 255, 0.14), transparent 70%);
  z-index: -3;
}
.hero--film .ghost { -webkit-text-stroke: 1px rgba(201, 172, 114, 0.16); }
.hero--film .kicker { color: var(--brass-2); }
.hero--film .stack .l1 { color: #f2eee3; font-size: clamp(1.9rem, 4.6vw, 3.6rem); line-height: 1.1; letter-spacing: 0; margin-bottom: 0.5rem; font-style: italic; }
.hero--film .stack .l2 { color: transparent; -webkit-text-stroke: 1.5px rgba(242, 238, 227, 0.7); }
.hero--film .stack .l3 { background: linear-gradient(100deg, var(--brass-2) 15%, #ecd9ab 50%, var(--brass-2) 85%); -webkit-background-clip: text; background-clip: text; }
.hero--film .byline { color: #ece8df; }
.hero--film .byline strong { color: #ffffff; }
.hero--film .byline {
  max-width: 60ch;
  padding: 2px 0 2px 18px;
  border-left: 2px solid rgba(201, 172, 114, 0.72);
}
.hero--film .byline-text { min-width: 0; }
.hero--film .byline .byline-name {
  font-family: var(--display);
  font-size: 1.12em;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration-line: underline;
  text-decoration-color: rgba(201, 172, 114, 0.9);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}
.hero--film .byline .byline-identity {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.18em 0.7em;
  margin-bottom: 0.28em;
}
.hero--film .byline .byline-credentials {
  color: var(--brass-2);
  font-family: var(--mono);
  font-size: 0.64em;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero--film .byline .byline-copy { display: block; }
@media (max-width: 480px) {
  .hero--film .byline {
    padding: 2px 0 2px 12px;
    border-left-width: 1px;
  }
}
@media (max-width: 350px) {
  .hero-now {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px 12px;
    width: 100%;
    padding: 16px 18px;
    border-radius: 24px;
  }
  .hero-now .kicker, .hero-now span.t { grid-column: 1; }
  .hero-now span.arrow { grid-column: 2; grid-row: 1 / span 2; }
}
.hero--film .hero-now { border-color: rgba(242, 238, 227, 0.22); background: rgba(16, 19, 26, 0.45); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.7); }
.hero--film .hero-now span.t { color: #f2eee3; }
.hero--film .hero-now .kicker, .hero--film .hero-now span.arrow { color: var(--brass-2); }
.hero--film + .marquee { border-top: 0; }

/* ---------- particle-type hero canvas ---------- */
.hero--film .ptext { position: absolute; inset: 0; z-index: -1; }
.hero--film .filmbg { position: absolute; inset: 0; z-index: -5; }
.hero--film .flowfield { position: absolute; inset: 0; z-index: -4; }
.hero--film .lawfield { position: absolute; inset: 0; z-index: -3; }

/* image trail (cursor-following photos) */
.trail-img {
  position: absolute;
  width: 120px;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 1;
  border: 1px solid rgba(242, 238, 227, 0.35);
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: scale(0.6) rotate(var(--rot, 0deg));
  transition: opacity 0.25s ease, transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.trail-img.on { opacity: 0.95; transform: scale(1) rotate(var(--rot, 0deg)); }
.trail-img.off { opacity: 0; transform: scale(0.9) translateY(30px) rotate(var(--rot, 0deg)); transition: opacity 0.5s, transform 0.6s; }

/* ---------- filmstrip (frames from the field) ---------- */
.filmstrip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px 0; overflow: hidden; background: rgba(255, 253, 248, 0.5); }
.filmstrip-track { display: flex; gap: 14px; width: max-content; animation: marquee 60s linear infinite; }
.filmstrip:hover .filmstrip-track { animation-play-state: paused; }
.filmstrip img { height: 200px; width: auto; border-radius: 14px; border: 1px solid var(--line); box-shadow: 0 16px 36px -22px rgba(23, 26, 33, 0.4); transition: transform 0.3s; }
.filmstrip img:hover { transform: scale(1.03); }
.filmstrip .fs-cap { text-align: center; margin-top: 14px; }

/* ---------- off counsel stories and gallery ---------- */
.section.offc-section { padding: 58px 0 76px; }
.offc-stories { display: grid; gap: 26px; }
.offc-story {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  gap: clamp(38px, 6vw, 76px);
  align-items: center;
  padding: 58px 8px 72px;
  border-top: 1px solid var(--line);
}
.offc-story:last-child { border-bottom: 1px solid var(--line); }
.offc-story--reverse .offc-story__copy { order: 2; }
.offc-story--reverse .offc-story__triptych { order: 1; }
.offc-story__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.offc-story h2 {
  max-width: 18ch;
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.04;
  color: var(--ink);
}
.offc-story p { max-width: 60ch; color: var(--text-2); font-size: 0.98rem; line-height: 1.78; }
.offc-story p + p { margin-top: 14px; }
.offc-story p a {
  color: var(--ink);
  text-decoration-color: var(--line-brass);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}
.offc-story p a:hover { color: var(--brass); }
.offc-story__links { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; padding-top: 8px; }
.offc-story__links a {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brass);
}
.offc-story__links a:hover { text-decoration: underline; text-underline-offset: 0.35em; }
.offc-story__media,
.offc-story__triptych figure {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-2);
  box-shadow: 0 24px 48px -22px rgba(23, 26, 33, 0.48), 0 5px 14px -9px rgba(23, 26, 33, 0.38);
}
.offc-story__media { aspect-ratio: 4 / 3; transform: rotate(0.6deg); }
.offc-story__triptych {
  position: relative;
  aspect-ratio: 1 / 1.04;
  isolation: isolate;
}
.offc-story__triptych figure:first-child {
  position: absolute;
  left: 0;
  top: 9%;
  width: 56%;
  height: 84%;
  transform: rotate(-4.2deg);
  z-index: 2;
}
.offc-story__triptych figure:nth-child(2) {
  position: absolute;
  right: 0;
  top: 1%;
  width: 60%;
  height: 40%;
  transform: rotate(3.4deg);
  z-index: 4;
}
.offc-story__triptych figure:nth-child(3) {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 48%;
  height: 58%;
  transform: rotate(-2.8deg);
  z-index: 3;
}
.offc-story__media img,
.offc-story__triptych img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.offc-story__media:hover img,
.offc-story__triptych figure:hover img { transform: scale(1.025); }
.offc-story__triptych figure:first-child img { object-position: center; }
.offc-story__triptych figure:nth-child(2) img { object-position: center; }
.offc-story__triptych figure:nth-child(3) img { object-position: center; }
.offc-story__triptych--mate figure:nth-child(2) img { object-position: center 38%; }
.offc-story__triptych--mate figure:nth-child(3) img { object-fit: cover; object-position: center; }
.offc-story__triptych--mate figure:first-child { width: 54%; height: 82%; }
.offc-story__triptych--mate figure:nth-child(2) { width: 55%; height: 36%; }
.offc-story__triptych--mate figure:nth-child(3) { right: 2%; width: 42%; height: 52%; }
.offc-story__poster-card { width: 44% !important; height: 52% !important; background: #171a20; }
.offc-story__poster-card img { object-fit: contain; object-position: center; }
.offc-story__triptych--zsombor figure:first-child { top: 14%; width: 56%; height: 72%; }
.offc-story__triptych--zsombor figure:nth-child(3) { right: 3%; width: 46%; height: 59%; }
.offc-story__article-card a { display: block; width: 100%; height: 100%; }
.offc-story__media figcaption,
.offc-story__triptych figcaption {
  position: absolute;
  left: 12px;
  bottom: 11px;
  z-index: 2;
  max-width: calc(100% - 24px);
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(23, 26, 33, 0.55);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  color: rgba(255, 253, 248, 0.96);
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}
.offc-gallery-head { margin-top: 82px; }
.gallery.offc-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  columns: initial;
  position: relative;
  isolation: isolate;
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(124, 103, 66, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 72%, transparent 0 66px, rgba(154, 126, 56, 0.13) 67px 68px, transparent 69px 104px, rgba(154, 126, 56, 0.07) 105px 106px, transparent 107px),
    linear-gradient(122deg, transparent 0 48%, rgba(154, 126, 56, 0.07) 48.1% 48.2%, transparent 48.3%),
    rgba(255, 253, 248, 0.42);
}
.offc-gallery .gitem { display: block; margin: 0; z-index: 1; border-radius: 9px; }
.offc-gallery .offc-gallery__wide { grid-column: span 6; aspect-ratio: 16 / 9; }
.offc-gallery .offc-gallery__portrait { grid-column: span 4; aspect-ratio: 3 / 4; }
.offc-gallery .offc-gallery__landscape { grid-column: span 8; aspect-ratio: 3 / 2; }
.offc-gallery .offc-gallery__tile { grid-column: span 3; aspect-ratio: 4 / 5; }
.offc-gallery .offc-gallery__panorama { grid-column: 3 / 11; aspect-ratio: 16 / 9; }
.offc-gallery__rooftop img { object-position: 64% center; }
.offc-gallery__opera img { object-position: center 44%; }
.offc-gallery__london img { object-position: center 46%; }
.offc-gallery__cambridge img { object-position: center 18%; }
.offc-gallery .gitem img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.offc-smallprint { margin-top: 36px; max-width: 70ch; }
.offc-smallprint a { color: inherit; text-underline-offset: 0.2em; }
@media (max-width: 900px) {
  .offc-story { grid-template-columns: 1fr; gap: 36px; padding: 48px 0 58px; }
  .offc-story--reverse .offc-story__copy { order: 1; }
  .offc-story--reverse .offc-story__triptych { order: 2; }
  .offc-story__media { transform: none; }
  .offc-story__triptych { width: 100%; max-width: 720px; }
}
@media (max-width: 720px) {
  .section.offc-section { padding-top: 48px; padding-bottom: 58px; }
  .offc-story h2 { margin-bottom: 18px; }
  .offc-story p { font-size: 0.96rem; }
  .offc-story__triptych { aspect-ratio: 1 / 1.08; }
  .offc-story__triptych figure:first-child { transform: rotate(-3.2deg); }
  .offc-story__triptych figure:nth-child(2) { transform: rotate(2.8deg); }
  .offc-story__triptych figure:nth-child(3) { transform: rotate(-2.3deg); }
  .gallery.offc-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-flow: dense; gap: 10px; padding: 14px; }
  .offc-gallery .offc-gallery__wide { grid-column: span 2; aspect-ratio: 16 / 10; }
  .offc-gallery .offc-gallery__portrait { grid-column: span 1; aspect-ratio: 3 / 4; }
  .offc-gallery .offc-gallery__landscape { grid-column: span 2; aspect-ratio: 3 / 2; }
  .offc-gallery .offc-gallery__tile { grid-column: span 1; aspect-ratio: 4 / 5; }
  .offc-gallery .offc-gallery__panorama { grid-column: span 2; aspect-ratio: 16 / 9; }
}
@media (max-width: 480px) {
  .offc-story__triptych figcaption { left: 7px; bottom: 7px; max-width: calc(100% - 14px); padding: 4px 7px; font-size: 0.49rem; letter-spacing: 0.09em; }
}
.gitem { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4 / 5; box-shadow: 0 18px 40px -26px rgba(23, 26, 33, 0.35); }
.gitem--wide { grid-column: span 2; aspect-ratio: 16 / 9; }
.gitem img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gitem:hover img { transform: scale(1.05); }
.gitem figcaption {
  position: absolute; left: 12px; bottom: 10px; z-index: 2;
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255, 253, 248, 0.95);
  background: rgba(23, 26, 33, 0.5);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 5px 11px; border-radius: 999px;
}
.gitem::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(23, 26, 33, 0.35)); pointer-events: none; }

/* ---------- marquee ---------- */
.marquee { border-top: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.07); padding: 18px 0; overflow: hidden; background: linear-gradient(90deg, rgba(255, 46, 136, 0.1), rgba(18, 20, 29, 0.97) 30%, rgba(18, 20, 29, 0.97) 70%, rgba(0, 229, 255, 0.09)), #12141d; }
.marquee-track { display: flex; gap: 3.2rem; width: max-content; animation: marquee 38s linear infinite; }
.marquee span { font-family: var(--display); font-size: 1.35rem; letter-spacing: 0.26em; text-transform: uppercase; color: transparent; -webkit-text-stroke: 1px rgba(236, 232, 223, 0.4); white-space: nowrap; }
.marquee span.solid { color: var(--brass); -webkit-text-stroke: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- stats ---------- */
.stats { border-bottom: 1px solid var(--line); background: linear-gradient(180deg, rgba(255, 253, 248, 0.7), transparent); }
.stats .shell { display: grid; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .stats .shell { grid-template-columns: repeat(2, 1fr); } }
.stat { padding: 34px 26px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
@media (max-width: 900px) { .stat:nth-child(3) { border-left: 0; } .stat { padding: 26px 20px; } }
.stat .n { font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1; color: var(--brass); display: block; }
.stat .n sup { font-size: 0.45em; color: var(--text-2); }
.stat .lab { display: block; margin-top: 10px; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); line-height: 1.7; }

/* ---------- cinematic full-bleed band ---------- */
.band {
  position: relative;
  height: clamp(340px, 56vh, 560px);
  overflow: hidden;
  margin: 96px 0;
  isolation: isolate;
}
.band img, .band canvas { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band img { opacity: 0; transition: opacity 1s ease; }
.band img.ok { opacity: 1; animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.09) translateY(-1.5%); } }
.band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23, 26, 33, 0.15), rgba(23, 26, 33, 0.55) 85%); }
.band .shell { position: absolute; inset: auto 0 0 0; z-index: 2; padding-bottom: 44px; }
.band .kicker { color: var(--brass-2); margin-bottom: 12px; }
.band h2 { font-family: var(--display); font-weight: 500; font-size: clamp(1.8rem, 4.4vw, 3.4rem); line-height: 1.08; color: #f7f4ed; max-width: 24ch; letter-spacing: -0.01em; }
.band a { color: inherit; text-decoration: none; }
.band a:hover h2 { text-decoration: underline; text-decoration-color: var(--brass-2); text-decoration-thickness: 2px; text-underline-offset: 8px; }

/* ---------- pageheads ---------- */
.pagehead, .article-head { position: relative; padding: 170px 0 80px; overflow: hidden; isolation: isolate; }
.pagehead .fx, .article-head .fx { position: absolute; inset: 0; z-index: -1; opacity: 0.75; }
.pagehead::before, .article-head::before {
  content: ""; position: absolute; inset: -18%; z-index: -2; filter: blur(46px);
  background:
    radial-gradient(44% 40% at 82% 10%, rgba(201, 172, 114, 0.24), transparent 70%),
    radial-gradient(36% 42% at 6% 80%, rgba(91, 108, 223, 0.13), transparent 70%);
}
.pagehead::after, .article-head::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--line-brass), transparent); }
.pagehead h1, .article-head h1 { font-family: var(--display); font-weight: 500; font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.04; letter-spacing: -0.015em; color: var(--ink); animation: rise 0.9s 0.2s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.pagehead .kicker, .article-head .kicker { margin-bottom: 18px; animation: rise 0.8s 0.1s both; }
.pagehead .sub { margin-top: 20px; max-width: 60ch; color: var(--text-2); font-size: 1.05rem; animation: rise 0.9s 0.35s both; }
.article-head h1 { max-width: 24ch; }
.article-head .standfirst { margin-top: 26px; font-size: 1.18rem; line-height: 1.6; color: var(--text-2); max-width: 56ch; animation: rise 0.9s 0.4s both; }
.article-head .metaline { margin-top: 30px; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; animation: rise 0.9s 0.5s both; }

/* ---------- sections ---------- */
.section { padding: 96px 0; position: relative; }
.section + .section { padding-top: 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 44px; position: relative; padding-top: 18px; }
.section-head::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 1px; background: linear-gradient(90deg, var(--line-brass), var(--line) 40%, transparent); }
.section-head .kicker { color: var(--ink); letter-spacing: 0.26em; }
.section-head a { font-family: var(--mono); font-size: 0.7rem; color: var(--brass); text-decoration: none; letter-spacing: 0.16em; text-transform: uppercase; }
.section-head a:hover { text-decoration: underline; }

/* ---------- cards ---------- */
.grid { display: grid; gap: 28px; }
.grid--featured { grid-template-columns: 1.6fr 1fr; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 940px) { .grid--featured, .grid--3 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
  padding: 0 0 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 18px 44px -28px rgba(23, 26, 33, 0.28);
  transition: border-color 0.3s, transform 0.35s, box-shadow 0.35s;
  will-change: transform;
}
.card:hover { border-color: var(--line-brass); box-shadow: 0 40px 80px -34px rgba(23, 26, 33, 0.4), 0 0 60px -30px rgba(201, 172, 114, 0.5); }
.card-art { aspect-ratio: 21 / 9; width: 100%; background: var(--paper-2); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.card-art canvas, .card-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card-art img { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
.card-art img.ok { opacity: 1; }
.card:hover .card-art img.ok { transform: scale(1.05); }
.card-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(201, 172, 114, 0.05), transparent 45%, rgba(23, 26, 33, 0.1)); pointer-events: none; }
.card--featured .card-art { aspect-ratio: 16 / 7; }
.card .toprow { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; padding: 20px 24px 0; }
.card h3 { font-family: var(--display); font-weight: 500; font-size: 1.4rem; line-height: 1.2; padding: 0 24px; color: var(--ink); transition: color 0.25s; }
.card:hover h3 { color: var(--brass); }
.card--featured h3 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.card p { color: var(--text-2); font-size: 0.95rem; line-height: 1.6; padding: 0 24px; }
.card .meta { margin-top: auto; padding: 12px 24px 0; }

/* ---------- premise ---------- */
.premise { background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 52px 46px; position: relative; overflow: hidden; box-shadow: var(--shadow-soft); }
.premise::before { content: ""; position: absolute; inset: -1px; border-radius: 22px; padding: 1px; background: linear-gradient(120deg, var(--line-brass), transparent 30%, transparent 70%, rgba(91, 108, 223, 0.35)); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
.premise ol { list-style: none; counter-reset: p; display: grid; gap: 26px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 940px) { .premise ol { grid-template-columns: 1fr; } }
.premise li { counter-increment: p; }
.premise li::before { content: "0" counter(p); font-family: var(--display); font-size: 2.6rem; line-height: 1; color: transparent; -webkit-text-stroke: 1px var(--brass); display: block; margin-bottom: 14px; }
.premise li strong { font-family: var(--display); font-weight: 600; display: block; font-size: 1.12rem; margin-bottom: 8px; color: var(--ink); }
.premise li span { color: var(--text-2); font-size: 0.93rem; line-height: 1.6; }
.premise .more { margin-top: 34px; }
.premise .more a { color: var(--brass); font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none; }
.premise .more a:hover { text-decoration: underline; }

/* entropy widget */
.entropy { margin: 6px 0 44px; }
.entropy canvas { width: 100%; height: 300px; display: block; border-radius: 12px; }
.entropy-ui { display: flex; flex-direction: column; align-items: center; margin-top: 14px; }

/* layers viz */
.layers-viz { margin: 6px 0 44px; }
.layers-viz svg { width: 100%; height: auto; display: block; }
.layers-viz .n-label { font-family: var(--mono); font-size: 13px; letter-spacing: 2px; fill: var(--text-2); }
.layers-viz .n-dot { fill: var(--card); stroke: var(--brass); stroke-width: 1.2; }
.layers-viz .flow { fill: none; stroke: url(#flowgrad); stroke-width: 1; opacity: 0.7; stroke-dasharray: 600; stroke-dashoffset: 600; }
.layers-viz.in .flow { animation: draw 2.2s cubic-bezier(0.3, 0, 0.2, 1) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.layers-viz .bar { fill: rgba(166, 135, 78, 0.12); stroke: var(--brass); stroke-width: 1; }
.layers-viz .bar-label { font-family: var(--mono); font-size: 14px; letter-spacing: 4px; fill: #8a6d3a; }
.layers-viz .pulse { fill: var(--brass); opacity: 0; }
.layers-viz.in .pulse { animation: pulse 3s 1.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 0.15; } 50% { opacity: 0.7; } }

/* ---------- strikethrough ---------- */
.strike { position: relative; white-space: nowrap; }
.strike::after { content: ""; position: absolute; left: -2%; top: 54%; width: 104%; height: 0.08em; min-height: 3px; background: var(--brass); transform: scaleX(0); transform-origin: left center; transition: transform 0.7s cubic-bezier(0.3, 0, 0.2, 1) 0.5s; }
.in .strike::after, .strike.in::after { transform: scaleX(1); }

/* ---------- incident (dark island) ---------- */
.incident-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
@media (max-width: 940px) { .incident-grid { grid-template-columns: 1fr; gap: 36px; } }
.incident-copy h2 { font-family: var(--display); font-weight: 500; font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.05; letter-spacing: -0.015em; color: var(--ink); }
.incident-copy h2 .alt { display: block; font-style: italic; background: linear-gradient(100deg, #8a6d3a 15%, var(--brass-2) 50%, #8a6d3a 85%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.incident-copy p { margin-top: 22px; color: var(--text-2); max-width: 46ch; }
.incident-copy .cta { display: inline-block; margin-top: 26px; font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); text-decoration: none; border-bottom: 1px solid var(--line-brass); padding-bottom: 4px; }
.incident-copy .cta:hover { border-bottom-color: var(--brass); }
.incident-copy .stage-note { margin-top: 18px; font-family: var(--sans); font-size: 0.82rem; color: var(--muted); }
.incident-copy .stage-note a { color: var(--text-2); }

.phone {
  position: relative;
  border: 1px solid rgba(236, 232, 223, 0.14);
  border-radius: 26px;
  background: linear-gradient(180deg, #141925, #0c0f16);
  padding: 26px 22px 60px;
  box-shadow: 0 50px 100px -40px rgba(23, 26, 33, 0.55), 0 0 70px -30px rgba(201, 172, 114, 0.35);
  min-height: 480px;
  color: #ece8df;
}
.phone .statusbar { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; color: #78808f; text-transform: uppercase; padding-bottom: 16px; border-bottom: 1px solid rgba(236, 232, 223, 0.1); margin-bottom: 20px; }
.chat { display: flex; flex-direction: column; gap: 12px; }
.msg { max-width: 82%; padding: 12px 16px; border-radius: 16px; font-family: var(--sans); font-size: 0.9rem; line-height: 1.5; opacity: 0; transform: translateY(14px) scale(0.98); transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1); }
.msg.show { opacity: 1; transform: none; }
.msg.me { align-self: flex-end; background: rgba(201, 172, 114, 0.18); border: 1px solid rgba(201, 172, 114, 0.32); border-bottom-right-radius: 4px; color: #f2eee3; }
.msg.bot { align-self: flex-start; background: rgba(236, 232, 223, 0.07); border: 1px solid rgba(236, 232, 223, 0.12); border-bottom-left-radius: 4px; color: #b9bfca; }
.msg .att { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; padding: 7px 12px; border-radius: 8px; background: rgba(10, 13, 20, 0.55); border: 1px solid rgba(236, 232, 223, 0.12); font-family: var(--mono); font-size: 0.7rem; color: var(--brass-2); }
.sys { align-self: center; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: #e0705a; text-align: center; opacity: 0; transform: translateY(10px); transition: opacity 0.5s ease, transform 0.5s ease; padding: 2px 8px; }
.sys.show { opacity: 1; transform: none; }
.typing { align-self: flex-start; display: none; gap: 5px; padding: 14px 18px; border-radius: 16px; border-bottom-left-radius: 4px; background: rgba(236, 232, 223, 0.07); border: 1px solid rgba(236, 232, 223, 0.12); }
.typing.show { display: inline-flex; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: #b9bfca; animation: tdot 1.1s infinite; }
.typing i:nth-child(2) { animation-delay: 0.18s; }
.typing i:nth-child(3) { animation-delay: 0.36s; }
@keyframes tdot { 0%, 60%, 100% { opacity: 0.25; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.replay { position: absolute; bottom: 18px; right: 20px; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: #78808f; background: transparent; border: 1px solid rgba(236, 232, 223, 0.14); border-radius: 999px; padding: 8px 16px; cursor: pointer; transition: color 0.2s, border-color 0.2s; }
.replay:hover { color: var(--brass-2); border-color: rgba(201, 172, 114, 0.4); }

/* ---------- fields (topic mosaic) ---------- */
.fields {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 16px;
}
@media (max-width: 1020px) { .fields { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .fields { grid-template-columns: 1fr; grid-auto-rows: 170px; } }
.field {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  background: var(--ink-2);
  border: 1px solid var(--line);
  isolation: isolate;
  box-shadow: 0 18px 44px -28px rgba(23, 26, 33, 0.35);
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.35s, border-color 0.3s;
}
.field:hover { transform: translateY(-5px); border-color: var(--line-brass); box-shadow: 0 34px 70px -30px rgba(23, 26, 33, 0.5), 0 0 60px -28px rgba(201, 172, 114, 0.55); }
.field--tall { grid-row: span 2; }
.field--wide { grid-column: span 2; }
@media (max-width: 560px) { .field--wide { grid-column: span 1; } }
.field img, .field canvas { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.field img { opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease; }
.field img.ok { opacity: 1; }
.field:hover img.ok { transform: scale(1.06); }
.field::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10, 13, 20, 0.12), rgba(10, 13, 20, 0.32) 55%, rgba(10, 13, 20, 0.82));
}
.field .inner {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 18px 20px;
}
.field .kicker { color: var(--brass-2); font-size: 0.62rem; letter-spacing: 0.2em; margin-bottom: 6px; }
.field h3 { font-family: var(--display); font-weight: 600; font-size: 1.18rem; line-height: 1.15; color: #f7f4ed; }
.field--tall h3, .field--wide h3 { font-size: 1.45rem; }
.field p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(247, 244, 237, 0.85);
  margin-top: 6px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}
.field:hover p { max-height: 3.5em; opacity: 1; }
@media (hover: none) { .field p { max-height: none; opacity: 1; } }
.field .go { position: absolute; top: 14px; right: 16px; z-index: 2; color: var(--brass-2); font-family: var(--sans); opacity: 0; transform: translateX(-6px); transition: opacity 0.3s, transform 0.3s; }
.field:hover .go { opacity: 1; transform: none; }

/* ---------- notes ---------- */
.notes-list { display: grid; }
.note { position: relative; padding: 30px 8px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 160px 1fr; gap: 26px; transition: background 0.25s, padding-left 0.25s; }
.note:hover { background: rgba(255, 253, 248, 0.8); padding-left: 18px; }
.note:first-child { border-top: 1px solid var(--line); }
@media (max-width: 720px) { .note { grid-template-columns: 1fr; gap: 10px; } }
.note .when { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.note h3 { font-family: var(--display); font-weight: 600; font-size: 1.18rem; margin-bottom: 6px; color: var(--ink); }
.note h3 a { text-decoration: none; }
.note h3 a:hover { color: var(--brass); }
.note p { color: var(--text-2); font-size: 0.96rem; max-width: 64ch; }
.note p + p { margin-top: 10px; }
.note p strong { color: var(--ink); }
.mini-art { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); width: 130px; height: 74px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); background: var(--paper-2); box-shadow: 0 12px 28px -16px rgba(23, 26, 33, 0.3); transition: box-shadow 0.25s, border-color 0.25s; }
.note:hover .mini-art { border-color: var(--line-brass); }
.mini-art canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
@media (min-width: 961px) { .note.has-art { padding-right: 170px; } }
@media (max-width: 960px) { .mini-art { display: none; } }

/* ---------- rows ---------- */
.rows { display: grid; }
.row { display: grid; grid-template-columns: 130px 1fr auto; gap: 20px; align-items: baseline; padding: 24px 8px; border-bottom: 1px solid var(--line); transition: background 0.25s, padding-left 0.25s; }
.row:hover { background: rgba(255, 253, 248, 0.8); padding-left: 18px; }
.row:first-child { border-top: 1px solid var(--line); }
@media (max-width: 720px) { .row { grid-template-columns: 1fr; gap: 4px; } }
.row .what { font-family: var(--display); font-weight: 600; font-size: 1.08rem; color: var(--ink); }
.row .where { color: var(--muted); font-size: 0.9rem; font-family: var(--sans); }

/* ---------- prose ---------- */
.article-head .shell, .prose-shell { max-width: 860px; }
.prose { max-width: var(--measure); margin: 0 auto; padding: 72px 28px 8px; font-size: 1.11rem; line-height: 1.85; color: #2a2e38; }
.prose > * + * { margin-top: 1.3em; }
.prose > p:first-of-type::first-letter { font-family: var(--display); float: left; font-size: 3.6em; line-height: 0.8; padding: 0.08em 0.14em 0 0; color: var(--brass); }
.prose h2 { font-family: var(--display); font-weight: 600; font-size: 1.65rem; line-height: 1.25; margin-top: 2.1em; color: var(--ink); }
.prose h3 { font-family: var(--display); font-weight: 600; font-size: 1.2rem; margin-top: 1.8em; color: var(--ink); }
.prose a { color: #8a6d3a; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; text-decoration-color: var(--line-brass); transition: text-decoration-color 0.2s; }
.prose a:hover { text-decoration-color: var(--brass); }
.prose strong { font-weight: 600; color: var(--ink); }
.prose blockquote { border-left: 2px solid var(--brass); padding: 6px 0 6px 24px; font-style: italic; color: var(--text-2); font-size: 1.05em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: 0.55em; }
.prose li::marker { color: var(--brass); }
.prose hr { border: 0; height: 1px; margin: 2.6em auto; width: 160px; background: linear-gradient(90deg, transparent, var(--line-brass), transparent); }
.footnote { font-size: 0.85rem; color: var(--muted); font-family: var(--sans); line-height: 1.6; }

/* author card */
.author-card { max-width: var(--measure); margin: 64px auto 0; padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: var(--card); box-shadow: var(--shadow-soft); display: grid; grid-template-columns: 68px 1fr; gap: 20px; align-items: center; }
@media (max-width: 560px) { .author-card { grid-template-columns: 1fr; } }
.avatar { width: 68px; height: 68px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, #232836, var(--ink-2)); border: 1px solid var(--line-brass); color: var(--brass-2); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 1.2rem; letter-spacing: 0.08em; }
img.avatar { object-fit: cover; flex-shrink: 0; }

/* pager thumbnails */
.pager a { display: inline-flex; align-items: center; gap: 14px; }
.pager a img { width: 68px; height: 46px; object-fit: cover; border-radius: 9px; border: 1px solid var(--line); flex: none; }
.pager a:last-child { flex-direction: row-reverse; text-align: right; }

/* next-on-stage band — loud on purpose */
.upnext { position: relative; overflow: hidden; background: linear-gradient(105deg, rgba(255, 46, 136, 0.16), rgba(124, 77, 255, 0.14) 45%, rgba(0, 229, 255, 0.12)), #12141d; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.upnext::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 85% 0%, rgba(0, 229, 255, 0.12), transparent 60%), radial-gradient(50% 120% at 10% 100%, rgba(255, 46, 136, 0.14), transparent 60%); pointer-events: none; }
.upnext .shell { position: relative; z-index: 1; display: flex; gap: 36px; align-items: center; flex-wrap: wrap; padding-top: 30px; padding-bottom: 30px; }
.upnext .lbl { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--hype3); border: 1px solid rgba(0, 229, 255, 0.35); border-radius: 999px; padding: 9px 16px; white-space: nowrap; background: rgba(0, 229, 255, 0.07); }
.upnext .ev { display: flex; flex-direction: column; gap: 3px; padding-left: 18px; border-left: 2px solid rgba(255, 46, 136, 0.45); }
.upnext .d { font-family: var(--display); color: #ffffff; font-size: 1.3rem; letter-spacing: 0.01em; white-space: nowrap; }
.upnext .t { color: #b9bdcc; font-size: 0.88rem; max-width: 34ch; }
.upnext a.all { margin-left: auto; color: #12141d; background: linear-gradient(90deg, var(--hype1), var(--hype2)); border-radius: 999px; padding: 12px 22px; font-size: 0.88rem; font-weight: 600; white-space: nowrap; }
.upnext a.all:hover { filter: brightness(1.12); }
@media (max-width: 980px) { .upnext a.all { margin-left: 0; } .upnext .shell { gap: 22px; } }

/* vivid pageheads on subpages */
.pagehead.dark { background: radial-gradient(75% 130% at 12% 0%, rgba(255, 46, 136, 0.12), transparent 55%), radial-gradient(65% 120% at 88% 15%, rgba(0, 229, 255, 0.1), transparent 60%), radial-gradient(60% 100% at 50% 110%, rgba(124, 77, 255, 0.12), transparent 65%), #f7f4ed; }

/* readable cred cells */
.cred p { line-height: 1.75; }

.stat .n .plus { font-size: 0.62em; color: var(--hype1); vertical-align: 0.12em; }

/* masthead subtitle */
.wordsub { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-2); margin-left: 14px; white-space: nowrap; }
.masthead--dark .wordsub { color: rgba(236, 232, 223, 0.62); }
@media (max-width: 860px) { .wordsub { display: none; } }

/* themed mini images in notes */
.mini-art img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }

/* stages: uniform photo grid */
.stage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-bottom: 64px; }
.stage-grid figure { margin: 0; }
.stage-grid img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 14px; border: 1px solid var(--line); box-shadow: 0 18px 40px -26px rgba(23, 26, 33, 0.35); transition: transform 0.3s; }
.stage-grid figure:hover img { transform: translateY(-4px); }
.stage-grid figcaption { margin-top: 8px; font-family: var(--mono); font-size: 0.7rem; color: var(--text-2); line-height: 1.5; }

/* publications cover thumb */
.pubcover { width: 132px; flex: none; }
.pubcover img { width: 100%; border-radius: 10px; border: 1px solid var(--line); box-shadow: 0 14px 30px -18px rgba(23, 26, 33, 0.4); }

/* poster wall */
.poster-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; }
.poster-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: top; border-radius: 12px; border: 1px solid var(--line); box-shadow: 0 16px 36px -24px rgba(23, 26, 33, 0.4); transition: transform 0.3s; }
.poster-grid img:hover { transform: scale(1.04) rotate(-0.5deg); }

/* certificate wall */
.certs { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-top: 26px; align-items: start; }
.certs a { display: block; }
.certs img { width: 100%; height: auto; border: 1px solid var(--line); border-radius: 10px; box-shadow: var(--shadow-soft); background: #fff; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.certs a:hover img { transform: translateY(-4px); box-shadow: 0 18px 40px -18px rgba(23, 26, 33, 0.35); }
.certs span { display: block; margin-top: 9px; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.04em; color: var(--brass); line-height: 1.45; }

/* recognition chips */
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.badge-chip { border: 1px solid var(--line-brass); border-radius: 999px; padding: 9px 18px; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.05em; color: var(--brass-2); background: linear-gradient(120deg, rgba(201, 172, 114, 0.1), rgba(201, 172, 114, 0.03)); white-space: nowrap; }
.badge-chip strong { color: var(--text); font-weight: 600; }
@media (max-width: 720px) { .badge-chip { white-space: normal; } }
.author-card .name { font-family: var(--display); font-weight: 600; font-size: 1.1rem; color: var(--ink); }
.author-card .role { font-family: var(--sans); font-size: 0.85rem; color: var(--text-2); margin-top: 2px; }
.author-card .links { margin-top: 10px; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.author-card .links a { color: var(--brass); text-decoration: none; margin-right: 20px; }
.author-card .links a:hover { text-decoration: underline; }

.disclaimer { max-width: var(--measure); margin: 22px auto 0; font-family: var(--sans); font-size: 0.78rem; color: var(--muted); line-height: 1.6; }
.pager { max-width: var(--measure); margin: 52px auto 0; display: flex; justify-content: space-between; gap: 16px; font-family: var(--sans); font-size: 0.85rem; }
.pager a { color: var(--brass); text-decoration: none; max-width: 46%; }
.pager a:hover { opacity: 0.75; }

/* ---------- chips ---------- */
.filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.chip { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; border: 1px solid var(--line); background: var(--card); color: var(--text-2); border-radius: 999px; padding: 9px 18px; cursor: pointer; transition: all 0.25s; }
.chip:hover { border-color: var(--line-brass); color: var(--brass); }
.chip.active { background: var(--ink); border-color: var(--ink); color: var(--paper); }

/* ---------- about / contact ---------- */
.bio-grid { display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .bio-grid { grid-template-columns: 1fr; } }
.portrait { aspect-ratio: 4 / 5; border-radius: 18px; background: radial-gradient(80% 60% at 70% 20%, rgba(201, 172, 114, 0.25), transparent 60%), radial-gradient(70% 60% at 20% 90%, rgba(91, 108, 223, 0.16), transparent 60%), var(--ink-2); border: 1px solid var(--line-brass); display: flex; align-items: center; justify-content: center; color: var(--brass-2); font-family: var(--display); font-size: 2.4rem; letter-spacing: 0.12em; position: sticky; top: 96px; box-shadow: var(--shadow-soft); overflow: hidden; }
.portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cred-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; margin-top: 44px; }
@media (max-width: 720px) { .cred-grid { grid-template-columns: 1fr; } }
.cred { background: var(--card); padding: 24px 26px; transition: background 0.25s; }
.cred:hover { background: #fff; }
.cred .kicker { color: var(--muted); margin-bottom: 10px; letter-spacing: 0.18em; }
.cred p { font-size: 0.95rem; line-height: 1.6; color: var(--text-2); }
.cred p strong { font-family: var(--display); font-weight: 600; color: var(--ink); }

.about-main { padding-top: 64px; }
.about-portrait { position: sticky; top: 96px; margin: 0; }
.about-portrait .portrait { position: relative; top: auto; }
.about-portrait figcaption { margin-top: 12px; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); text-align: center; }
.about-copy, .about-dossier, .about-dossier__column, .about-dossier .cred { min-width: 0; }
.about-copy > p { margin-top: 1.2em; max-width: 76ch; }
.about-copy > p:first-child { margin-top: 0; }
.about-copy a { color: var(--brass); }
.about-lead { font-family: var(--display); font-size: clamp(1.28rem, 2vw, 1.62rem); line-height: 1.5; letter-spacing: -0.008em; color: var(--ink); }
.about-quote { margin: 34px 0 0; border-left: 2px solid var(--brass); padding: 8px 0 8px 26px; font-family: var(--display); font-style: italic; font-size: 1.12rem; line-height: 1.65; color: var(--text-2); }
.about-quote .meta { display: inline-block; margin-top: 8px; font-style: normal; letter-spacing: 0.02em; }
.about-note { padding: 20px 22px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255, 253, 248, 0.56); color: var(--text-2); }
.about-proof-head, .about-cert-head { margin-top: 72px; padding-top: 26px; border-top: 1px solid var(--line-brass); }
.about-proof-head h2, .about-cert-head h2, .about-next h2 { margin-top: 10px; font-family: var(--display); font-weight: 500; font-size: clamp(1.8rem, 3.2vw, 2.65rem); line-height: 1.12; color: var(--ink); }
.about-proof-head p, .about-cert-head p { margin-top: 10px; color: var(--text-2); }
.about-dossier { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 30px; align-items: start; }
.about-dossier__column { display: flex; flex-direction: column; gap: 18px; }
.about-dossier .cred { padding: 28px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 253, 248, 0.82); box-shadow: 0 18px 46px -38px rgba(23, 26, 33, 0.55); }
.about-dossier .cred:hover { background: #fff; border-color: var(--line-brass); }
.about-dossier .cred .kicker { margin-bottom: 12px; color: var(--brass); }
.about-dossier .cred h3 { font-family: var(--display); font-size: 1.28rem; font-weight: 600; line-height: 1.28; color: var(--ink); }
.about-dossier .cred h3, .about-dossier .cred p { overflow-wrap: anywhere; }
.about-dossier .cred p { margin-top: 12px; line-height: 1.72; }
.about-dossier .cred p + p { margin-top: 10px; }
.about-dossier .cred--lead { background: radial-gradient(100% 85% at 100% 0%, rgba(124, 77, 255, 0.17), transparent 58%), linear-gradient(145deg, #151821, #22242d); border-color: rgba(201, 172, 114, 0.44); box-shadow: 0 26px 62px -36px rgba(10, 13, 20, 0.9); }
.about-dossier .cred--lead:hover { background: radial-gradient(100% 85% at 100% 0%, rgba(124, 77, 255, 0.2), transparent 58%), linear-gradient(145deg, #171a23, #262832); }
.about-dossier .cred--lead h3, .about-dossier .cred--lead p strong { color: #f4f0e7; }
.about-dossier .cred--lead p { color: #c3c6cf; }
.about-dossier .cred--quiet { background: linear-gradient(150deg, rgba(201, 172, 114, 0.1), rgba(255, 253, 248, 0.9)); }
.cred-link { display: inline-flex; margin-top: 18px; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.13em; text-transform: uppercase; text-decoration: none; }
.cred-link:hover { text-decoration: underline; text-underline-offset: 5px; }
.certs--about { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; margin-top: 30px; }
.certs--about a { grid-column: span 2; min-width: 0; }
.certs--about a:nth-child(n+4) { grid-column: span 3; }
.certs--about img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; padding: 10px; }
.certs--about span { color: var(--text-2); }
.about-next { margin-top: 72px; padding: 42px 44px; border: 1px solid rgba(201, 172, 114, 0.42); border-radius: 20px; background: radial-gradient(75% 100% at 95% 0%, rgba(255, 46, 136, 0.12), transparent 58%), radial-gradient(75% 100% at 0% 100%, rgba(0, 229, 255, 0.08), transparent 62%), #151821; box-shadow: 0 30px 70px -42px rgba(10, 13, 20, 0.95); }
.about-next h2 { max-width: 19ch; color: #f4f0e7; }
.about-next p { margin-top: 14px; max-width: 60ch; color: #bfc3cd; }
.about-next__links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.about-next__links a { display: inline-flex; align-items: center; min-height: 42px; padding: 10px 18px; border: 1px solid rgba(201, 172, 114, 0.46); border-radius: 999px; font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; color: var(--brass-2); }
.about-next__links a:first-child { background: var(--brass-2); color: #14171e; }
.about-next__links a:hover { transform: translateY(-2px); }

@media (max-width: 900px) {
  .about-portrait { position: relative; top: auto; width: min(360px, 100%); margin-bottom: 12px; }
  .about-main { padding-top: 48px; }
}
@media (max-width: 720px) {
  .about-dossier { grid-template-columns: 1fr; }
  .about-dossier .cred { padding: 24px; }
  .about-proof-head, .about-cert-head { margin-top: 58px; }
  .certs--about { display: flex; gap: 14px; max-width: 100%; overflow-x: auto; padding: 2px 4px 18px 0; scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .certs--about a, .certs--about a:nth-child(n+4) { flex: 0 0 78%; scroll-snap-align: start; }
  .about-next { margin-top: 58px; padding: 30px 26px; }
}

.routes { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 8px; }
@media (max-width: 860px) { .routes { grid-template-columns: 1fr; } }
.route { border: 1px solid var(--line); border-radius: 20px; background: var(--card); padding: 40px 36px; display: flex; flex-direction: column; gap: 14px; box-shadow: 0 18px 44px -30px rgba(23, 26, 33, 0.3); transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; }
.route:hover { border-color: var(--line-brass); transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.route--primary { border-color: var(--line-brass); background: linear-gradient(170deg, #fdf8ec, var(--card) 60%); }
.route h2 { font-family: var(--display); font-weight: 600; font-size: 1.4rem; color: var(--ink); }
.route p { color: var(--text-2); font-size: 0.97rem; }
.route .links { margin-top: 10px; display: flex; flex-direction: column; gap: 10px; font-family: var(--sans); font-size: 0.94rem; }
.route .links a { color: var(--brass); text-decoration: none; }
.route .links a:hover { text-decoration: underline; }

.contact-main { padding-top: 60px; }
.routes--contact { grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr); gap: 22px; align-items: stretch; }
.contact-route { position: relative; min-width: 0; padding: 48px 44px; gap: 0; overflow: hidden; box-shadow: 0 28px 68px -46px rgba(23, 26, 33, 0.78); }
.contact-route:hover { transform: translateY(-3px); }
.contact-route__number { position: absolute; top: 12px; right: 20px; font-family: var(--display); font-size: 6.8rem; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(166, 135, 78, 0.15); pointer-events: none; }
.contact-route .kicker { position: relative; margin-bottom: 20px; }
.contact-route h2 { position: relative; max-width: 18ch; font-size: clamp(1.65rem, 2.7vw, 2.35rem); line-height: 1.12; }
.contact-route p { position: relative; margin-top: 18px; font-size: 0.98rem; line-height: 1.72; }
.contact-route .contact-route__lead { margin-top: 20px; font-family: var(--display); font-size: 1.12rem; line-height: 1.55; color: var(--ink); }
.contact-route__scope { position: relative; display: grid; gap: 0; margin-top: 26px; border-top: 1px solid var(--line); list-style: none; }
.contact-route__scope li { padding: 11px 0; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 0.68rem; line-height: 1.45; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-2); }
.contact-route .contact-route__note { padding: 16px 18px; border-left: 2px solid var(--brass); background: rgba(201, 172, 114, 0.08); font-size: 0.86rem; }
.contact-route__actions { position: relative; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.contact-action { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 17px; border: 1px solid var(--line-brass); border-radius: 999px; font-family: var(--mono); font-size: 0.67rem; line-height: 1.35; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; text-decoration: none; color: var(--brass); transition: transform 0.25s, background 0.25s, color 0.25s; }
.contact-action:hover { transform: translateY(-2px); }
.contact-action--primary { background: var(--ink); border-color: var(--ink); color: #f4f0e7; }
.routes--contact .contact-route--professional { background: radial-gradient(100% 80% at 100% 0%, rgba(124, 77, 255, 0.18), transparent 60%), radial-gradient(80% 70% at 0% 100%, rgba(0, 229, 255, 0.06), transparent 66%), #151821; border-color: rgba(201, 172, 114, 0.44); }
.routes--contact .contact-route--professional:hover { background: radial-gradient(100% 80% at 100% 0%, rgba(124, 77, 255, 0.22), transparent 60%), radial-gradient(80% 70% at 0% 100%, rgba(0, 229, 255, 0.08), transparent 66%), #171a23; }
.contact-route--professional h2, .contact-route--professional .contact-route__lead, .contact-route--professional strong { color: #f4f0e7; }
.contact-route--professional p { color: #c1c5cf; }
.contact-route--professional .contact-route__scope { border-color: rgba(236, 232, 223, 0.14); }
.contact-route--professional .contact-route__scope li { border-color: rgba(236, 232, 223, 0.14); color: #b7bcc7; }
.contact-route--professional .contact-route__note { background: rgba(201, 172, 114, 0.08); color: #c9c4b8; }
.contact-route--professional .contact-action { color: var(--brass-2); }
.contact-route--professional .contact-action--primary { background: var(--brass-2); border-color: var(--brass-2); color: #14171e; }
.routes--contact .contact-route--editorial { background: radial-gradient(85% 65% at 100% 0%, rgba(255, 46, 136, 0.07), transparent 62%), linear-gradient(155deg, rgba(255, 253, 248, 0.96), rgba(201, 172, 114, 0.08)); }
.contact-coordinates { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 24px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 253, 248, 0.7); overflow: hidden; }
.contact-coordinates > div { min-width: 0; padding: 24px 26px; }
.contact-coordinates > div + div { border-left: 1px solid var(--line); }
.contact-coordinates .kicker { margin-bottom: 9px; color: var(--muted); }
.contact-coordinates strong { font-family: var(--display); font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.contact-smallprint { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 26px; margin-top: 34px; padding: 22px 0 0; border-top: 1px solid var(--line); }
.contact-smallprint p { max-width: 78ch; color: var(--muted); font-size: 0.82rem; line-height: 1.72; }
.contact-smallprint a { color: var(--brass); }

@media (max-width: 860px) {
  .routes--contact { grid-template-columns: 1fr; }
  .contact-coordinates { grid-template-columns: 1fr; }
  .contact-coordinates > div + div { border-left: 0; border-top: 1px solid var(--line); }
}
@media (max-width: 600px) {
  .contact-main { padding-top: 42px; }
  .contact-route { padding: 34px 28px; }
  .contact-route__number { right: 8px; font-size: 5.6rem; }
  .contact-route__actions { flex-direction: column; align-items: stretch; }
  .contact-action { width: 100%; }
  .contact-smallprint { grid-template-columns: 1fr; gap: 12px; }
}

/* ---------- legal ---------- */
.legal { max-width: 780px; }
.legal h2 { font-family: var(--display); font-weight: 600; font-size: 1.3rem; margin-top: 2em; color: var(--ink); }
.legal p, .legal li { font-size: 0.97rem; color: var(--text-2); }
.legal a { color: var(--brass); }
.legal .fill { background: rgba(166, 135, 78, 0.16); color: #8a6d3a; padding: 0 5px; border-radius: 3px; font-family: var(--mono); font-size: 0.85em; }

/* ---------- footer (dark anchor) ---------- */
.footer { position: relative; margin-top: 110px; padding: 72px 0 52px; font-family: var(--sans); font-size: 0.85rem; color: #a6adba; background: var(--ink-2); }
.footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--line-brass), rgba(91, 108, 223, 0.4), transparent); }
.footer .cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; }
@media (max-width: 860px) { .footer .cols { grid-template-columns: 1fr; } }
.footer .fm { font-family: var(--display); font-size: 1.3rem; letter-spacing: 0.16em; color: #ece8df; }
.footer p { line-height: 1.7; margin-top: 12px; max-width: 44ch; }
.footer .kicker { color: var(--brass-2); margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer a { color: #a6adba; text-decoration: none; transition: color 0.2s; }
.footer a:hover { color: var(--brass-2); }
.footer .baseline { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(236, 232, 223, 0.12); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.78rem; color: #78808f; }
.footer .baseline .no-track { color: var(--brass-2); font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); filter: blur(6px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.8s ease; }
.reveal.in { opacity: 1; transform: none; filter: none; }

/* ---------- 404 ---------- */
.notfound { min-height: 82vh; display: flex; align-items: center; }
.notfound h1 { font-family: var(--display); font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 500; line-height: 1.05; color: var(--ink); }
.notfound p { margin-top: 20px; color: var(--text-2); max-width: 46ch; }
.notfound a { color: var(--brass); }

/* ============================================================
   HYPE LAYER — electric energy over the premium base.
   Magenta / violet / cyan for motion, interaction and hype;
   brass stays for editorial luxury; prose stays calm.
   ============================================================ */
:root {
  --hype1: #ff2e88;
  --hype2: #7c4dff;
  --hype3: #00e5ff;
}
::selection { background: var(--hype1); color: #fff; }
.progress { background: linear-gradient(90deg, var(--hype1), var(--hype2), var(--hype3)); }

.hero .aurora {
  background:
    radial-gradient(46% 40% at 82% 14%, rgba(255, 46, 136, 0.26), transparent 70%),
    radial-gradient(40% 46% at 6% 80%, rgba(124, 77, 255, 0.24), transparent 70%),
    radial-gradient(30% 32% at 52% 48%, rgba(0, 229, 255, 0.12), transparent 70%);
  animation: aurora 11s ease-in-out infinite alternate;
}
.pagehead::before, .article-head::before {
  background:
    radial-gradient(44% 40% at 82% 10%, rgba(255, 46, 136, 0.16), transparent 70%),
    radial-gradient(36% 42% at 6% 80%, rgba(124, 77, 255, 0.15), transparent 70%);
}
.hero--film .stack .l3 {
  background: linear-gradient(100deg, var(--hype1) 10%, var(--hype2) 45%, var(--hype3) 80%, var(--hype1) 110%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: gradShift 5s linear infinite;
}
@keyframes gradShift { to { background-position: 220% 0; } }
.hero-now::before { background: linear-gradient(100deg, transparent 30%, rgba(255, 46, 136, 0.22) 50%, transparent 70%); }
.hero-now:hover { border-color: rgba(124, 77, 255, 0.6); }
.hero-now:hover span.arrow { color: var(--hype1); }

.marquee span.solid { color: var(--hype1); }
.marquee-track { animation-duration: 26s; }

.stat .n {
  background: linear-gradient(120deg, var(--hype1), var(--hype2));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.stat .n sup { -webkit-text-fill-color: var(--muted); }

.section-head::before { background: linear-gradient(90deg, var(--hype1), rgba(124, 77, 255, 0.4) 35%, var(--line) 70%, transparent); }
.section-head a { color: var(--hype2); }
.tag--accent { color: var(--hype1); border-color: rgba(255, 46, 136, 0.5); }
.chip:hover { border-color: rgba(124, 77, 255, 0.6); color: var(--hype2); }
.chip.active { background: var(--hype2); border-color: var(--hype2); color: #fff; }

.card:hover {
  border-color: rgba(124, 77, 255, 0.55);
  box-shadow: 0 40px 80px -34px rgba(23, 26, 33, 0.4), 0 0 70px -26px rgba(255, 46, 136, 0.45);
}
.card:hover h3 { color: var(--hype2); }
.card::after { background: linear-gradient(90deg, var(--hype1), var(--hype2) 60%, transparent); }

.premise::before { background: linear-gradient(120deg, rgba(255, 46, 136, 0.5), transparent 30%, transparent 70%, rgba(0, 229, 255, 0.45)); }
.premise .more a { color: var(--hype2); }
.premise li::before { -webkit-text-stroke: 1px var(--hype1); }

.strike::after { background: var(--hype1); }
.incident-copy h2 .alt {
  background: linear-gradient(100deg, var(--hype1) 15%, var(--hype2) 60%, var(--hype3) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: gradShift 6s linear infinite;
}
.incident-copy .cta { color: var(--hype2); border-bottom-color: rgba(124, 77, 255, 0.5); }
.sys { color: var(--hype1); }

.field:hover { border-color: rgba(255, 46, 136, 0.55); box-shadow: 0 34px 70px -30px rgba(23, 26, 33, 0.5), 0 0 70px -26px rgba(255, 46, 136, 0.5); }
.field .kicker { color: var(--hype1); }
.field .go { color: var(--hype3); }

.band .kicker { color: var(--hype1); }
.band a:hover h2 { text-decoration-color: var(--hype1); }

.route:hover { border-color: rgba(124, 77, 255, 0.55); }
.route--primary { border-color: rgba(255, 46, 136, 0.45); background: linear-gradient(170deg, rgba(255, 46, 136, 0.07), var(--card) 60%); }
.route .links a { color: var(--hype2); }

.filmstrip img:hover { transform: scale(1.05) rotate(-0.5deg); box-shadow: 0 20px 44px -20px rgba(124, 77, 255, 0.5); }
.gitem:hover { box-shadow: 0 26px 60px -28px rgba(255, 46, 136, 0.45); }

.wordmark::after { background: linear-gradient(90deg, var(--brass), var(--hype1)); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--hype1); border-bottom-color: var(--hype1); }

.footer::before { background: linear-gradient(90deg, transparent, var(--hype1), var(--hype2), rgba(0, 229, 255, 0.6), transparent); }
.footer a:hover { color: var(--hype1); }
.footer .baseline .no-track {
  background: linear-gradient(90deg, var(--brass-2), var(--hype1));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.avatar { border-color: rgba(255, 46, 136, 0.5); box-shadow: 0 0 40px -12px rgba(255, 46, 136, 0.5); }
.author-card .links a { color: var(--hype2); }
.replay:hover { color: var(--hype1); border-color: rgba(255, 46, 136, 0.4); }
.scrollcue { background: linear-gradient(180deg, var(--hype1), transparent); }
.cursor-ring.is-link { border-color: var(--hype1); }

/* ============================================================
   LEGAL-NATIVE LAYER — the site formatted like a regulation.
   OJ header, article numbering, redactions, stamps, §-motif.
   ============================================================ */
.oj {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-2);
  border: 1px solid rgba(201, 172, 114, 0.35);
  border-radius: 3px;
  padding: 7px 14px;
  margin-bottom: 26px;
  animation: rise 0.8s 0.05s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.ghost--para { font-size: clamp(22rem, 46vw, 42rem) !important; right: -4% !important; top: 42% !important; }

/* redaction bars that fall away */
.redact { position: relative; white-space: nowrap; }
.redact::after {
  content: "";
  position: absolute;
  inset: -2px -4px;
  transform-origin: right center;
  animation: redactOff 0.8s 2s cubic-bezier(0.3, 0, 0.2, 1) forwards;
}
.hero .redact::after, .dark .redact::after { background: #ece8df; }
.hero--film .redact::after { content: none; }
.incident-copy .redact::after { background: var(--ink); animation-delay: 1.2s; }
.redact:hover::after { transform: scaleX(0); }
@keyframes redactOff { to { transform: scaleX(0); } }

/* rubber stamps */
.stamp {
  position: absolute;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-align: center;
  line-height: 1.35;
  color: var(--hype1);
  border: 2.5px solid currentColor;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.82rem;
  opacity: 0;
  transform: rotate(-14deg) scale(0);
  pointer-events: none;
  z-index: 6;
}
.stamp.on { animation: stampIn 0.45s cubic-bezier(0.2, 1.5, 0.3, 1) forwards; }
@keyframes stampIn {
  from { transform: rotate(-28deg) scale(2.4); opacity: 0; }
  55% { opacity: 1; }
  to { transform: rotate(-13deg) scale(1); opacity: 0.92; }
}
#incident-stamp { top: 36%; right: 7%; }
.stamp--card {
  top: 16px; right: 16px;
  font-size: 0.6rem;
  padding: 5px 10px;
  border-width: 1.5px;
  border-radius: 5px;
  transform: rotate(8deg) scale(1);
  opacity: 0.92;
  animation: none;
}
/* article-numbered kickers get a hanging number look */
.section-head .kicker em { font-style: normal; color: var(--hype1); margin-right: 10px; }

/* ============================================================
   COLOR-MAX LAYER — more colour, more image energy.
   ============================================================ */
.filmstrip-track--rev { animation-direction: reverse; animation-duration: 74s; margin-top: 14px; }

/* every surface gets a quiet colour wash */
.section::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(42% 34% at 88% 6%, rgba(255, 46, 136, 0.055), transparent 60%),
    radial-gradient(38% 32% at 4% 94%, rgba(124, 77, 255, 0.055), transparent 60%);
}
.stats { background: linear-gradient(180deg, rgba(255, 46, 136, 0.05), rgba(124, 77, 255, 0.04) 60%, transparent); }
.marquee span { color: rgba(236, 232, 223, 0.28); -webkit-text-stroke: 1px rgba(236, 232, 223, 0.5); }
.marquee span.solid { color: var(--brass-2); -webkit-text-stroke: 0; }

/* gradient kickers on section heads */
.section-head .kicker {
  background: linear-gradient(90deg, var(--hype1), var(--hype2) 70%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* per-tile colour grades on the beat mosaic */
.fields .field:nth-child(4n+1)::after { background: linear-gradient(180deg, rgba(10, 13, 20, 0.06), rgba(255, 46, 136, 0.12) 62%, rgba(10, 13, 20, 0.82)); }
.fields .field:nth-child(4n+2)::after { background: linear-gradient(180deg, rgba(10, 13, 20, 0.06), rgba(124, 77, 255, 0.13) 62%, rgba(10, 13, 20, 0.82)); }
.fields .field:nth-child(4n+3)::after { background: linear-gradient(180deg, rgba(10, 13, 20, 0.06), rgba(0, 229, 255, 0.1) 62%, rgba(10, 13, 20, 0.84)); }
.fields .field:nth-child(4n)::after { background: linear-gradient(180deg, rgba(10, 13, 20, 0.06), rgba(201, 172, 114, 0.13) 62%, rgba(10, 13, 20, 0.82)); }

/* colour-graded card art */
.grid .card:nth-child(3n+1) .card-art::after { background: linear-gradient(180deg, rgba(255, 46, 136, 0.14), transparent 45%, rgba(10, 13, 20, 0.14)); }
.grid .card:nth-child(3n+2) .card-art::after { background: linear-gradient(180deg, rgba(124, 77, 255, 0.16), transparent 45%, rgba(10, 13, 20, 0.14)); }
.grid .card:nth-child(3n) .card-art::after { background: linear-gradient(180deg, rgba(0, 229, 255, 0.13), transparent 45%, rgba(10, 13, 20, 0.14)); }

/* filmstrip photos get colour pop on hover, slight tint at rest */
.filmstrip img { filter: saturate(1.08) contrast(1.03); }

/* premise + routes: livelier surfaces */
.premise { background: linear-gradient(160deg, #fffdf8, rgba(255, 46, 136, 0.035) 45%, rgba(124, 77, 255, 0.04)); }
.route { background: linear-gradient(165deg, var(--card), rgba(0, 229, 255, 0.04)); }

/* ---------- reading experience: cinematic essay heads + inline figures ---------- */
.article-head .filmbg { position: absolute; inset: 0; z-index: -3; }
.article-head .filmbg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.1s ease; }
.article-head .filmbg img.ok { opacity: 1; }
.article-head { background: #0d1017; }
.article-head .filmbg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(10, 13, 20, 0.94) 15%, rgba(10, 13, 20, 0.6) 55%, rgba(10, 13, 20, 0.42)),
    linear-gradient(180deg, rgba(10, 13, 20, 0.55), transparent 35%, rgba(10, 13, 20, 0.92));
}
.article-head .kicker, .article-head h1, .article-head .standfirst, .article-head .metaline { position: relative; z-index: 2; }
.article-head h1, .article-head .standfirst { color: #f2eee3; }
.article-head .standfirst { color: #b9bfca; }

.prose-img { margin: 2.6em auto; max-width: 860px; }
.prose-img img { width: 100%; border-radius: 16px; border: 1px solid var(--line); box-shadow: var(--shadow-soft); filter: grayscale(0.12) contrast(1.04) saturate(1.05); }
.prose-img figcaption { margin-top: 12px; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); text-align: center; }

/* ---------- reduced motion (targeted — ambient loops only) ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .aurora, .marquee-track, .hero-now::before, .scrollcue, .layers-viz .pulse { animation: none; }
  .band img.ok { animation: none; }
}

/* ============================================================
   HOME PREMIUM EDIT, 2026-07
   Fewer sections, stronger hierarchy, international BD focus.
   ============================================================ */
.home-premium .marquee--quiet {
  padding: 11px 0;
  background: #12141d;
}
.home-premium .marquee--quiet .marquee-track { gap: 2.35rem; animation-duration: 52s; }
.home-premium .marquee--quiet span {
  font-family: var(--mono);
  font-size: 0.69rem;
  letter-spacing: 0.2em;
  color: rgba(236, 232, 223, 0.35);
  -webkit-text-stroke: 0;
}
.home-premium .marquee--quiet span.solid { color: var(--brass-2); }

.home-proof {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.58);
}
.home-proof .shell { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.home-proof__item {
  --proof-accent: #b57755;
  --proof-accent-soft: rgba(181, 119, 85, 0.12);
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 30px 24px 28px;
  border-left: 1px solid var(--line);
  background: linear-gradient(145deg, var(--proof-accent-soft), rgba(255, 253, 248, 0.2) 58%);
  transition: background-color 0.35s ease, transform 0.35s ease;
}
.home-proof__item:nth-child(2) { --proof-accent: #257f8e; --proof-accent-soft: rgba(37, 127, 142, 0.11); }
.home-proof__item:nth-child(3) { --proof-accent: #8a538f; --proof-accent-soft: rgba(138, 83, 143, 0.11); }
.home-proof__item:nth-child(4) { --proof-accent: #536bb0; --proof-accent-soft: rgba(83, 107, 176, 0.11); }
.home-proof__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--proof-accent), transparent);
  transform: scaleX(0.45);
  transform-origin: left;
  transition: transform 0.45s ease, width 0.45s ease;
}
.home-proof__item:hover { background: linear-gradient(145deg, var(--proof-accent-soft), rgba(255, 255, 255, 0.74) 66%); }
.home-proof__item:hover::before { width: calc(100% - 48px); transform: scaleX(1); }
.home-proof__item:first-child { border-left: 0; }
.home-proof__mark {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.home-proof__mark--credentials { font-size: clamp(1rem, 1.65vw, 1.42rem); letter-spacing: 0.01em; }
.home-proof__mark--metric {
  display: flex;
  min-height: 48px;
  align-items: baseline;
  gap: 6px;
}
.home-proof .stat .n {
  display: inline-block;
  flex: 0 0 auto;
  font-family: var(--display);
  font-size: clamp(2.65rem, 4.6vw, 4.35rem);
  line-height: 0.82;
  letter-spacing: -0.055em;
  background: linear-gradient(145deg, #151821 8%, var(--proof-accent) 76%, #151821 150%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.home-proof__suffix {
  margin-left: -2px;
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--proof-accent);
}
.home-proof__unit {
  max-width: 15ch;
  font-family: var(--mono);
  font-size: 0.64rem;
  line-height: 1.35;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #424854;
}
.home-proof__label {
  display: block;
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.58;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #606672;
}

.home-featured {
  --fx: 50%;
  --fy: 50%;
  position: relative;
  overflow: hidden;
  padding: 86px 0 78px;
  border-top: 1px solid rgba(23, 26, 33, 0.08);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(44% 95% at var(--fx) var(--fy), rgba(124, 77, 255, 0.09), transparent 72%),
    linear-gradient(115deg, rgba(255, 46, 136, 0.035), transparent 36%),
    #f8f6f1;
}
.home-featured::before {
  content: "PUBLIC RECORD";
  position: absolute;
  right: -0.02em;
  top: -0.22em;
  font-family: var(--display);
  font-size: clamp(7rem, 18vw, 17rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(23, 26, 33, 0.035);
  pointer-events: none;
  white-space: nowrap;
}
.home-featured .shell { position: relative; z-index: 1; }
.home-featured__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 38px;
}
.home-featured__intro .kicker { margin-bottom: 16px; }
.home-featured__intro h2 {
  font-family: var(--display);
  font-size: clamp(3rem, 6.4vw, 5.8rem);
  line-height: 0.91;
  letter-spacing: -0.05em;
  color: var(--ink);
}
.home-featured__intro p { max-width: 48ch; color: var(--text-2); font-size: 0.98rem; line-height: 1.72; }
.home-featured__grid {
  counter-reset: publication;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.12fr 0.78fr 0.82fr 1.28fr;
  min-height: 196px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
}
.home-featured__grid a {
  counter-increment: publication;
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 22px 24px;
  border-left: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  isolation: isolate;
  transition: color 0.35s ease, transform 0.35s ease, background-color 0.35s ease;
}
.home-featured__grid a:first-child { border-left: 0; }
.home-featured__grid a::before {
  content: "0" counter(publication);
  position: absolute;
  right: 14px;
  top: 12px;
  z-index: -1;
  font-family: var(--display);
  font-size: 3.9rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(23, 26, 33, 0.07);
}
.home-featured__grid a::after {
  content: "↗";
  position: absolute;
  right: 18px;
  bottom: 20px;
  color: var(--hype1);
  opacity: 0;
  transform: translate(-7px, 7px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.home-featured__grid a:hover {
  z-index: 1;
  color: #f6f2e9;
  background: rgba(17, 20, 29, 0.96);
  transform: translateY(-7px);
  box-shadow: 0 26px 58px -34px rgba(17, 20, 29, 0.65);
}
.home-featured__grid a:hover::before { -webkit-text-stroke-color: rgba(236, 232, 223, 0.13); }
.home-featured__grid a:hover::after { opacity: 1; transform: translate(0, 0); }
.home-featured__grid strong {
  max-width: 12ch;
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.75vw, 1.75rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
}
.home-featured__grid span {
  max-width: 13ch;
  font-family: var(--mono);
  font-size: 0.55rem;
  line-height: 1.55;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.35s ease;
}
.home-featured__grid a:hover span { color: #aeb5c0; }
.home-featured__more {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 25px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-2);
  text-decoration: none;
}
.home-featured__more span { color: var(--hype1); transition: transform 0.3s ease; }
.home-featured__more:hover span { transform: translateX(5px); }

.home-systems {
  position: relative;
  overflow: hidden;
  padding: 112px 0 104px;
  background:
    linear-gradient(rgba(23, 26, 33, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 26, 33, 0.035) 1px, transparent 1px),
    radial-gradient(48% 58% at 96% 12%, rgba(124, 77, 255, 0.09), transparent 72%),
    #f5f2eb;
  background-size: 44px 44px, 44px 44px, auto, auto;
}
.home-systems::before {
  content: "SYSTEMS";
  position: absolute;
  right: -0.04em;
  top: -0.17em;
  font-family: var(--display);
  font-size: clamp(9rem, 22vw, 21rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(23, 26, 33, 0.045);
  pointer-events: none;
}
.home-systems .shell { position: relative; z-index: 1; }
.home-systems__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.68fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line-brass);
}
.home-systems__intro .kicker { margin-bottom: 18px; }
.home-systems__intro h2 {
  max-width: 15ch;
  font-family: var(--display);
  font-size: clamp(2.65rem, 5.5vw, 4.85rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.home-systems__intro p { max-width: 45ch; color: var(--text-2); font-size: 1rem; line-height: 1.72; }
.home-systems__experience {
  display: grid;
  grid-template-columns: minmax(340px, 0.76fr) minmax(0, 1.24fr);
  gap: 54px;
  align-items: start;
}
.home-systems__tabs {
  border-top: 1px solid var(--line);
}
.home-system-tab {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 10px 21px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: padding 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}
.home-system-tab::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--hype1), var(--hype3));
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.35s ease;
}
.home-system-tab:hover, .home-system-tab:focus-visible, .home-system-tab.is-active {
  padding-left: 20px;
  background: rgba(255, 255, 255, 0.48);
}
.home-system-tab.is-active::before { transform: scaleY(1); }
.home-system-tab:focus-visible { outline: 1px solid rgba(124, 77, 255, 0.5); outline-offset: -1px; }
.home-system-tab__number {
  padding-top: 4px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--brass);
}
.home-system-tab__copy { display: block; min-width: 0; }
.home-system-tab__eyebrow {
  display: block;
  margin-bottom: 5px;
  font-family: var(--mono);
  font-size: 0.54rem;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.home-system-tab strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.home-system-tab__copy > span:not(.home-system-tab__eyebrow) {
  display: block;
  overflow: hidden;
  max-height: 0;
  margin-top: 0;
  color: var(--text-2);
  font-size: 0.83rem;
  line-height: 1.55;
  opacity: 0;
  transition: max-height 0.4s ease, margin 0.4s ease, opacity 0.3s ease;
}
.home-system-tab small {
  display: block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 0.52rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.home-system-tab.is-active .home-system-tab__copy > span:not(.home-system-tab__eyebrow) {
  max-height: 82px;
  margin-top: 9px;
  opacity: 1;
}
.home-systems__visual {
  position: sticky;
  top: 112px;
  min-width: 0;
  min-height: 590px;
  overflow: hidden;
  border-radius: 26px;
  background: #10131a;
  box-shadow: 0 55px 110px -56px rgba(17, 20, 27, 0.92);
  isolation: isolate;
}
.home-systems__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: inherit;
  pointer-events: none;
}
.home-system-panel {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.72s ease, transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.home-system-panel[hidden] { display: block; visibility: hidden; }
.home-system-panel.is-active { z-index: 2; opacity: 1; transform: scale(1); visibility: visible; }
.home-system-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.06);
  transform: scale(1.015);
  transition: transform 8s ease;
}
.home-system-panel.is-active img { transform: scale(1.075); }
.home-system-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 14, 21, 0.02) 35%, rgba(11, 14, 21, 0.88) 100%),
    linear-gradient(100deg, rgba(11, 14, 21, 0.22), transparent 55%);
}
.home-system-panel figcaption {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 34px;
  bottom: 30px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  color: #f5f1e8;
}
.home-system-panel figcaption span {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: var(--brass-2);
}
.home-system-panel figcaption strong {
  max-width: 14ch;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.1vw, 3rem);
  font-weight: 500;
  line-height: 0.98;
  text-align: right;
}
.home-systems__visual-index {
  position: absolute;
  z-index: 5;
  left: 28px;
  right: 28px;
  top: 25px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.72);
}
.home-systems__sectors {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 18px;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  text-transform: uppercase;
}
.home-systems__sectors > span { flex: 0 0 auto; color: var(--brass); font-size: 0.61rem; letter-spacing: 0.15em; }
.home-systems__sectors ul { display: flex; flex-wrap: wrap; gap: 12px 22px; list-style: none; }
.home-systems__sectors li { font-size: 0.59rem; letter-spacing: 0.13em; color: var(--muted); }
.home-systems__sectors li::before { content: "·"; margin-right: 10px; color: var(--hype1); }

.home-fieldnotes {
  position: relative;
  overflow: hidden;
  padding: 106px 0 0;
  background:
    radial-gradient(44% 90% at 6% 100%, rgba(255, 46, 136, 0.11), transparent 72%),
    radial-gradient(48% 90% at 96% 0%, rgba(0, 229, 255, 0.08), transparent 70%),
    #0d1017;
}
.home-fieldnotes::before {
  content: "FIELD";
  position: absolute;
  right: -0.05em;
  top: -0.15em;
  font-family: var(--display);
  font-size: clamp(10rem, 27vw, 25rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(236, 232, 223, 0.045);
  pointer-events: none;
}
.home-fieldnotes__head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: 72px;
  align-items: end;
}
.home-fieldnotes__head .kicker { margin-bottom: 18px; color: var(--brass-2); }
.home-fieldnotes__head h2 {
  max-width: 13ch;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.7vw, 5.2rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: #f4f0e7;
}
.home-fieldnotes__head p { max-width: 44ch; color: #b7bdc8; font-size: 1rem; line-height: 1.72; }
.home-filmstrip {
  position: relative;
  z-index: 1;
  margin-top: 58px;
  padding: 24px 0 34px;
  border-color: rgba(236, 232, 223, 0.13);
  background: rgba(10, 13, 20, 0.28);
}
.home-filmstrip .filmstrip-track { gap: 18px; animation-duration: 82s; align-items: center; }
.home-filmstrip img {
  height: clamp(188px, 18vw, 258px);
  border-color: rgba(236, 232, 223, 0.16);
  border-radius: 18px;
  filter: saturate(1.04) contrast(1.04);
  box-shadow: 0 28px 62px -32px rgba(0, 0, 0, 0.95);
}
.home-filmstrip img:nth-child(n) { transform: none; }
.home-filmstrip img:hover { transform: translateY(-6px) scale(1.025); filter: saturate(1.12) contrast(1.03); }

.home-journal { padding: 112px 0 124px; }
.home-section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
  padding-top: 20px;
  border-top: 1px solid var(--line-brass);
}
.home-section-intro .kicker { margin-bottom: 18px; }
.home-section-intro h2 {
  max-width: 15ch;
  font-family: var(--display);
  font-size: clamp(2.45rem, 5.3vw, 4.7rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.home-section-intro p { max-width: 42ch; color: var(--text-2); font-size: 1rem; line-height: 1.7; }
.home-text-link {
  display: inline-block;
  margin-top: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-brass);
  font-family: var(--mono);
  font-size: 0.69rem;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brass);
}
.home-text-link:hover { border-bottom-color: currentColor; }
.home-journal__secondary { gap: 24px; }
.home-journal__more {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.home-journal__more .card-art { aspect-ratio: 16 / 6.4; }
.home-journal__more .card:first-child {
  background: linear-gradient(145deg, rgba(245, 219, 195, 0.34), rgba(255, 253, 248, 0.92) 42%);
}
.home-journal__more .card:last-child {
  background: linear-gradient(145deg, rgba(198, 222, 237, 0.3), rgba(255, 253, 248, 0.92) 42%);
}

.home-manifesto {
  position: relative;
  min-height: clamp(440px, 64vh, 720px);
  overflow: hidden;
  background: #10131a;
  isolation: isolate;
}
.home-manifesto > img {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(0.84) contrast(1.1) brightness(0.78);
  animation: manifestoDrift 24s ease-in-out infinite alternate;
}
@keyframes manifestoDrift {
  from { transform: scale(1.01) translate3d(0, 0, 0); }
  to { transform: scale(1.085) translate3d(0, -1.2%, 0); }
}
.home-manifesto__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 11, 17, 0.78) 0%, rgba(8, 11, 17, 0.42) 45%, rgba(8, 11, 17, 0.08) 72%),
    linear-gradient(180deg, rgba(8, 11, 17, 0.08), rgba(8, 11, 17, 0.62));
}
.home-manifesto__veil::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.home-manifesto__copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: clamp(440px, 64vh, 720px);
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 86px;
  padding-bottom: 64px;
}
.home-manifesto__copy .kicker { margin-bottom: 18px; color: var(--brass-2); }
.home-manifesto__copy a { color: inherit; text-decoration: none; }
.home-manifesto__copy h2 {
  max-width: 14ch;
  font-family: var(--display);
  font-size: clamp(3rem, 7.2vw, 7rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.048em;
  color: #f5f1e8;
  text-wrap: balance;
}
.home-manifesto__copy a:hover h2 { color: #fff; }
.home-manifesto__copy p {
  max-width: 46ch;
  margin-top: 24px;
  color: #c0c4cc;
  font-size: 0.96rem;
  line-height: 1.65;
}
.home-manifesto__folio {
  position: absolute;
  z-index: 2;
  top: 32px;
  right: max(28px, calc((100vw - var(--shell)) / 2));
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.62);
}

.home-framework {
  position: relative;
  overflow: hidden;
  padding: 122px 0 108px;
  background:
    radial-gradient(62% 48% at 100% 0%, rgba(124, 77, 255, 0.2), transparent 70%),
    radial-gradient(54% 48% at 0% 100%, rgba(0, 229, 255, 0.1), transparent 72%),
    #090c13;
  color: #ece8df;
}
.home-framework::after {
  content: "ACCOUNTABILITY";
  position: absolute;
  top: -0.12em;
  right: -0.05em;
  font-family: var(--display);
  font-size: clamp(7rem, 17vw, 16rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(236, 232, 223, 0.045);
  pointer-events: none;
}
.home-framework .shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.42fr);
  gap: 54px 72px;
  align-items: end;
}
.home-framework__intro .kicker { margin-bottom: 22px; color: var(--brass-2); }
.home-framework__intro h2 {
  max-width: 13ch;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.8vw, 4.3rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #f4f0e7;
}
.home-framework__intro p { max-width: 47ch; margin-top: 24px; color: #b8bdc8; font-size: 1rem; line-height: 1.72; }
.home-framework__intro .home-text-link { color: var(--brass-2); }
.home-framework__metric {
  display: flex;
  justify-content: flex-end;
  gap: 19px;
  align-items: end;
  padding-bottom: 6px;
}
.home-framework__metric > span {
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.72;
  letter-spacing: -0.065em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(236, 232, 223, 0.62);
}
.home-framework__metric p {
  font-family: var(--mono);
  font-size: 0.58rem;
  line-height: 1.65;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7f8795;
}
.home-framework__metric strong { color: var(--brass-2); font-weight: 500; }
.home-framework__visual {
  grid-column: 1 / -1;
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 18px 18px 20px;
  border: 1px solid rgba(236, 232, 223, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(56% 100% at 50% 48%, rgba(124, 77, 255, 0.12), transparent 72%),
    rgba(7, 10, 16, 0.76);
  background-size: 42px 42px, 42px 42px, auto, auto;
  box-shadow: 0 60px 130px -58px rgba(0, 0, 0, 0.98), inset 0 1px rgba(255, 255, 255, 0.04);
}
.home-framework__visual::after {
  content: "LIVE SYSTEM";
  position: absolute;
  right: 27px;
  top: 24px;
  font-family: var(--mono);
  font-size: 0.54rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.42);
  pointer-events: none;
}
.entropy--home { margin: 0; }
.entropy--home canvas { height: clamp(430px, 57vh, 620px); border-radius: 18px; }
.entropy--home .entropy-ui { margin-top: -62px; position: relative; z-index: 3; padding-bottom: 8px; }
.entropy--home .chip {
  border-color: rgba(236, 232, 223, 0.22);
  background: rgba(10, 13, 20, 0.66);
  color: #d9d4ca;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.entropy--home .meta { margin-top: 10px; letter-spacing: 0.06em; text-align: center; color: #7f8795; }
.home-principles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  border-top: 1px solid rgba(236, 232, 223, 0.14);
}
.home-principles li { padding: 34px 34px 0 0; }
.home-principles li + li { padding-left: 34px; border-left: 1px solid rgba(236, 232, 223, 0.13); }
.home-principles__number {
  display: block;
  margin-bottom: 15px;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--brass-2);
}
.home-principles strong {
  display: block;
  max-width: 20ch;
  font-family: var(--display);
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.3;
  color: #f4f0e7;
}
.home-principles p { max-width: 36ch; margin-top: 11px; color: #9ea4b0; font-size: 0.86rem; line-height: 1.65; }

.home-incident { padding: 124px 0 132px; }
.home-incident .incident-copy .kicker { margin-bottom: 22px; }

.home-stage-cinema {
  position: relative;
  overflow: hidden;
  background: #080b11;
}
.home-stage-cinema__frame {
  position: relative;
  min-height: clamp(560px, 76vh, 860px);
  overflow: hidden;
  margin: 0;
  isolation: isolate;
}
.home-stage-cinema__frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: saturate(0.94) contrast(1.08) brightness(0.86);
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.7s ease;
}
.home-stage-cinema__frame:hover > img { transform: scale(1.018); filter: saturate(1.02) contrast(1.06) brightness(0.88); }
.home-stage-cinema__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(270deg, rgba(6, 9, 15, 0.88) 0%, rgba(6, 9, 15, 0.62) 35%, rgba(6, 9, 15, 0.08) 67%),
    linear-gradient(180deg, rgba(6, 9, 15, 0.08) 38%, rgba(6, 9, 15, 0.76) 100%);
}
.home-stage-cinema__copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: clamp(560px, 76vh, 860px);
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding-top: 94px;
  padding-bottom: 72px;
  text-align: right;
}
.home-stage-cinema__copy .kicker { margin-bottom: 20px; color: var(--brass-2); }
.home-stage-cinema__copy h2 {
  max-width: 11ch;
  font-family: var(--display);
  font-size: clamp(2.85rem, 5vw, 5.15rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: #f5f1e8;
  text-wrap: balance;
}
.home-stage-cinema__copy p { max-width: 42ch; margin-top: 24px; color: #d0d3da; font-size: 0.98rem; line-height: 1.68; }
.home-stage__cta {
  display: inline-block;
  align-self: flex-end;
  margin-top: 28px;
  padding: 12px 18px;
  border: 1px solid rgba(201, 172, 114, 0.55);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brass-2);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.home-stage__cta:hover { transform: translateY(-2px); background: var(--brass-2); color: #11141b; }
.home-stage-cinema__frame figcaption {
  position: absolute;
  z-index: 3;
  left: max(28px, calc((100vw - var(--shell)) / 2));
  right: auto;
  bottom: 34px;
  font-family: var(--mono);
  font-size: 0.56rem;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.72);
}

.home-contact { position: relative; padding: 124px 0 136px; overflow: hidden; }
.home-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(44% 55% at 0% 100%, rgba(201, 172, 114, 0.1), transparent 70%),
    radial-gradient(42% 56% at 100% 0%, rgba(124, 77, 255, 0.08), transparent 72%);
}
.home-contact .shell { position: relative; z-index: 1; }
.home-contact__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.62fr);
  gap: 50px;
  align-items: end;
  padding-top: 20px;
  border-top: 1px solid var(--line-brass);
}
.home-contact__intro .kicker { margin-bottom: 19px; }
.home-contact__intro h2 {
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.55rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.home-contact__intro p {
  padding-bottom: 6px;
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.7;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.home-contact__routes { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 24px; margin-top: 52px; }
.home-contact__route {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 42px 40px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.78);
  text-decoration: none;
  box-shadow: 0 32px 74px -50px rgba(23, 26, 33, 0.55);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.home-contact__route:hover { transform: translateY(-4px); border-color: var(--line-brass); box-shadow: 0 42px 88px -48px rgba(23, 26, 33, 0.6); }
.home-contact__route--professional {
  background:
    radial-gradient(68% 82% at 100% 0%, rgba(124, 77, 255, 0.16), transparent 72%),
    #131720;
  border-color: rgba(236, 232, 223, 0.15);
}
.home-contact__route .kicker { margin-bottom: 24px; }
.home-contact__route h3 {
  max-width: 17ch;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--ink);
}
.home-contact__route p { max-width: 50ch; margin-top: 20px; color: var(--text-2); font-size: 0.92rem; line-height: 1.68; }
.home-contact__action {
  position: static;
  margin-top: auto;
  padding-top: 28px;
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}
.home-contact__route--professional h3 { color: #f4f0e7; }
.home-contact__route--professional p { color: #b6bcc7; }
.home-contact__route--professional .kicker, .home-contact__route--professional .home-contact__action { color: var(--brass-2); }

@media (max-width: 980px) {
  .home-proof .shell { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-proof__item:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .home-proof__item:nth-child(4) { border-top: 1px solid var(--line); }
  .home-framework .shell { grid-template-columns: 1fr; }
  .home-framework__intro h2 { max-width: 16ch; }
  .home-framework__metric { justify-content: flex-start; }
  .home-framework__visual { width: 100%; }
  .home-systems__experience { grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr); gap: 30px; }
  .home-systems__visual { min-height: 540px; }
  .home-fieldnotes__head { grid-template-columns: 1fr; gap: 24px; }
  .home-fieldnotes__head p { max-width: 60ch; }
  .home-systems__intro { grid-template-columns: 1fr; gap: 24px; }
  .home-systems__intro p { max-width: 60ch; }
  .home-featured__intro { grid-template-columns: 1fr; gap: 24px; }
  .home-featured__intro p { max-width: 60ch; }
  .home-featured__grid { grid-template-columns: 1.2fr 1fr 1.1fr repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .home-journal, .home-incident, .home-contact { padding-top: 86px; padding-bottom: 94px; }
  .home-framework { padding-top: 92px; padding-bottom: 100px; }
  .home-section-intro, .home-contact__intro { grid-template-columns: 1fr; gap: 24px; }
  .home-section-intro { margin-bottom: 38px; }
  .home-section-intro h2, .home-contact__intro h2 { font-size: clamp(2.25rem, 12vw, 3.45rem); }
  .home-principles { grid-template-columns: 1fr; }
  .home-principles li { padding: 26px 0; }
  .home-principles li + li { padding-left: 0; border-left: 0; border-top: 1px solid rgba(236, 232, 223, 0.13); }
  .home-principles strong, .home-principles p { max-width: none; }
  .home-contact__routes { grid-template-columns: 1fr; }
  .home-contact__route { min-height: 320px; }
  .home-fieldnotes { padding-top: 84px; }
  .home-fieldnotes__head h2 { font-size: clamp(2.55rem, 13vw, 3.7rem); }
  .home-filmstrip { margin-top: 38px; padding: 18px 0 26px; }
  .home-filmstrip img { height: 184px; border-radius: 14px; }
  .home-systems { padding-top: 86px; padding-bottom: 82px; }
  .home-systems__intro h2 { font-size: clamp(2.35rem, 12vw, 3.55rem); }
  .home-systems__experience { grid-template-columns: 1fr; gap: 28px; }
  .home-system-tab { grid-template-columns: 38px minmax(0, 1fr); padding-top: 17px; padding-bottom: 18px; }
  .home-system-tab:hover, .home-system-tab:focus-visible, .home-system-tab.is-active { padding-left: 14px; }
  .home-systems__visual { position: relative; top: auto; min-height: clamp(410px, 112vw, 560px); border-radius: 20px; }
  .home-system-panel figcaption { left: 24px; right: 24px; bottom: 24px; }
  .home-system-panel figcaption strong { font-size: clamp(1.7rem, 8.5vw, 2.7rem); }
  .home-featured { padding-top: 78px; padding-bottom: 70px; }
  .home-featured__intro h2 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .home-featured__grid {
    display: flex;
    min-height: 188px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .home-featured__grid::-webkit-scrollbar { display: none; }
  .home-featured__grid a { flex: 0 0 208px; scroll-snap-align: start; }
  .home-featured__grid a:first-child { border-left: 0; }
  .home-stage-cinema__frame { min-height: 0; overflow: visible; background: #080b11; }
  .home-stage-cinema__frame > img {
    position: relative;
    inset: auto;
    height: 460px;
    object-position: 45% 30%;
  }
  .home-stage-cinema__shade {
    height: 460px;
    bottom: auto;
    background: linear-gradient(180deg, rgba(6, 9, 15, 0.02) 38%, rgba(6, 9, 15, 0.56) 100%);
  }
  .home-stage-cinema__copy {
    min-height: 0;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 46px;
    padding-bottom: 56px;
    text-align: left;
    background:
      radial-gradient(80% 90% at 100% 0%, rgba(124, 77, 255, 0.13), transparent 72%),
      #080b11;
  }
  .home-stage-cinema__copy h2 { max-width: 10ch; font-size: clamp(3rem, 9vw, 4.1rem); }
  .home-stage-cinema__copy p { max-width: 36ch; }
  .home-stage__cta { align-self: flex-start; }
  .home-stage-cinema__frame figcaption { left: 28px; right: auto; top: 428px; bottom: auto; }
}

@media (max-width: 560px) {
  .cursor-dot, .cursor-ring { display: none; }
  .home-proof .shell { grid-template-columns: 1fr; }
  .home-proof__item { padding: 20px 0; border-left: 0; display: grid; grid-template-columns: minmax(130px, 0.85fr) 1.15fr; gap: 18px; align-items: center; }
  .home-proof__item + .home-proof__item { border-top: 1px solid var(--line); }
  .home-proof__label { margin-top: 0; font-size: 0.66rem; color: #515864; }
  .home-proof__mark, .home-proof__mark--credentials { font-size: 1.08rem; }
  .home-proof__mark--metric { min-height: 42px; gap: 5px; }
  .home-proof .stat .n { font-size: 3.2rem; }
  .home-proof__suffix { font-size: 1.05rem; }
  .home-proof__unit { font-size: 0.6rem; }
  .home-framework .shell { gap: 42px; }
  .home-framework__intro h2 { font-size: clamp(2.25rem, 12vw, 3.25rem); }
  .home-framework__metric { gap: 14px; }
  .home-framework__metric > span { font-size: clamp(4.6rem, 26vw, 6rem); }
  .home-framework__visual { padding: 8px 8px 14px; border-radius: 18px; }
  .entropy--home canvas { height: 420px; }
  .entropy--home .entropy-ui { margin-top: -70px; }
  .entropy--home .chip { font-size: 0.59rem; letter-spacing: 0.09em; }
  .home-manifesto, .home-manifesto__copy { min-height: 560px; }
  .home-manifesto__copy { padding-bottom: 48px; }
  .home-manifesto__copy h2 { max-width: 100%; font-size: clamp(2.85rem, 14.8vw, 4rem); }
  .home-manifesto__copy p { max-width: 31ch; }
  .home-manifesto__folio { right: 28px; }
  .home-stage-cinema__frame { min-height: 0; overflow: visible; background: #080b11; }
  .home-stage-cinema__frame > img {
    position: relative;
    inset: auto;
    height: 410px;
    object-position: 45% 30%;
  }
  .home-stage-cinema__shade {
    height: 410px;
    bottom: auto;
    background: linear-gradient(180deg, rgba(6, 9, 15, 0.02) 38%, rgba(6, 9, 15, 0.56) 100%);
  }
  .home-stage-cinema__copy {
    min-height: 0;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 42px;
    padding-bottom: 52px;
    text-align: left;
    background:
      radial-gradient(80% 90% at 100% 0%, rgba(124, 77, 255, 0.13), transparent 72%),
      #080b11;
  }
  .home-stage-cinema__copy h2 { max-width: 10ch; font-size: clamp(2.65rem, 13vw, 3.65rem); }
  .home-stage-cinema__copy p { max-width: 31ch; }
  .home-stage__cta { align-self: flex-start; }
  .home-stage-cinema__frame figcaption { left: 28px; right: auto; top: 380px; bottom: auto; }
  .home-journal__more { grid-template-columns: 1fr; }
  .home-journal__more .card-art { aspect-ratio: 16 / 8; }
  .home-contact__route { min-height: 340px; padding: 32px 28px; }
  .home-contact__action { left: 28px; bottom: 30px; }
  .home-systems__intro { margin-bottom: 32px; }
  .home-system-tab strong { font-size: clamp(1.4rem, 7vw, 1.8rem); }
  .home-system-tab small { font-size: 0.48rem; }
  .home-systems__visual { min-height: 430px; }
  .home-systems__visual-index { left: 20px; right: 20px; top: 19px; }
  .home-system-panel figcaption { display: block; }
  .home-system-panel figcaption strong { margin-top: 8px; text-align: left; }
  .home-systems__sectors { align-items: flex-start; gap: 14px; padding-left: 0; padding-right: 0; }
  .home-systems__sectors ul { gap: 9px 12px; }
  .home-featured__intro { margin-bottom: 30px; }
  .home-featured__grid { margin-right: -28px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-manifesto > img { animation: none; }
  .home-system-panel img, .home-stage-cinema__frame > img { transition: none; transform: none; }
}

/* ============================================================
   SITEWIDE DRKJ MASTHEAD
   One dark, premium brand lockup across every public page.
   ============================================================ */
.masthead--dark {
  background: rgba(9, 11, 16, 0.94);
  border-bottom-color: rgba(236, 232, 223, 0.11);
}
.brandlockup {
  display: inline-flex;
  min-width: 0;
  align-items: baseline;
}
.masthead--dark .wordmark { color: #f4f0e7; }
.masthead--dark .nav a { color: rgba(236, 232, 223, 0.58); }
.masthead--dark .nav a:hover,
.masthead--dark .nav a[aria-current="page"] { color: var(--hype1); border-bottom-color: var(--hype1); }

@media (max-width: 600px) {
  .brandlockup { display: flex; width: 100%; }
}

/* ============================================================
   JOURNAL EDITION, 2026-07
   Editorial cover, asymmetric desk and integrated field notes.
   ============================================================ */
.journal-edition { background: #f4f0e8; }
.journal-edition .masthead { background: #090b10; }
.journal-edition .wordmark { color: #f4f0e7; }

.journal-cover {
  position: relative;
  overflow: hidden;
  padding: 28px 0 72px;
  background:
    radial-gradient(48% 62% at 88% 4%, rgba(255, 46, 136, 0.09), transparent 72%),
    radial-gradient(42% 68% at 4% 100%, rgba(0, 229, 255, 0.055), transparent 74%),
    radial-gradient(70% 90% at 100% 0%, rgba(67, 89, 111, 0.22), transparent 72%),
    #090b10;
}
.journal-cover::before {
  content: "JOURNAL";
  position: absolute;
  right: -0.05em;
  top: 0.2em;
  font-family: var(--display);
  font-size: clamp(7rem, 18vw, 17rem);
  line-height: 0.8;
  letter-spacing: -0.07em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(236, 232, 223, 0.045);
  pointer-events: none;
}
.journal-cover__folio {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 13px 0 22px;
  border-top: 1px solid rgba(236, 232, 223, 0.18);
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #868d99;
}
.journal-cover__folio span:nth-child(2) { color: var(--brass-2); text-align: center; }
.journal-cover__folio span:last-child { text-align: right; }
.journal-cover__feature {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(236, 232, 223, 0.18);
  text-decoration: none;
  color: #f4f0e7;
  background: #0b0e14;
}
.journal-cover__feature::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0 0 auto;
  height: 1px;
  opacity: 0.82;
  background: linear-gradient(90deg, var(--brass-2), var(--hype1) 34%, var(--hype2) 66%, var(--hype3));
  pointer-events: none;
}
.journal-cover__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(38px, 5vw, 74px);
  background:
    radial-gradient(80% 60% at 0% 0%, rgba(201, 172, 114, 0.08), transparent 72%),
    #0a0c11;
}
.journal-cover__copy .kicker { margin-bottom: 30px; color: var(--brass-2); }
.journal-cover__copy h1 {
  max-width: 7.2ch;
  font-family: var(--display);
  font-size: clamp(4.4rem, 7.25vw, 7.6rem);
  font-weight: 500;
  line-height: 0.79;
  letter-spacing: -0.065em;
  color: #f4f0e7;
}
.journal-cover__copy p {
  max-width: 41ch;
  margin-top: 34px;
  font-size: 1rem;
  line-height: 1.7;
  color: #aeb4be;
}
.journal-cover__read {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding-top: 17px;
  border-top: 1px solid rgba(201, 172, 114, 0.42);
  font-family: var(--mono);
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass-2);
}
.journal-cover__image { position: relative; min-width: 0; overflow: hidden; margin: 0; }
.journal-cover__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 17, 0.42), transparent 32%),
    linear-gradient(180deg, transparent 62%, rgba(7, 9, 13, 0.72));
  pointer-events: none;
}
.journal-cover__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08) brightness(0.88);
  transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.7s ease;
}
.journal-cover__feature:hover .journal-cover__image img { transform: scale(1.025); filter: saturate(0.95) contrast(1.05) brightness(0.92); }
.journal-cover__image figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 24px;
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 240, 231, 0.76);
}

.journal-desk {
  position: relative;
  overflow: hidden;
  padding: 118px 0 132px;
  background:
    radial-gradient(38% 54% at 100% 8%, rgba(124, 77, 255, 0.055), transparent 72%),
    radial-gradient(34% 48% at 0% 94%, rgba(0, 229, 255, 0.035), transparent 72%),
    linear-gradient(rgba(23, 26, 33, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 26, 33, 0.035) 1px, transparent 1px),
    #f4f0e8;
  background-size: 72px 72px;
}
.journal-desk::after {
  content: "DESK";
  position: absolute;
  right: -0.05em;
  top: 0.2em;
  font-family: var(--display);
  font-size: clamp(8rem, 22vw, 19rem);
  line-height: 0.8;
  letter-spacing: -0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(23, 26, 33, 0.045);
  pointer-events: none;
}
.journal-desk .shell { position: relative; z-index: 1; }
.journal-desk__head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.66fr);
  gap: 72px;
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--brass), rgba(255, 46, 136, 0.62), rgba(124, 77, 255, 0.42), transparent 84%) 1;
}
.journal-desk__head .kicker { margin-bottom: 20px; }
.journal-desk__head h2 {
  font-family: var(--display);
  font-size: clamp(3.8rem, 7.8vw, 7rem);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.06em;
  color: var(--ink);
}
.journal-desk__intro { padding-bottom: 8px; }
.journal-desk__intro p:first-child { font-family: var(--display); font-size: 1.24rem; line-height: 1.48; color: var(--ink); }
.journal-desk__intro .meta { margin-top: 18px; line-height: 1.6; }
.journal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 62px 0 38px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.journal-filters .chip { border-radius: 999px; background: rgba(255, 253, 248, 0.44); }
.journal-filters a.chip { display: inline-flex; align-items: center; text-decoration: none; }
.journal-filters .chip.active {
  border-color: rgba(124, 77, 255, 0.78);
  color: #f4f0e7;
  background: linear-gradient(110deg, #171a21 12%, #49338e 100%);
  box-shadow: 0 10px 30px -18px rgba(124, 77, 255, 0.75);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 28px;
}
.journal-story {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid var(--ink);
}
.journal-story--lead {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: stretch;
}
.journal-story--portrait, .journal-story--wide, .journal-story--compact { grid-column: auto; margin-top: 0; }
.journal-story figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #12151c;
  box-shadow: 0 26px 60px -38px rgba(23, 26, 33, 0.58);
  transition: box-shadow 0.5s ease, transform 0.5s ease;
}
.journal-story:hover figure { transform: translateY(-2px); box-shadow: 0 34px 72px -34px rgba(23, 26, 33, 0.7), 0 0 64px -34px rgba(124, 77, 255, 0.62); }
.journal-story--lead figure { min-height: 470px; aspect-ratio: auto; }
.journal-story--portrait figure, .journal-story--wide figure, .journal-story--compact figure { aspect-ratio: 4 / 3; }
.journal-story figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(124, 77, 255, 0.05), transparent 50%, rgba(10, 13, 20, 0.12));
  pointer-events: none;
}
.journal-story:nth-child(1) figure::after { background: linear-gradient(145deg, rgba(124, 77, 255, 0.12), transparent 46%, rgba(255, 46, 136, 0.08), rgba(10, 13, 20, 0.14)); }
.journal-story:nth-child(2) figure::after { background: linear-gradient(145deg, rgba(255, 46, 136, 0.12), transparent 48%, rgba(201, 172, 114, 0.08), rgba(10, 13, 20, 0.14)); }
.journal-story:nth-child(3) figure::after { background: linear-gradient(145deg, rgba(0, 229, 255, 0.12), transparent 50%, rgba(124, 77, 255, 0.08), rgba(10, 13, 20, 0.13)); }
.journal-story:nth-child(4) figure::after { background: linear-gradient(145deg, rgba(201, 172, 114, 0.1), transparent 48%, rgba(0, 229, 255, 0.06), rgba(10, 13, 20, 0.14)); }
.journal-story figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.5s ease;
}
.journal-story:hover figure img { transform: scale(1.03); filter: saturate(1.06) contrast(1.03); }
.journal-story__copy { padding: 16px 4px 0; }
.journal-story--lead .journal-story__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px 12px 34px 38px;
  border-left: 1px solid var(--line);
}
.journal-story__line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 25px;
  font-family: var(--mono);
  font-size: 0.57rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #737985;
}
.journal-story__line span:first-child { color: var(--brass); }
.journal-story .kicker { margin-bottom: 13px; }
.journal-story h3 {
  max-width: 19ch;
  font-family: var(--display);
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--ink);
  transition: color 0.25s ease;
}
.journal-story--lead h3 { max-width: 12ch; font-size: clamp(3rem, 5vw, 5rem); }
.journal-story:not(.journal-story--lead) h3 { font-size: clamp(2rem, 2.8vw, 2.7rem); }
.journal-story--compact h3 { font-size: clamp(1.85rem, 3vw, 2.7rem); }
.journal-story:hover h3 { color: var(--hype2); }
.journal-story p { max-width: 54ch; margin-top: 17px; color: #555c68; font-size: 0.91rem; line-height: 1.65; }
.journal-story__read {
  display: inline-flex;
  gap: 12px;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
}

.journal-dispatches {
  position: relative;
  overflow: hidden;
  padding: 112px 0 120px;
  background:
    radial-gradient(60% 90% at 100% 0%, rgba(124, 77, 255, 0.14), transparent 72%),
    radial-gradient(42% 72% at 0% 100%, rgba(0, 229, 255, 0.055), transparent 72%),
    #090c12;
}
.journal-dispatches::after {
  content: "NOTES";
  position: absolute;
  left: -0.04em;
  bottom: -0.02em;
  font-family: var(--display);
  font-size: clamp(9rem, 24vw, 22rem);
  line-height: 0.62;
  letter-spacing: -0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(236, 232, 223, 0.05);
  pointer-events: none;
}
.journal-dispatches .shell { position: relative; z-index: 1; }
.journal-dispatches__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 60px;
  align-items: end;
  padding-top: 22px;
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--brass-2), rgba(255, 46, 136, 0.56), rgba(124, 77, 255, 0.52), rgba(0, 229, 255, 0.34), transparent 92%) 1;
}
.journal-dispatches__head .kicker { margin-bottom: 20px; color: var(--brass-2); }
.journal-dispatches__head h2 {
  font-family: var(--display);
  font-size: clamp(3.4rem, 6.6vw, 6rem);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.055em;
  color: #f3efe6;
}
.journal-dispatches__head > p { max-width: 35ch; color: #a6acb7; line-height: 1.7; }
.journal-dispatches__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 64px; background: rgba(236, 232, 223, 0.16); }
.journal-dispatch {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 25px;
  min-height: 300px;
  padding: 34px;
  text-decoration: none;
  color: inherit;
  background: rgba(10, 13, 20, 0.94);
  transition: background 0.3s ease;
}
.journal-dispatch:hover { background: rgba(19, 23, 33, 0.98); }
.journal-dispatch__number { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.16em; color: var(--brass-2); }
.journal-dispatch .kicker { color: #7e8797; }
.journal-dispatch h3 { max-width: 19ch; margin-top: 26px; font-family: var(--display); font-size: clamp(2rem, 3.3vw, 3rem); font-weight: 500; line-height: 1; letter-spacing: -0.035em; color: #f3efe6; }
.journal-dispatch p { max-width: 47ch; margin-top: 19px; color: #9ba2ae; font-size: 0.9rem; line-height: 1.65; }
.journal-dispatch__arrow { align-self: end; font-size: 1.25rem; color: var(--brass-2); transition: transform 0.25s ease; }
.journal-dispatch:hover .journal-dispatch__arrow { transform: translate(3px, -3px); }

.journal-follow { padding: 94px 0 102px; background: #ece6dc; }
.journal-follow .shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: 72px;
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid var(--line-brass);
}
.journal-follow .kicker { margin-bottom: 15px; }
.journal-follow h2 { font-family: var(--display); font-size: clamp(2.7rem, 5vw, 4.8rem); font-weight: 500; line-height: 0.88; letter-spacing: -0.05em; color: var(--ink); }
.journal-follow__links { display: grid; gap: 1px; background: var(--line); }
.journal-follow__links a { display: flex; justify-content: space-between; gap: 20px; padding: 18px 20px; background: rgba(255, 253, 248, 0.56); font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; color: var(--ink); transition: background 0.25s ease, color 0.25s ease; }
.journal-follow__links a:hover { background: var(--ink); color: #f3efe6; }

@media (max-width: 960px) {
  .journal-cover__feature { grid-template-columns: 1fr; }
  .journal-cover__copy { min-height: 560px; }
  .journal-cover__image { min-height: 520px; }
  .journal-desk__head, .journal-dispatches__head { grid-template-columns: 1fr; gap: 32px; }
  .journal-desk__intro, .journal-dispatches__head > p { max-width: 54ch; }
  .journal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journal-story--lead { grid-column: 1 / -1; grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr); }
  .journal-story--portrait, .journal-story--wide, .journal-story--compact { grid-column: auto; margin-top: 0; }
  .journal-story--compact { grid-column: 1 / -1; width: calc(50% - 14px); justify-self: center; }
  .journal-dispatches__grid { grid-template-columns: 1fr; }
  .journal-follow .shell { grid-template-columns: 1fr; gap: 34px; }
  .journal-follow__links { grid-column: 1; margin-top: 0; }
}

@media (max-width: 620px) {
  .journal-cover { padding-bottom: 36px; }
  .journal-cover__folio { grid-template-columns: 1fr auto; }
  .journal-cover__folio span:last-child { display: none; }
  .journal-cover__feature { min-height: 0; }
  .journal-cover__copy { min-height: 500px; padding: 34px 26px 38px; }
  .journal-cover__copy h1 { font-size: clamp(3.75rem, 17vw, 5.2rem); }
  .journal-cover__copy p { margin-top: 26px; }
  .journal-cover__image { min-height: 390px; }
  .journal-cover__image figcaption { right: 18px; bottom: 18px; }
  .journal-desk { padding: 82px 0 90px; background-size: 48px 48px; }
  .journal-desk__head h2 { font-size: clamp(3.45rem, 16vw, 5rem); }
  .journal-filters { flex-wrap: nowrap; overflow-x: auto; margin: 46px -28px 28px; padding-left: 28px; padding-right: 28px; scrollbar-width: none; }
  .journal-filters::-webkit-scrollbar { display: none; }
  .journal-filters .chip { flex: 0 0 auto; }
  .journal-grid { grid-template-columns: 1fr; gap: 54px; }
  .journal-story--lead { display: flex; grid-column: 1; }
  .journal-story--lead figure { min-height: 0; aspect-ratio: 4 / 3; }
  .journal-story--lead .journal-story__copy { padding: 22px 4px 0; border-left: 0; }
  .journal-story--portrait, .journal-story--wide, .journal-story--compact { grid-column: 1; width: auto; justify-self: stretch; }
  .journal-story--portrait figure, .journal-story--wide figure, .journal-story--compact figure { aspect-ratio: 4 / 3; }
  .journal-story h3, .journal-story--compact h3 { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .journal-dispatches { padding: 82px 0 90px; }
  .journal-dispatches__head h2 { font-size: clamp(3.2rem, 14vw, 4.5rem); }
  .journal-dispatch { grid-template-columns: 1fr auto; min-height: 0; padding: 28px 24px 32px; }
  .journal-dispatch__number { grid-column: 1 / -1; }
  .journal-dispatch h3 { font-size: clamp(2.2rem, 11vw, 3rem); }
  .journal-follow { padding: 72px 0 78px; }
  .journal-follow .shell { grid-template-columns: 1fr; }
  .journal-follow h2 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .journal-follow__links { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .journal-cover__image img, .journal-story figure img { transition: none; transform: none; }
}

/* ============================================================
   SUBPAGE CINEMA, 2026-07
   One DRKJ editorial system, with a distinct opening scene for
   Journal, Off Counsel, Speaking, About, Contact and utility pages.
   ============================================================ */
.subpage {
  background:
    linear-gradient(rgba(23, 26, 33, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 26, 33, 0.025) 1px, transparent 1px),
    #f4f0e8;
  background-size: 72px 72px;
}

.subpage-hero {
  position: relative;
  display: flex;
  min-height: min(790px, 88svh);
  overflow: hidden;
  isolation: isolate;
  color: #f4f0e7;
  background: #090b10;
}
.subpage-hero::before {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 72px 0 auto;
  height: 1px;
  opacity: 0.82;
  background: linear-gradient(90deg, var(--brass-2), var(--hype1) 34%, var(--hype2) 66%, var(--hype3));
  pointer-events: none;
}
.subpage-hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 172, 114, 0.64), rgba(124, 77, 255, 0.58), transparent);
  pointer-events: none;
}
.subpage-hero__media,
.subpage-hero__shade { position: absolute; inset: 0; margin: 0; }
.subpage-hero__media { z-index: -3; background: #090b10; }
.subpage-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08) brightness(0.76);
  animation: subpageFrame 20s ease-in-out infinite alternate;
}
@keyframes subpageFrame {
  from { transform: scale(1.005); }
  to { transform: scale(1.055) translate3d(0, -0.7%, 0); }
}
.subpage-hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.98) 0%, rgba(7, 9, 13, 0.93) 30%, rgba(7, 9, 13, 0.59) 58%, rgba(7, 9, 13, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 9, 13, 0.4), transparent 36%, rgba(7, 9, 13, 0.76));
}
.subpage-hero__shell {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  align-items: flex-end;
  padding-top: 148px;
  padding-bottom: clamp(58px, 8vh, 92px);
}
.subpage-hero__copy { width: min(590px, 55%); }
.subpage-hero__copy .kicker {
  margin-bottom: 28px;
  color: var(--brass-2);
  animation: rise 0.8s 0.08s both;
}
.subpage-hero__copy h1 {
  font-family: var(--display);
  font-size: clamp(4.6rem, 8.4vw, 8.25rem);
  font-weight: 500;
  line-height: 0.79;
  letter-spacing: -0.065em;
  color: #f4f0e7;
  text-wrap: balance;
  animation: rise 0.95s 0.17s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.subpage-hero__copy > p {
  max-width: 46ch;
  margin-top: 34px;
  color: #b5bbc5;
  font-size: 1rem;
  line-height: 1.7;
  animation: rise 0.9s 0.28s both;
}
.subpage-hero__copy > p a { color: var(--brass-2); }
.subpage-hero__folio {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  margin-top: 38px;
  padding-top: 17px;
  border-top: 1px solid rgba(201, 172, 114, 0.46);
  font-family: var(--mono);
  font-size: 0.58rem;
  line-height: 1.5;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9299a6;
  animation: rise 0.9s 0.36s both;
}
.subpage-hero__folio span:last-child { color: var(--brass-2); text-align: right; }
.subpage-hero__ghost {
  position: absolute;
  z-index: -1;
  right: -0.055em;
  bottom: -0.14em;
  font-family: var(--display);
  font-size: clamp(9rem, 23vw, 22rem);
  line-height: 0.8;
  letter-spacing: -0.07em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 240, 231, 0.075);
  pointer-events: none;
  user-select: none;
}

.subpage-hero--offc .subpage-hero__media img { object-position: 55% 46%; filter: saturate(0.94) contrast(1.04) brightness(0.73); }
.subpage-hero--offc .subpage-hero__shade {
  background:
    linear-gradient(90deg, rgba(10, 9, 10, 0.98) 0%, rgba(10, 9, 10, 0.94) 32%, rgba(10, 9, 10, 0.56) 59%, rgba(10, 9, 10, 0.13) 100%),
    linear-gradient(180deg, rgba(8, 9, 13, 0.32), transparent 38%, rgba(8, 9, 13, 0.72));
}
.subpage-hero--speaking .subpage-hero__media img { object-position: 52% 44%; }
.subpage-hero--about .subpage-hero__media img { object-position: 69% 43%; filter: saturate(0.82) contrast(1.04) brightness(0.7); }
.subpage-hero--about .subpage-hero__shade {
  background:
    linear-gradient(90deg, rgba(7, 9, 13, 0.99) 0%, rgba(7, 9, 13, 0.95) 35%, rgba(7, 9, 13, 0.56) 61%, rgba(7, 9, 13, 0.08) 100%),
    linear-gradient(180deg, rgba(7, 9, 13, 0.35), transparent 38%, rgba(7, 9, 13, 0.7));
}
.subpage-hero--contact .subpage-hero__media img { object-position: 66% 50%; filter: saturate(0.68) hue-rotate(8deg) contrast(1.14) brightness(0.62); }
.subpage-hero--notes .subpage-hero__media img { object-position: 64% 48%; filter: saturate(0.7) contrast(1.14) brightness(0.58); }

.subpage-hero--compact { min-height: min(660px, 76svh); }
.subpage-hero--compact .subpage-hero__copy h1 { font-size: clamp(4.1rem, 7.6vw, 7.2rem); }
.subpage-hero--legal {
  background:
    radial-gradient(52% 80% at 86% 10%, rgba(124, 77, 255, 0.17), transparent 72%),
    radial-gradient(42% 70% at 8% 100%, rgba(0, 229, 255, 0.08), transparent 74%),
    #090b10;
}
.subpage-hero--legal::before { opacity: 0.48; }
.subpage-hero--legal .subpage-hero__shade {
  background:
    linear-gradient(rgba(236, 232, 223, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(236, 232, 223, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
}

.subpage main > .section:first-child { padding-top: 88px !important; }
.subpage .footer { margin-top: 0; }

/* Speaking becomes a magazine spread rather than a tile shelf. */
.subpage--speaking .stage-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 118px;
  gap: 12px;
  margin-bottom: 92px;
}
.subpage--speaking .stage-grid figure {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(23, 26, 33, 0.16);
  background: #0b0e14;
  box-shadow: 0 28px 62px -38px rgba(10, 13, 20, 0.85);
}
.subpage--speaking .stage-grid figure:nth-child(1) { grid-column: span 7; grid-row: span 4; }
.subpage--speaking .stage-grid figure:nth-child(2) { grid-column: span 5; grid-row: span 2; }
.subpage--speaking .stage-grid figure:nth-child(3) { grid-column: span 5; grid-row: span 2; }
.subpage--speaking .stage-grid figure:nth-child(4),
.subpage--speaking .stage-grid figure:nth-child(5),
.subpage--speaking .stage-grid figure:nth-child(6) { grid-column: span 4; grid-row: span 2; }
.subpage--speaking .stage-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: saturate(0.88) contrast(1.05);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.45s ease;
}
.subpage--speaking .stage-grid figure:hover img { transform: scale(1.035); filter: saturate(1) contrast(1.03); }
.subpage--speaking .stage-grid figcaption {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  margin: 0;
  padding: 28px 18px 14px;
  color: rgba(244, 240, 231, 0.9);
  background: linear-gradient(180deg, transparent, rgba(7, 9, 13, 0.9));
}
.subpage--speaking .section-head { margin-top: 76px !important; }
.subpage--speaking .section-head .kicker {
  font-family: var(--display);
  font-size: clamp(2.25rem, 4.8vw, 4.5rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: none;
}
.subpage--speaking .row {
  grid-template-columns: 112px minmax(0, 1fr) 140px;
  gap: 26px;
  padding: 25px 12px;
}
.subpage--speaking .row .what { font-family: var(--serif); font-size: 0.98rem; font-weight: 400; line-height: 1.67; color: #333843; }
.subpage--speaking .row .what strong { font-family: var(--display); font-size: 1.08rem; color: var(--ink); }
.subpage--speaking .row .where { text-align: right; font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.08em; text-transform: uppercase; }
.subpage--speaking .grid--3 .card { border-radius: 0; border-top-color: rgba(201, 172, 114, 0.68); }
.subpage--speaking .poster-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 12px; align-items: start; }
.subpage--speaking .poster-grid img { grid-column: span 2; border-radius: 0; filter: saturate(0.9); }

/* About reads as a dossier, not a stack of generic cards. */
.subpage--about .bio-grid { grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.78fr); gap: clamp(44px, 6vw, 82px); }
.subpage--about .about-portrait .portrait { aspect-ratio: 4 / 5.2; border-radius: 0; border-color: rgba(23, 26, 33, 0.18); background: #0c1017; box-shadow: 0 32px 70px -40px rgba(10, 13, 20, 0.86); }
.subpage--about .about-portrait .portrait img { width: 100%; height: 100%; object-fit: cover; }
.subpage--about .about-dossier .cred { border-radius: 0; border-top-color: rgba(201, 172, 114, 0.62); }
.subpage--about .about-note { border-radius: 0; background: rgba(255, 253, 248, 0.72); }
.subpage--about .about-next { border-radius: 0; }

/* Contact keeps the ethical separation visually unmistakable. */
.subpage--contact .routes--contact { gap: 1px; padding: 1px; background: rgba(23, 26, 33, 0.13); }
.subpage--contact .contact-route { border-radius: 0; border: 0; border-top: 1px solid rgba(201, 172, 114, 0.6); box-shadow: none; }
.subpage--contact .contact-route:hover { transform: none; }
.subpage--contact .contact-coordinates { border-radius: 0; }
.subpage--contact .contact-smallprint { margin-bottom: 24px; }

/* Notes and legal pages use the same editorial grid at quieter volume. */
.subpage--notes .notes-list { border-top: 1px solid var(--line-brass); }
.subpage--notes .note { padding-top: 38px; padding-bottom: 38px; }
.subpage--notes .note:first-child { border-top: 0; }
.subpage--notes .note h3 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); font-weight: 500; }
.subpage--legal .legal {
  max-width: 900px;
  padding: clamp(34px, 6vw, 78px);
  border: 1px solid rgba(23, 26, 33, 0.13);
  border-top-color: rgba(201, 172, 114, 0.68);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 34px 78px -54px rgba(10, 13, 20, 0.72);
}
.subpage--legal .legal h2 { font-family: var(--display); font-size: clamp(1.55rem, 2.7vw, 2.15rem); font-weight: 500; line-height: 1.18; }
.subpage--legal .legal h2:not(:first-child) { margin-top: 2.35em; padding-top: 0.8em; border-top: 1px solid var(--line); }
.subpage--legal .legal p { margin-top: 1em; color: var(--text-2); }

@media (max-width: 960px) {
  .subpage-hero { min-height: 720px; }
  .subpage-hero__copy { width: min(650px, 70%); }
  .subpage-hero--about .subpage-hero__media img { object-position: 76% 42%; }
  .subpage--speaking .stage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 250px; }
  .subpage--speaking .stage-grid figure:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .subpage--speaking .stage-grid figure:nth-child(1) { grid-column: 1 / -1; grid-row: span 2; }
  .subpage--speaking .poster-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .subpage--speaking .poster-grid img { grid-column: auto; }
}

@media (max-width: 720px) {
  .subpage { background-size: 48px 48px; }
  .subpage-hero { min-height: 690px; }
  .subpage-hero::before { top: 108px; }
  .subpage-hero__shell { align-items: flex-end; padding-top: 178px; padding-bottom: 48px; }
  .subpage-hero__copy { width: 100%; }
  .subpage-hero__copy h1,
  .subpage-hero--compact .subpage-hero__copy h1 { font-size: clamp(3.75rem, 17vw, 5.55rem); }
  .subpage-hero__copy > p { max-width: 34ch; margin-top: 26px; font-size: 0.94rem; }
  .subpage-hero__folio { margin-top: 28px; }
  .subpage-hero__folio span:last-child { display: none; }
  .subpage-hero__media img { object-position: 62% center; }
  .subpage-hero__shade {
    background:
      linear-gradient(180deg, rgba(7, 9, 13, 0.37), rgba(7, 9, 13, 0.72) 44%, rgba(7, 9, 13, 0.97) 100%),
      linear-gradient(90deg, rgba(7, 9, 13, 0.78), rgba(7, 9, 13, 0.22));
  }
  .subpage-hero--offc .subpage-hero__media img { object-position: 63% center; }
  .subpage-hero--offc .subpage-hero__shade,
  .subpage-hero--about .subpage-hero__shade {
    background: linear-gradient(180deg, rgba(7, 9, 13, 0.28), rgba(7, 9, 13, 0.72) 42%, rgba(7, 9, 13, 0.98) 100%);
  }
  .subpage-hero--about .subpage-hero__media img { object-position: 64% 26%; }
  .subpage main > .section:first-child { padding-top: 62px !important; }
  .subpage--speaking .stage-grid { grid-template-columns: 1fr; grid-auto-rows: 270px; margin-bottom: 68px; }
  .subpage--speaking .stage-grid figure:nth-child(n),
  .subpage--speaking .stage-grid figure:nth-child(1) { grid-column: 1; grid-row: span 1; }
  .subpage--speaking .stage-grid figure:nth-child(1) { min-height: 390px; }
  .subpage--speaking .section-head .kicker { font-size: clamp(2.25rem, 12vw, 3.4rem); }
  .subpage--speaking .row { grid-template-columns: 1fr; gap: 8px; padding: 24px 2px; }
  .subpage--speaking .row .where { text-align: left; }
  .subpage--speaking .poster-grid { display: flex; max-width: 100%; overflow-x: auto; gap: 12px; padding-bottom: 18px; scroll-snap-type: x mandatory; }
  .subpage--speaking .poster-grid img { flex: 0 0 72%; scroll-snap-align: start; }
  .subpage--about .bio-grid { grid-template-columns: 1fr; }
  .subpage--about .about-portrait { width: 100%; max-width: 520px; }
  .subpage--contact .routes--contact { grid-template-columns: 1fr; }
  .subpage--contact .contact-route { padding: 38px 28px; }
  .subpage--legal .legal { padding: 30px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .subpage-hero__media img { animation: none; transform: none; }
}

/* ---------- hero credits: single billing row, film-poster style ---------- */
.hero-credits {
  margin-top: 46px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 940px;
  padding-top: 22px;
  border-top: 1px solid rgba(242, 238, 227, 0.18);
  animation: rise 1s 1.15s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero-credits__item {
  display: grid;
  gap: 8px;
  align-content: start;
  text-decoration: none;
}
.hero-credits__item--right { text-align: right; justify-items: end; }
.hero-credits__item .lbl {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass-2);
}
.hero-credits__item .ttl {
  font-family: var(--serif);
  font-size: 1.04rem;
  line-height: 1.4;
  color: #f2eee3;
  max-width: 34ch;
  transition: color 0.3s;
}
.hero-credits__item .mark {
  font-family: var(--sans);
  font-size: 0.85em;
  color: var(--brass-2);
  display: inline-block;
  transition: transform 0.25s;
}
.hero-credits__item:hover .ttl { color: #ffffff; }
.hero-credits__item:hover .mark { transform: translateX(4px); }
.hero-credits__item--right:hover .mark { transform: translate(3px, -3px); }
@media (max-width: 720px) {
  .hero-credits { grid-template-columns: 1fr; gap: 24px; margin-top: 36px; }
  .hero-credits__item--right { text-align: left; justify-items: start; }
}
@media (prefers-reduced-motion: reduce) { .hero-credits { animation: none; } }
