/* ============================================================================
   Axis — SWISS / INTERNATIONAL TYPOGRAPHIC STYLE. Deliberately the opposite of a
   glass/gradient "AI landing page": flat white canvas, pure black ink, ONE red accent,
   a visible underlying column grid, hairline rules instead of shadows, sharp rectangles
   instead of pills, and the SYSTEM sans stack (Helvetica Neue / Arial) instead of a
   trendy webfont — no Google Font is loaded at all. Precision over decoration. Article
   wrapper = .ax-rt.
   ========================================================================== */
:root {
  --ax-bg: #ffffff;
  --ax-ink: #0a0a0a;
  --ax-ink-2: #4a4a4a;
  --ax-ink-3: #8a8a8a;
  --ax-accent: #e8341f;          /* the one Swiss red */
  --ax-line: #0a0a0a;
  --ax-line-soft: #d8d8d8;
  --ax-surface: #f4f4f2;
  --ax-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ax-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ax-mono: "Courier New", Courier, monospace;
  --ax-maxw: 1240px;
  --ax-gut: 26px;
  --ax-r: 0px;
  --ax-r-lg: 0px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; color: var(--ax-ink); background: var(--ax-bg); font-family: var(--ax-body); font-size: 17px; line-height: 1.5; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-style: normal; color: var(--ax-accent); }
.ax-wrap { max-width: var(--ax-maxw); margin: 0 auto; padding: 0 var(--ax-gut); position: relative; z-index: 1; }

/* The underlying column grid — visible, hairline verticals. This REPLACES the blurred
   blob background other bases use; the 5 .ax-blob spans still exist in the markup
   (shared across every glass base) but are switched off here; the grid line pattern
   lives on the wrapper itself. */
.ax-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: repeating-linear-gradient(90deg, var(--ax-line-soft) 0, var(--ax-line-soft) 1px, transparent 1px, transparent calc((100% - 52px) / 12));
  background-position: center top; background-size: min(var(--ax-maxw), calc(100% - 52px)) 100%; background-repeat: repeat-y;
  opacity: .55;
}
.ax-blob { display: none; }

/* placeholder — flat duotone block (no gradient sheen, just a solid tint + number) */
.ax-ph { display: block; width: 100%; height: 100%; background: var(--ax-surface); position: relative; border: 1px solid var(--ax-line); }
.ax-ph::after { content: ""; position: absolute; inset: 10px; border: 1px solid var(--ax-line-soft); }
.ax-ph.c1, .ax-ph.c2, .ax-ph.c3, .ax-ph.c4, .ax-ph.c5, .ax-ph.c6 { background: var(--ax-surface); }

/* "glass" utility → flat bordered panel, sharp corners, no blur, no shadow */
.ax-glass { background: var(--ax-bg); backdrop-filter: none; border: 1px solid var(--ax-line); box-shadow: none; border-radius: 0; }

/* ---------- pills → tags. buttons → rectangles. ---------- */
.ax-chip { display: inline-flex; align-items: center; gap: 7px; font-family: var(--ax-body); font-weight: 700; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; padding: 5px 10px; border: 1px solid var(--ax-line); color: var(--ax-ink); border-radius: 0; }
.ax-chip.accent { background: var(--ax-accent); color: #fff; border-color: var(--ax-accent); }
.ax-btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--ax-body); font-weight: 700; font-size: 14px; letter-spacing: .02em; padding: 14px 26px; border-radius: 0; border: 1px solid var(--ax-ink); background: var(--ax-ink); color: #fff; cursor: pointer; transition: background .12s, color .12s; }
.ax-btn:hover { background: var(--ax-accent); border-color: var(--ax-accent); }
.ax-btn.glass { background: transparent; border: 1px solid var(--ax-ink); color: var(--ax-ink); }
.ax-btn.glass:hover { background: var(--ax-ink); color: #fff; }
.ax-btn .ar { transition: transform .15s ease; }
.ax-btn:hover .ar { transform: translateX(3px); }

/* ---------- nav — plain bar, bottom hairline, NOT a floating pill ---------- */
.ax-nav-outer { position: sticky; top: 0; z-index: 50; padding: 0; margin-top: 0; background: var(--ax-bg); border-bottom: 1px solid var(--ax-line); }
.ax-nav { max-width: var(--ax-maxw); margin: 0 auto; display: flex; align-items: center; gap: 20px; padding: 18px var(--ax-gut); border-radius: 0; background: transparent; border: 0; box-shadow: none; }
.ax-brand { display: flex; align-items: center; gap: 10px; font-family: var(--ax-display); font-weight: 700; font-size: 21px; letter-spacing: -0.01em; color: var(--ax-ink); text-transform: uppercase; }
.ax-brand .ax-logo { width: 26px; height: 26px; }
.ax-nav-links { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.ax-nav-links a { font-weight: 600; font-size: 14px; padding: 9px 14px; border-radius: 0; color: var(--ax-ink-2); transition: color .12s; text-transform: uppercase; letter-spacing: .03em; }
.ax-nav-links a:hover { color: var(--ax-accent); }
.ax-nav-links a.is-active { color: var(--ax-accent); }
.ax-nav-cta { margin-left: 6px; }
.ax-nav .ax-btn { padding: 10px 20px; font-size: 13px; }

/* ---------- shared bits ---------- */
.ax-kicker { display: inline-block; font-family: var(--ax-mono); font-weight: 700; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ax-accent); }
.ax-meta { font-weight: 500; font-size: 13px; color: var(--ax-ink-3); font-family: var(--ax-mono); }
.ax-more { font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .04em; color: var(--ax-ink); display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--ax-ink); padding-bottom: 2px; }
.ax-more .ar { transition: transform .15s ease; }
.ax-more:hover { color: var(--ax-accent); border-color: var(--ax-accent); }
.ax-more:hover .ar { transform: translateX(4px); }

/* ---------- section frame ---------- */
.ax-sec { padding: 64px 0; position: relative; border-top: 1px solid var(--ax-line); }
.ax-sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 34px; }
.ax-sec-head h2 { font-family: var(--ax-display); font-size: clamp(30px, 4vw, 46px); font-weight: 700; letter-spacing: -0.01em; margin: 0; line-height: 1; text-transform: uppercase; }
.ax-sec-head .ax-sub { color: var(--ax-ink-3); font-weight: 500; margin: 8px 0 0; font-family: var(--ax-mono); font-size: 13px; }

/* ---------- hero — oversized poster type, flush-left, ragged-right ---------- */
.ax-hero { padding: 54px 0 0; text-align: left; position: relative; border-top: 0; }
.ax-hero-inner { max-width: 900px; margin: 0; }
.ax-hero .ax-chip { margin-bottom: 26px; }
.ax-hero h1 { font-family: var(--ax-display); font-size: clamp(40px, 7vw, 92px); line-height: .96; letter-spacing: -0.02em; font-weight: 700; margin: 0; text-transform: uppercase; }
.ax-hero .ax-lead { font-size: clamp(17px, 1.6vw, 19px); color: var(--ax-ink-2); margin: 26px 0 0; max-width: 56ch; line-height: 1.55; border-left: 3px solid var(--ax-accent); padding-left: 18px; }
.ax-hero-cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.ax-hero-card { max-width: none; margin: 50px 0 0; padding: 0; border-top: 1px solid var(--ax-line); padding-top: 40px; }
.ax-hero-card-in { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; border-radius: 0; overflow: visible; }
.ax-hero-card-fig { aspect-ratio: 16/11; overflow: hidden; border-radius: 0; border: 1px solid var(--ax-line); }
.ax-hero-card-fig .ax-ph, .ax-hero-card-fig img { width: 100%; height: 100%; object-fit: cover; }
.ax-hero-card-body { padding: 0; display: flex; flex-direction: column; justify-content: center; text-align: left; }
.ax-hero-card-body .ax-chip { align-self: flex-start; margin-bottom: 16px; }
.ax-hero-card-body h3 { font-family: var(--ax-display); font-size: clamp(24px, 2.8vw, 34px); font-weight: 700; line-height: 1.05; letter-spacing: -0.01em; margin: 0 0 14px; text-transform: uppercase; }
.ax-hero-card-body p { color: var(--ax-ink-2); font-size: 15px; margin: 0 0 18px; }
.ax-hero-card-body .ax-meta { margin-top: auto; }
@media (max-width: 760px) { .ax-hero-card-in { grid-template-columns: 1fr; } .ax-hero-card-fig { aspect-ratio: 16/9; } }

/* ---------- featured grid — sharp bordered cards, numbered ---------- */
.ax-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--ax-line); border-left: 1px solid var(--ax-line); }
.ax-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; position: relative; border-right: 1px solid var(--ax-line); border-bottom: 1px solid var(--ax-line); transition: background .12s ease; }
.ax-card:hover { background: var(--ax-surface); }
.ax-card-fig { position: relative; aspect-ratio: 16/11; overflow: hidden; border-radius: 0; border-bottom: 1px solid var(--ax-line); }
.ax-card-fig .ax-ph, .ax-card-fig img { width: 100%; height: 100%; object-fit: cover; }
.ax-card-fig .ax-chip { position: absolute; top: 0; left: 0; border-top: 0; border-left: 0; }
.ax-card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.ax-card h3 { font-family: var(--ax-display); font-size: 19px; line-height: 1.2; font-weight: 700; letter-spacing: -0.005em; margin: 0; }
.ax-card:hover h3 { color: var(--ax-accent); }
.ax-card .ax-meta { margin-top: auto; }
@media (max-width: 900px) { .ax-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ax-grid { grid-template-columns: 1fr; } }

/* ---------- collections → a numbered Swiss index list, not icon+gradient tiles ---------- */
.ax-collections { display: flex; flex-direction: column; border-top: 1px solid var(--ax-line); }
.ax-coll { display: flex; align-items: center; gap: 22px; padding: 20px 4px; border-bottom: 1px solid var(--ax-line); transition: background .12s ease; }
.ax-coll:hover { background: var(--ax-surface); }
.ax-coll-ic { width: 46px; flex: none; font-family: var(--ax-mono); font-weight: 700; font-size: 15px; color: var(--ax-accent); background: none !important; border-radius: 0; display: block; }
.ax-coll h4 { font-family: var(--ax-display); font-size: 21px; font-weight: 700; margin: 0; text-transform: uppercase; letter-spacing: -0.005em; }
.ax-coll span { font-size: 13px; color: var(--ax-ink-3); font-weight: 600; font-family: var(--ax-mono); }
.ax-coll > span:last-child { margin-left: auto; }

/* ---------- map ---------- */
.ax-mapwrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
.ax-mapwrap .ax-intro h2 { font-family: var(--ax-display); font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; letter-spacing: -0.01em; margin: 14px 0 0; line-height: 1.02; text-transform: uppercase; }
.ax-mapwrap .ax-intro p { color: var(--ax-ink-2); margin: 16px 0 0; max-width: 34ch; }
@media (max-width: 860px) { .ax-mapwrap { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- CTA ---------- */
.ax-cta-box { padding: 54px 0; text-align: left; position: relative; overflow: hidden; border-top: 1px solid var(--ax-line); border-bottom: 1px solid var(--ax-line); }
.ax-cta-box h2 { font-family: var(--ax-display); font-size: clamp(30px, 4vw, 48px); font-weight: 700; letter-spacing: -0.01em; margin: 0; line-height: 1.02; text-transform: uppercase; }
.ax-cta-box p { color: var(--ax-ink-2); margin: 14px 0 0; max-width: 48ch; font-weight: 500; }
.ax-cta-form { margin: 26px 0 0; display: flex; gap: 0; max-width: 480px; flex-wrap: wrap; }
.ax-cta-form input { flex: 1; min-width: 200px; font-family: var(--ax-body); font-size: 15px; padding: 14px 16px; border-radius: 0; border: 1px solid var(--ax-ink); border-right: 0; background: var(--ax-bg); color: var(--ax-ink); outline: none; }
.ax-cta-form input:focus { border-color: var(--ax-accent); }
.ax-cta-form .ax-btn { border-radius: 0; }

/* ---------- footer ---------- */
.ax-foot { margin-top: 0; padding: 0 var(--ax-gut) 40px; position: relative; z-index: 1; }
.ax-foot-in { max-width: var(--ax-maxw); margin: 0 auto; padding: 44px 0 0; }
.ax-foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.ax-foot-brand { display: flex; align-items: center; gap: 10px; font-family: var(--ax-display); font-weight: 700; font-size: 22px; color: var(--ax-ink); text-transform: uppercase; }
.ax-foot-brand + p { color: var(--ax-ink-3); font-size: 14px; margin: 14px 0 0; max-width: 30ch; font-weight: 500; }
.ax-foot h5 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ax-ink-3); margin: 0 0 14px; font-family: var(--ax-mono); }
.ax-foot a { display: block; padding: 5px 0; font-size: 14.5px; color: var(--ax-ink-2); font-weight: 600; transition: color .12s; }
.ax-foot a:hover { color: var(--ax-accent); }
.ax-foot-bottom { margin-top: 36px; padding: 18px 0; border-top: 1px solid var(--ax-line); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 12.5px; color: var(--ax-ink-3); font-weight: 500; font-family: var(--ax-mono); }
@media (max-width: 820px) { .ax-foot-top { grid-template-columns: 1fr 1fr; gap: 26px; } }

/* ============================================================
   Single post
   ============================================================ */
.ax-article { padding-top: 40px; }
.ax-crumb { display: flex; flex-wrap: wrap; gap: 8px; font-weight: 600; font-size: 12.5px; color: var(--ax-ink-3); font-family: var(--ax-mono); text-transform: uppercase; letter-spacing: .03em; }
.ax-crumb a:hover { color: var(--ax-accent); }
.ax-art-head { max-width: 900px; margin: 24px 0 0; text-align: left; }
.ax-art-head h1 { font-family: var(--ax-display); font-size: clamp(32px, 5.4vw, 62px); line-height: .98; letter-spacing: -0.01em; font-weight: 700; margin: 18px 0 0; text-transform: uppercase; }
.ax-art-head .ax-standfirst { font-size: clamp(17px, 1.7vw, 19px); line-height: 1.55; color: var(--ax-ink-2); margin: 22px 0 0; max-width: 62ch; border-left: 3px solid var(--ax-accent); padding-left: 18px; }
.ax-art-meta { margin: 24px 0 0; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-family: var(--ax-mono); }
.ax-art-meta .who { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; }
.ax-art-meta .ax-ava { width: 30px; height: 30px; border-radius: 0; background: var(--ax-ink); }
.ax-art-meta .sep { color: var(--ax-ink-3); }
.ax-art-fig { margin: 34px 0 0; padding: 0; border: 1px solid var(--ax-line); }
.ax-art-fig .ax-ph, .ax-art-fig img { width: 100%; aspect-ratio: 16/8; object-fit: cover; border-radius: 0; }

.ax-art-body { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 46px; margin: 46px 0 0; align-items: start; }

/* Table of contents — REQUIRED */
.ax-toc { position: sticky; top: 76px; align-self: start; padding: 0 0 0 20px; border-left: 1px solid var(--ax-line); }
.ax-toc-h { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ax-ink-3); margin-bottom: 14px; font-family: var(--ax-mono); }
.ax-toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.ax-toc li { counter-increment: toc; }
.ax-toc a { display: grid; grid-template-columns: 22px 1fr; gap: 6px; padding: 7px 0; margin: 0; border-radius: 0; font-weight: 600; font-size: 13.5px; line-height: 1.3; color: var(--ax-ink-2); transition: color .12s; }
.ax-toc a::before { content: counter(toc, decimal-leading-zero); font-family: var(--ax-mono); font-size: 11px; color: var(--ax-accent); font-weight: 700; }
.ax-toc a:hover { color: var(--ax-ink); }
.ax-toc a.is-active { color: var(--ax-accent); }

/* article richtext (.ax-rt) — flat, no card surface, just the wrap's max-width */
.ax-rt { background: transparent; backdrop-filter: none; border: 0; border-radius: 0; box-shadow: none; padding: 0; font-size: 18px; line-height: 1.7; color: var(--ax-ink); }
.ax-rt > *:first-child { margin-top: 0; }
.ax-rt p { margin: 0 0 1.3em; color: #222; }
.ax-rt > p:first-of-type { font-size: 20px; color: var(--ax-ink); }
.ax-rt h2 { font-family: var(--ax-display); font-size: 27px; font-weight: 700; letter-spacing: -0.005em; line-height: 1.15; margin: 1.7em 0 .5em; text-transform: uppercase; padding-top: .6em; border-top: 1px solid var(--ax-line); }
.ax-rt h3 { font-family: var(--ax-display); font-size: 19px; font-weight: 700; margin: 1.6em 0 .4em; }
.ax-rt a { color: var(--ax-ink); font-weight: 700; text-decoration: underline; text-decoration-color: var(--ax-accent); text-underline-offset: 3px; text-decoration-thickness: 2px; }
.ax-rt ul, .ax-rt ol { margin: 0 0 1.3em; padding-left: 0; list-style: none; }
.ax-rt ul li, .ax-rt ol li { margin: .6em 0; padding-left: 1.8em; position: relative; color: #222; }
.ax-rt ul li::before { content: "—"; position: absolute; left: 0; color: var(--ax-accent); font-weight: 700; }
.ax-rt ol { counter-reset: li; }
.ax-rt ol li { counter-increment: li; }
.ax-rt ol li::before { content: counter(li, decimal-leading-zero); position: absolute; left: 0; font-family: var(--ax-mono); font-weight: 700; font-size: .85em; color: var(--ax-accent); }
.ax-rt blockquote { margin: 1.8em 0; padding: 24px 0 24px 26px; background: none; border: 0; border-left: 3px solid var(--ax-accent); border-radius: 0; font-family: var(--ax-display); font-size: 23px; line-height: 1.3; font-weight: 700; color: var(--ax-ink); text-transform: uppercase; }
.ax-rt blockquote p { margin: 0; }
.ax-rt img { margin: 1.8em 0; border-radius: 0; border: 1px solid var(--ax-line); }
.ax-rt figure { margin: 1.8em 0; }
.ax-rt figcaption { font-weight: 600; font-size: 13px; color: var(--ax-ink-3); margin-top: 10px; font-family: var(--ax-mono); }
.ax-rt code { font-family: var(--ax-mono); font-size: .88em; background: var(--ax-surface); padding: 2px 7px; border: 1px solid var(--ax-line-soft); border-radius: 0; }
.ax-rt hr { border: 0; height: 1px; background: var(--ax-line); margin: 2.4em 0; }

.ax-endmark { max-width: none; margin: 40px 0 0; padding-top: 24px; border-top: 1px solid var(--ax-line); display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.ax-share { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.ax-share .lbl { font-weight: 700; font-size: 12.5px; color: var(--ax-ink-3); font-family: var(--ax-mono); text-transform: uppercase; }
.ax-share a { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 0; background: transparent; border: 1px solid var(--ax-line); font-weight: 700; font-size: 12.5px; transition: background .12s, color .12s; }
.ax-share a:hover { background: var(--ax-ink); color: #fff; }

.ax-art-body.no-toc { grid-template-columns: minmax(0, 760px); justify-content: start; }
@media (max-width: 880px) { .ax-art-body { grid-template-columns: 1fr; gap: 26px; } .ax-toc { position: static; border-left: 0; border-top: 1px solid var(--ax-line); padding: 18px 0 0; } }

.ax-related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--ax-line); border-left: 1px solid var(--ax-line); }
@media (max-width: 820px) { .ax-related { grid-template-columns: 1fr; } }

/* ---------- archive / blog — a literal Swiss "tabular index": big numerals, hairline
   dividers, NOT a card grid, NOT a row-list-with-icons, NOT a masonry. ---------- */
.ax-arch-head { padding: 50px 0 0; text-align: left; }
.ax-arch-head .ax-chip { margin-bottom: 18px; }
.ax-arch-head h1 { font-family: var(--ax-display); font-size: clamp(38px, 6vw, 78px); letter-spacing: -0.01em; line-height: .96; font-weight: 700; margin: 0; text-transform: uppercase; }
.ax-arch-head p { color: var(--ax-ink-2); max-width: 56ch; margin: 20px 0 0; font-size: 17px; border-left: 3px solid var(--ax-accent); padding-left: 16px; }
.ax-filter { display: flex; gap: 0; flex-wrap: wrap; margin: 36px 0 0; border-top: 1px solid var(--ax-line); border-left: 1px solid var(--ax-line); }
.ax-filter a { font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em; padding: 11px 18px; background: var(--ax-bg); border-right: 1px solid var(--ax-line); border-bottom: 1px solid var(--ax-line); color: var(--ax-ink-2); transition: color .12s, background .12s; }
.ax-filter a:hover { color: var(--ax-ink); background: var(--ax-surface); }
.ax-filter a.on { background: var(--ax-ink); color: #fff; }

.ax-index-list { margin-top: 10px; border-top: 1px solid var(--ax-line); }
.ax-index-row { display: grid; grid-template-columns: 44px 74px minmax(0,1fr) auto; gap: 20px; align-items: center; padding: 16px 4px; border-bottom: 1px solid var(--ax-line); transition: background .12s ease; }
.ax-index-row:hover { background: var(--ax-surface); }
.ax-index-num { font-family: var(--ax-mono); font-weight: 700; font-size: 15px; color: var(--ax-accent); }
.ax-index-fig { display: block; width: 74px; height: 74px; overflow: hidden; border: 1px solid var(--ax-line); flex: none; }
.ax-index-fig .ax-ph, .ax-index-fig img { width: 100%; height: 100%; object-fit: cover; }
.ax-index-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.ax-index-cat { font-family: var(--ax-mono); font-weight: 700; font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--ax-ink-3); }
.ax-index-title { font-family: var(--ax-display); font-size: clamp(17px,1.9vw,21px); font-weight: 700; line-height: 1.2; margin: 0; }
.ax-index-row:hover .ax-index-title { color: var(--ax-accent); }
.ax-index-meta { font-family: var(--ax-mono); font-size: 12.5px; color: var(--ax-ink-3); white-space: nowrap; }
@media (max-width: 700px) { .ax-index-row { grid-template-columns: 30px 52px minmax(0,1fr); } .ax-index-fig { width: 52px; height: 52px; } .ax-index-meta { display: none; } }

.ax-pagination { display: flex; gap: 0; margin: 0; flex-wrap: wrap; border-left: 1px solid var(--ax-line); }
.ax-pagination .page-numbers { min-width: 44px; text-align: center; padding: 12px 15px; border-radius: 0; background: var(--ax-bg); border-right: 1px solid var(--ax-line); border-bottom: 1px solid var(--ax-line); font-weight: 700; font-size: 13px; color: var(--ax-ink-2); font-family: var(--ax-mono); }
.ax-pagination .page-numbers.current { background: var(--ax-ink); color: #fff; }
.ax-pagination a.page-numbers:hover { color: var(--ax-accent); }
.ax-empty { padding: 60px 0; text-align: left; color: var(--ax-ink-3); font-weight: 600; border-top: 1px solid var(--ax-line); }

/* ---------- pages ---------- */
.ax-page { padding: 50px 0 20px; }
.ax-page-lead { max-width: 780px; margin: 0; text-align: left; }
.ax-page-lead .ax-chip { margin-bottom: 16px; }
.ax-page-lead h1 { font-family: var(--ax-display); font-size: clamp(34px, 5vw, 60px); line-height: .98; letter-spacing: -0.01em; font-weight: 700; margin: 0; text-transform: uppercase; }
.ax-page-body { max-width: 780px; margin: 32px 0 0; padding: 34px 0 0; font-size: 17px; line-height: 1.7; border-top: 1px solid var(--ax-line); }
.ax-page-body .blj-lead, .ax-page-body > p:first-child { font-size: 19px; color: var(--ax-ink); }
.ax-page-body p { color: #222; margin: 0 0 1.2em; }
.ax-page-body h2 { font-family: var(--ax-display); font-size: 24px; font-weight: 700; letter-spacing: -0.005em; margin: 1.7em 0 .5em; text-transform: uppercase; }
.ax-page-body h3 { font-family: var(--ax-display); font-size: 18px; font-weight: 700; margin: 1.5em 0 .4em; }
.ax-page-body ul { padding-left: 0; list-style: none; }
.ax-page-body li { margin: .6em 0; padding-left: 1.7em; position: relative; color: #222; }
.ax-page-body ul li::before { content: "—"; position: absolute; left: 0; color: var(--ax-accent); font-weight: 700; }
.ax-page-body a { color: var(--ax-ink); font-weight: 700; text-decoration: underline; text-decoration-color: var(--ax-accent); text-underline-offset: 3px; }
.ax-page-body strong { font-weight: 700; }
.blj-chips { display: flex; flex-wrap: wrap; gap: 0; margin: 8px 0 1.4em; border-top: 1px solid var(--ax-line); border-left: 1px solid var(--ax-line); }
.blj-chips span { font-weight: 700; font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; padding: 8px 14px; background: var(--ax-bg); border-right: 1px solid var(--ax-line); border-bottom: 1px solid var(--ax-line); }
.blj-info-card { margin: 1.7em 0; padding: 22px; border-radius: 0; background: var(--ax-surface); border: 1px solid var(--ax-line); border-left: 3px solid var(--ax-accent); }
.blj-info-card h3 { margin: 0 0 6px; }
.blj-info-card a { font-weight: 700; font-size: 16px; }
.blj-note { color: var(--ax-ink-3); font-family: var(--ax-mono); font-size: 13px; }

/* ---------- The Map ---------- */
.blj-map { padding: 0; background: transparent; backdrop-filter: none; border: 0; border-radius: 0; box-shadow: none; }
.blj-map-title { font-family: var(--ax-display); font-size: 16px; font-weight: 700; margin: 0 0 16px; text-transform: uppercase; letter-spacing: .02em; padding-bottom: 14px; border-bottom: 1px solid var(--ax-line); }
.blj-map-search { position: relative; margin: 0 0 16px; }
.blj-map-search input { width: 100%; padding: 12px 42px 12px 0; border: 0; border-bottom: 1px solid var(--ax-line); background: transparent; font-family: var(--ax-body); font-size: 14px; color: var(--ax-ink); outline: none; border-radius: 0; }
.blj-map-search input:focus { border-color: var(--ax-accent); }
.blj-map-search svg { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); color: var(--ax-ink-3); }
.blj-map-list { display: flex; flex-direction: column; gap: 0; max-height: 440px; overflow: auto; }
.blj-map-dir { display: flex; align-items: center; justify-content: space-between; padding: 14px 4px; background: var(--ax-ink); color: #fff; border-radius: 0; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .03em; padding-left: 12px; padding-right: 12px; }
.blj-map-entry { display: flex; flex-direction: column; gap: 2px; padding: 13px 4px; border-radius: 0; background: transparent; border-bottom: 1px solid var(--ax-line-soft); transition: background .12s ease; }
.blj-map-entry:hover { background: var(--ax-surface); }
.blj-map-anchor { font-family: var(--ax-display); font-weight: 700; font-size: 15px; color: var(--ax-ink); }
.blj-map-anchor:hover { color: var(--ax-accent); }
.blj-map-host { display: inline-flex; align-items: center; gap: 4px; font-weight: 700; font-size: 12px; color: var(--ax-accent); font-family: var(--ax-mono); }
.blj-map-src { font-size: 12px; color: var(--ax-ink-3); font-weight: 500; font-family: var(--ax-mono); }
.blj-map-src:hover { color: var(--ax-ink); }
.blj-map-empty { color: var(--ax-ink-3); padding: 16px 4px; font-weight: 600; }

/* ============================================================
   Motion — precise and minimal, NOT floaty. Quick opacity-only fades, no translate,
   no springy easing. Gated on reduced-motion + ?noanim.
   ============================================================ */
.js-reveal .ax-reveal, .js-reveal .ax-sec-head, .js-reveal .ax-card, .js-reveal .ax-coll,
.js-reveal .ax-mapwrap > *, .js-reveal .ax-cta-box, .js-reveal .ax-hero-card,
.js-reveal .ax-arch-head, .js-reveal .ax-filter, .js-reveal .ax-art-head, .js-reveal .ax-art-fig,
.js-reveal .ax-index-row {
  opacity: 0;
  transition: opacity .28s linear;
}
.js-reveal .is-in { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-reveal .ax-reveal, .js-reveal .ax-sec-head, .js-reveal .ax-card, .js-reveal .ax-coll,
  .js-reveal .ax-mapwrap > *, .js-reveal .ax-cta-box, .js-reveal .ax-hero-card,
  .js-reveal .ax-arch-head, .js-reveal .ax-filter, .js-reveal .ax-art-head, .js-reveal .ax-art-fig,
  .js-reveal .ax-index-row { opacity: 1; transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 720px) {
  :root { --ax-gut: 16px; }
  .ax-nav-links { display: none; }
  .ax-sec-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}
