/* ============================================================================
   Strata — MATERIAL DESIGN. Real elevation, not blur: layered box-shadows on opaque
   surfaces, Material's own corner-radius scale (4 / 12 / 16 / 28), a genuine primary +
   surface colour system, a circular FAB, and Roboto — the actual Material typeface.
   Zero backdrop-filter anywhere; depth comes from shadow tokens, exactly like the real
   spec. Article wrapper = .st-rt.
   ========================================================================== */
:root {
  --st-bg: #f6f6fb;
  --st-surface: #ffffff;
  --st-surface-2: #eef0fa;
  --st-ink: #1c1b1f;
  --st-ink-2: #49454f;
  --st-ink-3: #79747e;
  --st-primary: #4355d0;         /* Material-style indigo primary */
  --st-primary-ink: #ffffff;
  --st-primary-container: #e0e2ff;
  --st-secondary: #00695c;       /* teal secondary accent */
  --st-line: #dcdae2;
  --st-display: "Roboto", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --st-body: "Roboto", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --st-maxw: 1180px;
  --st-gut: 24px;
  /* Material's own radius scale */
  --st-r-sm: 8px;
  --st-r-md: 12px;
  --st-r-lg: 16px;
  --st-r-xl: 28px;
  --st-r: 16px;
  --st-r-lg2: 28px;
  /* Material elevation tokens (dp1 / dp3 / dp6 / dp8), shadow only — no blur filter */
  --st-e1: 0 1px 2px rgba(28,27,31,.14), 0 1px 3px 1px rgba(28,27,31,.08);
  --st-e2: 0 1px 2px rgba(28,27,31,.16), 0 2px 6px 2px rgba(28,27,31,.1);
  --st-e3: 0 4px 8px 3px rgba(28,27,31,.1), 0 1px 3px rgba(28,27,31,.16);
  --st-e4: 0 6px 10px 4px rgba(28,27,31,.1), 0 2px 3px rgba(28,27,31,.18);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; color: var(--st-ink); background: var(--st-bg); font-family: var(--st-body); font-size: 16px; line-height: 1.6; -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(--st-primary); font-weight: 700; }
.st-wrap { max-width: var(--st-maxw); margin: 0 auto; padding: 0 var(--st-gut); position: relative; z-index: 1; }

/* No blurred blobs — Material depth comes from elevation shadow, not effects. The
   .st-blob spans stay in the shared markup for structural parity, switched off here. */
.st-bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; background: var(--st-bg); }
.st-blob { display: none; }

/* placeholder — flat tonal surface block, no gradient sheen */
.st-ph { display: block; width: 100%; height: 100%; background: var(--st-surface-2); position: relative; }
.st-ph::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px var(--st-line); }
.st-ph.c1 { background: #e3e2fa; }
.st-ph.c2 { background: #dceeec; }
.st-ph.c3 { background: #fde6d8; }
.st-ph.c4 { background: #eaf0d8; }
.st-ph.c5 { background: #fbe4ec; }
.st-ph.c6 { background: #e0eefb; }

/* "glass" utility → elevated Material surface (dp1), rounded, opaque, no blur */
.st-glass { background: var(--st-surface); backdrop-filter: none; border: 0; box-shadow: var(--st-e1); border-radius: var(--st-r-lg); }

/* ---------- chips → Material "assist chip". buttons → filled + tonal (FAB-style). ---------- */
.st-chip { display: inline-flex; align-items: center; gap: 7px; font-family: var(--st-body); font-weight: 500; font-size: 12.5px; letter-spacing: .02em; text-transform: none; padding: 7px 14px; border-radius: 999px; background: var(--st-surface-2); border: 1px solid var(--st-line); color: var(--st-ink-2); box-shadow: none; }
.st-chip.accent { background: var(--st-primary-container); color: #1a1665; border-color: transparent; font-weight: 600; }
.st-btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--st-body); font-weight: 600; font-size: 14.5px; padding: 13px 26px; border-radius: 999px; border: 0; background: var(--st-primary); color: var(--st-primary-ink); cursor: pointer; box-shadow: var(--st-e1); transition: box-shadow .18s ease, transform .18s ease; }
.st-btn:hover { box-shadow: var(--st-e2); transform: translateY(-1px); }
.st-btn.glass { background: var(--st-primary-container); color: #1a1665; box-shadow: none; }
.st-btn.glass:hover { box-shadow: var(--st-e1); }
.st-btn .ar { transition: transform .2s ease; }
.st-btn:hover .ar { transform: translateX(3px); }

/* ---------- nav — a real Material "top app bar": flat surface, dp2 on scroll ---------- */
.st-nav-outer { position: sticky; top: 0; z-index: 50; padding: 0; margin-top: 0; background: var(--st-surface); }
.st-nav { max-width: var(--st-maxw); margin: 0 auto; display: flex; align-items: center; gap: 20px; padding: 16px var(--st-gut); border-radius: 0; background: transparent; border: 0; box-shadow: none; transition: box-shadow .2s; }
.st-nav-outer.is-stuck .st-nav, .st-nav.is-stuck { box-shadow: var(--st-e1); }
.st-brand { display: flex; align-items: center; gap: 10px; font-family: var(--st-display); font-weight: 700; font-size: 22px; letter-spacing: 0; color: var(--st-ink); }
.st-brand .st-logo { width: 28px; height: 28px; }
.st-nav-links { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.st-nav-links a { font-weight: 500; font-size: 14.5px; padding: 10px 16px; border-radius: 999px; color: var(--st-ink-2); transition: background .14s, color .14s; }
.st-nav-links a:hover { background: var(--st-surface-2); }
.st-nav-links a.is-active { color: var(--st-primary); background: var(--st-primary-container); font-weight: 700; }
.st-nav-cta { margin-left: 6px; }
.st-nav .st-btn { padding: 10px 20px; font-size: 14px; }

/* ---------- shared bits ---------- */
.st-kicker { display: inline-block; font-family: var(--st-body); font-weight: 700; font-size: 12.5px; letter-spacing: .04em; color: var(--st-primary); }
.st-meta { font-weight: 500; font-size: 13px; color: var(--st-ink-3); }
.st-more { font-weight: 600; font-size: 14px; color: var(--st-primary); display: inline-flex; align-items: center; gap: 8px; }
.st-more .ar { transition: transform .2s ease; }
.st-more:hover .ar { transform: translateX(4px); }

/* ---------- section frame ---------- */
.st-sec { padding: 56px 0; position: relative; }
.st-sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.st-sec-head h2 { font-family: var(--st-display); font-size: clamp(26px, 3.4vw, 40px); font-weight: 700; letter-spacing: -0.005em; margin: 0; line-height: 1.1; }
.st-sec-head .st-sub { color: var(--st-ink-3); font-weight: 500; margin: 8px 0 0; }

/* ---------- hero — a big elevated surface (dp3), Material colour block ---------- */
.st-hero { padding: 32px 0 0; text-align: left; position: relative; }
.st-hero-panel { padding: 56px 44px; text-align: left; background: var(--st-primary-container); border-radius: var(--st-r-xl); box-shadow: var(--st-e3); }
.st-hero-inner { max-width: 700px; margin: 0; }
.st-hero .st-chip { margin-bottom: 20px; background: rgba(255,255,255,.6); }
.st-hero h1 { font-family: var(--st-display); font-size: clamp(36px, 5.4vw, 64px); line-height: 1.06; letter-spacing: -0.01em; font-weight: 700; margin: 0; color: #1a1665; }
.st-hero .st-lead { font-size: clamp(16px, 1.7vw, 18px); color: #3a3470; margin: 20px 0 0; max-width: 52ch; line-height: 1.55; }
.st-hero-cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.st-hero-card { max-width: none; margin: 28px 0 0; padding: 14px; background: var(--st-surface); box-shadow: var(--st-e2); border-radius: var(--st-r-xl); }
.st-hero-card-in { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; border-radius: var(--st-r-lg); overflow: hidden; }
.st-hero-card-fig { aspect-ratio: 16/11; overflow: hidden; border-radius: var(--st-r-lg); }
.st-hero-card-fig .st-ph, .st-hero-card-fig img { width: 100%; height: 100%; object-fit: cover; }
.st-hero-card-body { padding: 20px 20px 20px 0; display: flex; flex-direction: column; justify-content: center; text-align: left; }
.st-hero-card-body .st-chip { align-self: flex-start; margin-bottom: 14px; }
.st-hero-card-body h3 { font-family: var(--st-display); font-size: clamp(21px, 2.4vw, 28px); font-weight: 700; line-height: 1.16; letter-spacing: -0.005em; margin: 0 0 12px; }
.st-hero-card-body p { color: var(--st-ink-2); font-size: 14.5px; margin: 0 0 16px; }
.st-hero-card-body .st-meta { margin-top: auto; }
@media (max-width: 760px) { .st-hero-card-in { grid-template-columns: 1fr; } .st-hero-card-fig { aspect-ratio: 16/9; } .st-hero-card-body { padding: 0 16px 16px; } .st-hero-panel { padding: 36px 22px; } }

/* ---------- featured grid — Material elevated cards, dp1 → dp2 on hover ---------- */
.st-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.st-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; position: relative; background: var(--st-surface); border-radius: var(--st-r-lg); box-shadow: var(--st-e1); transition: box-shadow .2s ease, transform .2s ease; }
.st-card:hover { box-shadow: var(--st-e3); transform: translateY(-3px); }
.st-card-fig { position: relative; aspect-ratio: 16/11; overflow: hidden; border-radius: 0; }
.st-card-fig .st-ph, .st-card-fig img { width: 100%; height: 100%; object-fit: cover; }
.st-card-fig .st-chip { position: absolute; top: 12px; left: 12px; box-shadow: var(--st-e1); }
.st-card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.st-card h3 { font-family: var(--st-display); font-size: 19px; line-height: 1.24; font-weight: 700; letter-spacing: -0.005em; margin: 0; }
.st-card .st-meta { margin-top: auto; }
@media (max-width: 900px) { .st-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .st-grid { grid-template-columns: 1fr; } }

/* ---------- collections → Material tonal chip grid ---------- */
.st-collections { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.st-coll { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: var(--st-surface); border-radius: var(--st-r-lg); box-shadow: var(--st-e1); transition: box-shadow .2s ease, transform .2s ease; }
.st-coll:hover { box-shadow: var(--st-e2); transform: translateY(-2px); }
.st-coll-ic { width: 46px; height: 46px; border-radius: var(--st-r-md); flex: none; display: grid; place-items: center; font-size: 19px; font-weight: 700; background: var(--st-primary-container) !important; color: #1a1665; }
.st-coll h4 { font-family: var(--st-display); font-size: 18px; font-weight: 700; margin: 0; }
.st-coll span { font-size: 13px; color: var(--st-ink-3); font-weight: 500; }
@media (max-width: 820px) { .st-collections { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .st-collections { grid-template-columns: 1fr; } }

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

/* ---------- CTA — a filled Material surface, dp2 ---------- */
.st-cta-box { padding: 48px 40px; text-align: left; position: relative; overflow: hidden; background: var(--st-ink); border-radius: var(--st-r-xl); box-shadow: var(--st-e2); color: #fff; }
.st-cta-box h2 { font-family: var(--st-display); font-size: clamp(26px, 3.4vw, 40px); font-weight: 700; letter-spacing: -0.005em; margin: 0; line-height: 1.12; color: #fff; }
.st-cta-box p { color: rgba(255,255,255,.72); margin: 12px 0 0; max-width: 44ch; font-weight: 500; }
.st-cta-form { margin: 24px 0 0; display: flex; gap: 12px; max-width: 460px; flex-wrap: wrap; }
.st-cta-form input { flex: 1; min-width: 200px; font-family: var(--st-body); font-size: 15px; padding: 13px 18px; border-radius: 999px; border: 0; background: rgba(255,255,255,.12); color: #fff; outline: none; }
.st-cta-form input::placeholder { color: rgba(255,255,255,.55); }
.st-cta-form .st-btn { background: #fff; color: var(--st-ink); }

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

/* ============================================================
   Single post
   ============================================================ */
.st-article { padding-top: 30px; }
.st-crumb { display: flex; flex-wrap: wrap; gap: 8px; font-weight: 500; font-size: 13px; color: var(--st-ink-3); }
.st-crumb a:hover { color: var(--st-primary); }
.st-art-head { max-width: 820px; margin: 20px 0 0; text-align: left; }
.st-art-head h1 { font-family: var(--st-display); font-size: clamp(30px, 4.6vw, 50px); line-height: 1.1; letter-spacing: -0.01em; font-weight: 700; margin: 16px 0 0; }
.st-art-head .st-standfirst { font-size: clamp(16px, 1.7vw, 18px); line-height: 1.55; color: var(--st-ink-2); margin: 18px 0 0; max-width: 62ch; }
.st-art-meta { margin: 22px 0 0; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.st-art-meta .who { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; }
.st-art-meta .st-ava { width: 34px; height: 34px; border-radius: 999px; background: var(--st-primary); }
.st-art-meta .sep { color: var(--st-ink-3); }
.st-art-fig { margin: 28px 0 0; padding: 0; border-radius: var(--st-r-xl); overflow: hidden; box-shadow: var(--st-e2); }
.st-art-fig .st-ph, .st-art-fig img { width: 100%; aspect-ratio: 16/8; object-fit: cover; border-radius: 0; }

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

/* Table of contents — REQUIRED, elevated surface */
.st-toc { position: sticky; top: 88px; align-self: start; padding: 18px 18px; background: var(--st-surface); border-radius: var(--st-r-lg); box-shadow: var(--st-e1); }
.st-toc-h { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--st-ink-3); margin-bottom: 12px; }
.st-toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.st-toc li { counter-increment: toc; }
.st-toc a { display: grid; grid-template-columns: 20px 1fr; gap: 6px; padding: 8px 10px; margin: 2px 0; border-radius: 999px; font-weight: 500; font-size: 13.5px; line-height: 1.3; color: var(--st-ink-2); transition: color .14s, background .14s; }
.st-toc a::before { content: counter(toc, decimal-leading-zero); font-size: 11px; color: var(--st-ink-3); font-weight: 700; }
.st-toc a:hover { background: var(--st-surface-2); }
.st-toc a.is-active { color: var(--st-primary); background: var(--st-primary-container); font-weight: 700; }

/* article richtext (.st-rt) — elevated reading surface */
.st-rt { background: var(--st-surface); backdrop-filter: none; border: 0; border-radius: var(--st-r-xl); box-shadow: var(--st-e1); padding: 34px 40px; font-size: 17.5px; line-height: 1.75; color: var(--st-ink); }
.st-rt > *:first-child { margin-top: 0; }
.st-rt p { margin: 0 0 1.25em; color: var(--st-ink-2); }
.st-rt > p:first-of-type { font-size: 19px; color: var(--st-ink); }
.st-rt h2 { font-family: var(--st-display); font-size: 25px; font-weight: 700; letter-spacing: -0.005em; line-height: 1.22; margin: 1.6em 0 .5em; }
.st-rt h3 { font-family: var(--st-display); font-size: 19px; font-weight: 700; margin: 1.5em 0 .4em; }
.st-rt a { color: var(--st-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.st-rt ul, .st-rt ol { margin: 0 0 1.3em; padding-left: 0; list-style: none; }
.st-rt ul li, .st-rt ol li { margin: .5em 0; padding-left: 1.8em; position: relative; color: var(--st-ink-2); }
.st-rt ul li::before { content: ""; position: absolute; left: 0; top: .58em; width: 8px; height: 8px; border-radius: 999px; background: var(--st-primary); }
.st-rt ol { counter-reset: li; }
.st-rt ol li { counter-increment: li; }
.st-rt ol li::before { content: counter(li); position: absolute; left: 0; top: .02em; width: 1.4em; height: 1.4em; display: grid; place-items: center; font-family: var(--st-body); font-weight: 700; font-size: .7em; color: #fff; background: var(--st-primary); border-radius: 999px; }
.st-rt blockquote { margin: 1.7em 0; padding: 22px 26px; background: var(--st-primary-container); border: 0; border-radius: var(--st-r-lg); font-family: var(--st-display); font-size: 21px; line-height: 1.35; font-weight: 700; color: #1a1665; }
.st-rt blockquote p { margin: 0; }
.st-rt img { margin: 1.7em 0; border-radius: var(--st-r-lg); box-shadow: var(--st-e1); }
.st-rt figure { margin: 1.7em 0; }
.st-rt figcaption { font-weight: 500; font-size: 13.5px; color: var(--st-ink-3); margin-top: 10px; text-align: center; }
.st-rt code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .85em; background: var(--st-surface-2); padding: 2px 7px; border-radius: 6px; }
.st-rt hr { border: 0; height: 1px; background: var(--st-line); margin: 2.2em 0; }

.st-endmark { max-width: 820px; margin: 34px 0 0; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.st-share { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.st-share .lbl { font-weight: 600; font-size: 13px; color: var(--st-ink-3); }
.st-share a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 999px; background: var(--st-surface); box-shadow: var(--st-e1); font-weight: 700; font-size: 13px; transition: box-shadow .16s ease, color .16s; }
.st-share a:hover { box-shadow: var(--st-e2); color: var(--st-primary); }

.st-art-body.no-toc { grid-template-columns: minmax(0, 780px); justify-content: start; }
@media (max-width: 880px) { .st-art-body { grid-template-columns: 1fr; gap: 22px; } .st-toc { position: static; } .st-rt { padding: 26px 22px; } }

.st-related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 820px) { .st-related { grid-template-columns: 1fr; } }

/* ---------- archive / blog — Material "elevated list": leading avatar swatch, tonal
   trailing chevron button, dp1 rows that lift to dp2 — NOT a card grid, NOT a numbered
   index, NOT a mosaic, NOT a row-list-with-icon. ---------- */
.st-arch-head { padding: 40px 0 0; text-align: left; }
.st-arch-head .st-chip { margin-bottom: 16px; }
.st-arch-head h1 { font-family: var(--st-display); font-size: clamp(32px, 5vw, 58px); letter-spacing: -0.01em; line-height: 1.06; font-weight: 700; margin: 0; }
.st-arch-head p { color: var(--st-ink-2); max-width: 56ch; margin: 16px 0 0; font-size: 16.5px; }
.st-filter { display: flex; gap: 10px; flex-wrap: wrap; margin: 28px 0 0; }
.st-filter a { font-weight: 600; font-size: 13.5px; padding: 10px 18px; border-radius: 999px; background: var(--st-surface); box-shadow: var(--st-e1); color: var(--st-ink-2); transition: box-shadow .14s, background .14s, color .14s; }
.st-filter a:hover { box-shadow: var(--st-e2); }
.st-filter a.on { background: var(--st-primary); color: #fff; box-shadow: var(--st-e1); }

.st-mlist { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }
.st-mrow { display: flex; align-items: center; gap: 18px; padding: 14px; background: var(--st-surface); border-radius: var(--st-r-lg); box-shadow: var(--st-e1); transition: box-shadow .2s ease, transform .2s ease; }
.st-mrow:hover { box-shadow: var(--st-e2); transform: translateY(-2px); }
.st-mrow-fig { width: 76px; height: 76px; flex: none; overflow: hidden; border-radius: var(--st-r-md); }
.st-mrow-fig .st-ph, .st-mrow-fig img { width: 100%; height: 100%; object-fit: cover; }
.st-mrow-body { min-width: 0; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.st-mrow-body .st-chip { align-self: flex-start; }
.st-mrow h3 { font-family: var(--st-display); font-size: clamp(17px,1.9vw,20px); font-weight: 700; line-height: 1.25; margin: 0; }
.st-mrow-cta { display: none; place-items: center; width: 40px; height: 40px; border-radius: 999px; background: var(--st-primary-container); color: #1a1665; flex: none; }
@media (min-width: 620px) { .st-mrow-cta { display: grid; } }
@media (max-width: 620px) { .st-mrow-fig { width: 56px; height: 56px; } }

.st-pagination { display: flex; gap: 8px; justify-content: flex-start; margin: 40px 0 0; flex-wrap: wrap; }
.st-pagination .page-numbers { min-width: 40px; text-align: center; padding: 10px 14px; border-radius: 999px; background: var(--st-surface); box-shadow: var(--st-e1); font-weight: 600; font-size: 14px; color: var(--st-ink-2); }
.st-pagination .page-numbers.current { background: var(--st-primary); color: #fff; }
.st-pagination a.page-numbers:hover { box-shadow: var(--st-e2); }
.st-empty { padding: 50px 0; text-align: left; color: var(--st-ink-3); font-weight: 500; }

/* ---------- pages ---------- */
.st-page { padding: 40px 0 20px; }
.st-page-lead { max-width: 780px; margin: 0; text-align: left; }
.st-page-lead .st-chip { margin-bottom: 14px; }
.st-page-lead h1 { font-family: var(--st-display); font-size: clamp(30px, 4.6vw, 52px); line-height: 1.08; letter-spacing: -0.01em; font-weight: 700; margin: 0; }
.st-page-body { max-width: 780px; margin: 26px 0 0; padding: 34px 40px; font-size: 17px; line-height: 1.75; background: var(--st-surface); border-radius: var(--st-r-xl); box-shadow: var(--st-e1); }
.st-page-body .blj-lead, .st-page-body > p:first-child { font-size: 19px; color: var(--st-ink); }
.st-page-body p { color: var(--st-ink-2); margin: 0 0 1.1em; }
.st-page-body h2 { font-family: var(--st-display); font-size: 24px; font-weight: 700; letter-spacing: -0.005em; margin: 1.6em 0 .5em; }
.st-page-body h3 { font-family: var(--st-display); font-size: 18.5px; font-weight: 700; margin: 1.4em 0 .4em; }
.st-page-body ul { padding-left: 0; list-style: none; }
.st-page-body li { margin: .5em 0; padding-left: 1.7em; position: relative; color: var(--st-ink-2); }
.st-page-body ul li::before { content: ""; position: absolute; left: 0; top: .58em; width: 8px; height: 8px; border-radius: 999px; background: var(--st-primary); }
.st-page-body a { color: var(--st-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.st-page-body strong { font-weight: 700; }
.blj-chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 6px 0 1.4em; }
.blj-chips span { font-weight: 600; font-size: 12.5px; padding: 8px 15px; border-radius: 999px; background: var(--st-surface-2); }
.blj-info-card { margin: 1.6em 0; padding: 22px; border-radius: var(--st-r-lg); background: var(--st-primary-container); }
.blj-info-card h3 { margin: 0 0 6px; color: #1a1665; }
.blj-info-card a { font-weight: 700; font-size: 16px; }
.blj-note { color: var(--st-ink-3); }

/* ---------- The Map ---------- */
.blj-map { padding: 22px; background: var(--st-surface); backdrop-filter: none; border: 0; border-radius: var(--st-r-xl); box-shadow: var(--st-e2); }
.blj-map-title { font-family: var(--st-display); font-size: 17px; font-weight: 700; margin: 0 0 14px; }
.blj-map-search { position: relative; margin: 0 0 14px; }
.blj-map-search input { width: 100%; padding: 12px 42px 12px 16px; border: 0; background: var(--st-surface-2); font-family: var(--st-body); font-size: 14px; color: var(--st-ink); outline: none; border-radius: 999px; }
.blj-map-search input:focus { box-shadow: inset 0 0 0 2px var(--st-primary); }
.blj-map-search svg { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: var(--st-ink-3); }
.blj-map-list { display: flex; flex-direction: column; gap: 8px; max-height: 440px; overflow: auto; }
.blj-map-dir { display: flex; align-items: center; justify-content: space-between; padding: 13px 16px; background: var(--st-primary); color: #fff; border-radius: var(--st-r-md); font-weight: 700; font-size: 14px; }
.blj-map-entry { display: flex; flex-direction: column; gap: 2px; padding: 12px 14px; border-radius: var(--st-r-md); background: var(--st-surface-2); transition: box-shadow .16s ease; }
.blj-map-entry:hover { box-shadow: var(--st-e1); }
.blj-map-anchor { font-family: var(--st-display); font-weight: 700; font-size: 15px; color: var(--st-ink); }
.blj-map-anchor:hover { color: var(--st-primary); }
.blj-map-host { display: inline-flex; align-items: center; gap: 4px; font-weight: 600; font-size: 12.5px; color: var(--st-primary); }
.blj-map-src { font-size: 12.5px; color: var(--st-ink-3); font-weight: 500; }
.blj-map-src:hover { color: var(--st-ink); }
.blj-map-empty { color: var(--st-ink-3); padding: 16px 4px; font-weight: 600; }

/* ============================================================
   Motion — Material-standard emphasized easing, no blob float (there are no blobs).
   Gated on reduced-motion + ?noanim.
   ============================================================ */
.js-reveal .st-reveal, .js-reveal .st-sec-head, .js-reveal .st-card, .js-reveal .st-coll,
.js-reveal .st-mapwrap > *, .js-reveal .st-cta-box, .js-reveal .st-hero-card,
.js-reveal .st-arch-head, .js-reveal .st-filter, .js-reveal .st-art-head, .js-reveal .st-art-fig,
.js-reveal .st-mrow {
  opacity: 0; transform: translateY(14px);
  transition: opacity .45s cubic-bezier(.2,0,0,1), transform .45s cubic-bezier(.2,0,0,1);
  will-change: opacity, transform;
}
.js-reveal .is-in { opacity: 1; transform: none; }

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

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