/* ============================================================================
   Lumen — a GLASSMORPHISM "modern living" magazine. Soft light canvas with floating,
   blurred colour blobs; frosted-glass chrome (nav, cards, panels) with real depth; an
   elegant Fraunces serif display + Manrope body. Executed to stay CRAFTED, not AI-generic:
   ONE coherent colour story, restrained glass (chrome only), and — crucially — the reading
   surfaces use high-opacity glass so body text stays crisp and high-contrast. Article
   wrapper = .gl-rt. Colours are tokens for per-site variants.
   ========================================================================== */
:root {
  --gl-bg: #eef0fb;             /* soft base */
  --gl-ink: #1d2042;
  --gl-ink-2: #494d75;
  --gl-ink-3: #7c80a6;
  --gl-accent: #5a6bff;         /* periwinkle */
  --gl-accent-2: #ff6f91;       /* soft coral */
  --gl-glass: rgba(255,255,255,.5);
  --gl-glass-solid: rgba(255,255,255,.74);  /* readable reading panels */
  --gl-border: rgba(255,255,255,.72);
  --gl-line: rgba(29,32,66,.1);
  --gl-shadow: rgba(43,47,94,.2);
  --gl-display: "Fraunces", Georgia, "Times New Roman", serif;
  --gl-body: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --gl-maxw: 1180px;
  --gl-gut: 26px;
  --gl-r: 22px;
  --gl-r-lg: 30px;
  --gl-blur: blur(18px) saturate(1.5);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; color: var(--gl-ink); background: var(--gl-bg);
  font-family: var(--gl-body); font-size: 17px; line-height: 1.62;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
  background-image: radial-gradient(120% 80% at 50% -10%, #f7f2ff 0%, var(--gl-bg) 60%);
  background-attachment: fixed;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.gl-wrap { max-width: var(--gl-maxw); margin: 0 auto; padding: 0 var(--gl-gut); position: relative; z-index: 1; }

/* floating colour blobs behind everything (fixed; parallax via JS) */
.gl-bg { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.gl-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; will-change: transform; }
.gl-blob.b1 { width: 460px; height: 460px; background: #ffc7a8; top: -80px; left: -60px; }
.gl-blob.b2 { width: 520px; height: 520px; background: #c3b6ff; top: 120px; right: -120px; }
.gl-blob.b3 { width: 400px; height: 400px; background: #a9efe2; top: 780px; left: -40px; }
.gl-blob.b4 { width: 440px; height: 440px; background: #a9d2ff; top: 1200px; right: -80px; }
.gl-blob.b5 { width: 380px; height: 380px; background: #ffd9a3; top: 1800px; left: 30%; }

/* placeholder — soft gradient tint (real images come later) */
.gl-ph { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, #ffd1bd, #c9b8ff); position: relative; }
.gl-ph.c1 { background: linear-gradient(135deg, #ffd6c0, #ffb0c6); }
.gl-ph.c2 { background: linear-gradient(135deg, #c9bcff, #a9c8ff); }
.gl-ph.c3 { background: linear-gradient(135deg, #b4f0e3, #a9d8ff); }
.gl-ph.c4 { background: linear-gradient(135deg, #ffe6ad, #ffc2a0); }
.gl-ph.c5 { background: linear-gradient(135deg, #d7c6ff, #ffc4e0); }
.gl-ph.c6 { background: linear-gradient(135deg, #a9e8ff, #c3b6ff); }
.gl-ph::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 30% 25%, rgba(255,255,255,.45), transparent 60%); }

/* glass utility */
.gl-glass { background: var(--gl-glass); backdrop-filter: var(--gl-blur); -webkit-backdrop-filter: var(--gl-blur); border: 1px solid var(--gl-border); box-shadow: 0 20px 46px -26px var(--gl-shadow); border-radius: var(--gl-r); }

/* ---------- pills, buttons ---------- */
.gl-chip { display: inline-flex; align-items: center; gap: 7px; font-family: var(--gl-body); font-weight: 700; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; background: rgba(255,255,255,.55); backdrop-filter: blur(6px); border: 1px solid var(--gl-border); color: var(--gl-ink); }
.gl-chip.accent { background: rgba(90,107,255,.14); color: var(--gl-accent); border-color: rgba(90,107,255,.24); }
.gl-btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--gl-body); font-weight: 700; font-size: 15px; padding: 13px 24px; border-radius: 999px; border: 1px solid transparent; background: var(--gl-accent); color: #fff; cursor: pointer; box-shadow: 0 12px 26px -10px rgba(90,107,255,.6); transition: transform .18s ease, box-shadow .18s ease, background .18s; }
.gl-btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(90,107,255,.7); }
.gl-btn.glass { background: var(--gl-glass); backdrop-filter: var(--gl-blur); -webkit-backdrop-filter: var(--gl-blur); border: 1px solid var(--gl-border); color: var(--gl-ink); box-shadow: 0 12px 26px -14px var(--gl-shadow); }
.gl-btn.glass:hover { background: rgba(255,255,255,.7); }
.gl-btn .ar { transition: transform .2s ease; }
.gl-btn:hover .ar { transform: translateX(3px); }

/* ---------- nav ---------- */
.gl-nav-outer { position: sticky; top: 14px; z-index: 50; padding: 0 var(--gl-gut); margin-top: 16px; }
.gl-nav { max-width: var(--gl-maxw); margin: 0 auto; display: flex; align-items: center; gap: 20px; padding: 10px 12px 10px 22px; border-radius: 999px; background: rgba(255,255,255,.55); backdrop-filter: var(--gl-blur); -webkit-backdrop-filter: var(--gl-blur); border: 1px solid var(--gl-border); box-shadow: 0 16px 40px -22px var(--gl-shadow); transition: box-shadow .2s; }
.gl-nav.is-stuck { box-shadow: 0 20px 46px -20px var(--gl-shadow); }
.gl-brand { display: flex; align-items: center; gap: 10px; font-family: var(--gl-display); font-weight: 600; font-size: 24px; letter-spacing: -0.01em; color: var(--gl-ink); }
.gl-brand .gl-logo { width: 28px; height: 28px; }
.gl-nav-links { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.gl-nav-links a { font-weight: 600; font-size: 14.5px; padding: 9px 15px; border-radius: 999px; color: var(--gl-ink-2); transition: color .14s, background .14s; }
.gl-nav-links a:hover { color: var(--gl-ink); background: rgba(255,255,255,.5); }
.gl-nav-links a.is-active { color: var(--gl-accent); background: rgba(90,107,255,.12); }
.gl-nav-cta { margin-left: 6px; }
.gl-nav .gl-btn { padding: 10px 20px; font-size: 14px; box-shadow: 0 10px 22px -12px rgba(90,107,255,.6); }

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

/* ---------- section frame ---------- */
.gl-sec { padding: 58px 0; position: relative; }
.gl-sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 30px; }
.gl-sec-head h2 { font-family: var(--gl-display); font-size: clamp(28px, 3.6vw, 44px); font-weight: 600; letter-spacing: -0.015em; margin: 0; line-height: 1.02; }
.gl-sec-head h2 em { font-style: italic; color: var(--gl-accent); }
.gl-sec-head .gl-sub { color: var(--gl-ink-3); font-weight: 500; margin: 8px 0 0; }

/* ---------- hero ---------- */
.gl-hero { padding: 56px 0 40px; text-align: center; position: relative; }
.gl-hero-inner { max-width: 820px; margin: 0 auto; }
.gl-hero .gl-chip { margin-bottom: 22px; }
.gl-hero h1 { font-family: var(--gl-display); font-size: clamp(42px, 6.4vw, 80px); line-height: 1.02; letter-spacing: -0.025em; font-weight: 500; margin: 0; }
.gl-hero h1 em { font-style: italic; color: var(--gl-accent); }
.gl-hero .gl-lead { font-size: clamp(18px, 2vw, 21px); color: var(--gl-ink-2); margin: 24px auto 0; max-width: 46ch; line-height: 1.5; }
.gl-hero-cta { margin-top: 32px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.gl-hero-card { max-width: 940px; margin: 44px auto 0; padding: 14px; }
.gl-hero-card-in { display: grid; grid-template-columns: 1.1fr .9fr; gap: 4px; border-radius: 18px; overflow: hidden; }
.gl-hero-card-fig { aspect-ratio: 16/11; overflow: hidden; border-radius: 16px; }
.gl-hero-card-fig .gl-ph, .gl-hero-card-fig img { width: 100%; height: 100%; object-fit: cover; }
.gl-hero-card-body { padding: 26px 26px; display: flex; flex-direction: column; justify-content: center; text-align: left; }
.gl-hero-card-body .gl-chip { align-self: flex-start; margin-bottom: 14px; }
.gl-hero-card-body h3 { font-family: var(--gl-display); font-size: clamp(22px, 2.6vw, 30px); font-weight: 500; line-height: 1.1; letter-spacing: -0.015em; margin: 0 0 12px; }
.gl-hero-card-body p { color: var(--gl-ink-2); font-size: 14.5px; margin: 0 0 16px; }
.gl-hero-card-body .gl-meta { margin-top: auto; }
@media (max-width: 760px) { .gl-hero-card-in { grid-template-columns: 1fr; } .gl-hero-card-fig { aspect-ratio: 16/9; } .gl-hero-card-body { text-align: center; } .gl-hero-card-body .gl-chip { align-self: center; } }

/* ---------- featured grid ---------- */
.gl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gl-card { display: flex; flex-direction: column; overflow: hidden; padding: 12px; position: relative; transition: transform .22s ease, box-shadow .22s ease; }
.gl-card:hover { transform: translateY(-5px); box-shadow: 0 28px 56px -26px var(--gl-shadow); }
.gl-card-fig { position: relative; aspect-ratio: 16/11; overflow: hidden; border-radius: 16px; }
.gl-card-fig .gl-ph, .gl-card-fig img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gl-card:hover .gl-card-fig .gl-ph, .gl-card:hover .gl-card-fig img { transform: scale(1.05); }
.gl-card-fig .gl-chip { position: absolute; top: 12px; left: 12px; }
.gl-card-body { padding: 16px 12px 10px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.gl-card h3 { font-family: var(--gl-display); font-size: 20px; line-height: 1.14; font-weight: 500; letter-spacing: -0.01em; margin: 0; }
.gl-card:hover h3 { color: var(--gl-accent); }
.gl-card .gl-meta { margin-top: auto; }
@media (max-width: 900px) { .gl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gl-grid { grid-template-columns: 1fr; } }

/* ---------- collections (glass chips) ---------- */
.gl-collections { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gl-coll { display: flex; align-items: center; gap: 16px; padding: 18px 20px; transition: transform .2s ease, box-shadow .2s ease; }
.gl-coll:hover { transform: translateY(-3px); box-shadow: 0 24px 48px -26px var(--gl-shadow); }
.gl-coll-ic { width: 46px; height: 46px; border-radius: 14px; flex: none; display: grid; place-items: center; font-size: 22px; }
.gl-coll h4 { font-family: var(--gl-display); font-size: 19px; font-weight: 600; margin: 0; }
.gl-coll span { font-size: 13px; color: var(--gl-ink-3); font-weight: 600; }
@media (max-width: 820px) { .gl-collections { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .gl-collections { grid-template-columns: 1fr; } }

/* ---------- map ---------- */
.gl-mapwrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; }
.gl-mapwrap .gl-intro h2 { font-family: var(--gl-display); font-size: clamp(28px, 3.6vw, 42px); font-weight: 500; letter-spacing: -0.015em; margin: 14px 0 0; line-height: 1.04; }
.gl-mapwrap .gl-intro h2 em { font-style: italic; color: var(--gl-accent); }
.gl-mapwrap .gl-intro p { color: var(--gl-ink-2); margin: 16px 0 0; max-width: 34ch; }
@media (max-width: 860px) { .gl-mapwrap { grid-template-columns: 1fr; gap: 26px; } }

/* ---------- CTA ---------- */
.gl-cta-box { padding: 54px 40px; text-align: center; position: relative; overflow: hidden; }
.gl-cta-box h2 { font-family: var(--gl-display); font-size: clamp(30px, 4.2vw, 50px); font-weight: 500; letter-spacing: -0.02em; margin: 0; line-height: 1.02; }
.gl-cta-box h2 em { font-style: italic; color: var(--gl-accent); }
.gl-cta-box p { color: var(--gl-ink-2); margin: 14px auto 0; max-width: 42ch; font-weight: 500; }
.gl-cta-form { margin: 26px auto 0; display: flex; gap: 12px; max-width: 460px; flex-wrap: wrap; justify-content: center; }
.gl-cta-form input { flex: 1; min-width: 200px; font-family: var(--gl-body); font-size: 15px; padding: 14px 20px; border-radius: 999px; border: 1px solid var(--gl-border); background: rgba(255,255,255,.7); color: var(--gl-ink); outline: none; }
.gl-cta-form input:focus { border-color: var(--gl-accent); }

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

/* ============================================================
   Single post — universal post layout: TOC (mandatory) + readable glass reading sheet
   ============================================================ */
.gl-article { padding-top: 34px; }
.gl-crumb { display: flex; flex-wrap: wrap; gap: 8px; font-weight: 600; font-size: 13px; color: var(--gl-ink-3); }
.gl-crumb a:hover { color: var(--gl-accent); }
.gl-art-head { max-width: 820px; margin: 20px auto 0; text-align: center; }
.gl-art-head h1 { font-family: var(--gl-display); font-size: clamp(32px, 5vw, 56px); line-height: 1.04; letter-spacing: -0.02em; font-weight: 500; margin: 16px 0 0; }
.gl-art-head h1 em { font-style: italic; color: var(--gl-accent); }
.gl-art-head .gl-standfirst { font-size: clamp(18px, 1.9vw, 21px); line-height: 1.5; color: var(--gl-ink-2); margin: 20px auto 0; max-width: 56ch; }
.gl-art-meta { margin: 22px 0 0; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.gl-art-meta .who { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; }
.gl-art-meta .gl-ava { width: 34px; height: 34px; border-radius: 999px; background: linear-gradient(135deg, var(--gl-accent), var(--gl-accent-2)); }
.gl-art-meta .sep { color: var(--gl-ink-3); }
.gl-art-fig { margin: 30px 0 0; padding: 12px; }
.gl-art-fig .gl-ph, .gl-art-fig img { width: 100%; aspect-ratio: 16/8; object-fit: cover; border-radius: 16px; }

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

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

/* article richtext (.gl-rt) — sits on a readable, higher-opacity glass sheet */
.gl-rt { background: var(--gl-glass-solid); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid var(--gl-border); border-radius: var(--gl-r); box-shadow: 0 20px 46px -30px var(--gl-shadow); padding: 34px 40px; font-size: 18px; line-height: 1.78; color: var(--gl-ink); }
.gl-rt > *:first-child { margin-top: 0; }
.gl-rt p { margin: 0 0 1.25em; color: #2a2d52; }
.gl-rt > p:first-of-type { font-size: 20px; color: var(--gl-ink); }
.gl-rt h2 { font-family: var(--gl-display); font-size: 27px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.2; margin: 1.6em 0 .5em; }
.gl-rt h3 { font-family: var(--gl-display); font-size: 20px; font-weight: 600; margin: 1.5em 0 .4em; }
.gl-rt a { color: var(--gl-accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.gl-rt ul, .gl-rt ol { margin: 0 0 1.3em; padding-left: 0; list-style: none; }
.gl-rt ul li, .gl-rt ol li { margin: .5em 0; padding-left: 1.8em; position: relative; color: #2a2d52; }
.gl-rt ul li::before { content: ""; position: absolute; left: 0; top: .58em; width: 11px; height: 11px; border-radius: 4px; background: linear-gradient(135deg, var(--gl-accent), var(--gl-accent-2)); }
.gl-rt ol { counter-reset: li; }
.gl-rt ol li { counter-increment: li; }
.gl-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(--gl-body); font-weight: 800; font-size: .7em; color: #fff; background: var(--gl-accent); border-radius: 8px; }
.gl-rt blockquote { margin: 1.7em 0; padding: 22px 26px; background: rgba(90,107,255,.08); border: 1px solid rgba(90,107,255,.16); border-radius: 16px; font-family: var(--gl-display); font-size: 22px; line-height: 1.32; font-weight: 500; font-style: italic; color: var(--gl-ink); }
.gl-rt blockquote p { margin: 0; }
.gl-rt img { margin: 1.7em 0; border-radius: 14px; }
.gl-rt figure { margin: 1.7em 0; }
.gl-rt figcaption { font-weight: 600; font-size: 13.5px; color: var(--gl-ink-3); margin-top: 10px; text-align: center; }
.gl-rt code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: .85em; background: rgba(29,32,66,.06); padding: 2px 7px; border-radius: 6px; }
.gl-rt hr { border: 0; height: 1px; background: var(--gl-line); margin: 2.2em 0; }

.gl-endmark { max-width: 820px; margin: 34px auto 0; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.gl-share { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.gl-share .lbl { font-weight: 700; font-size: 13px; color: var(--gl-ink-3); }
.gl-share a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 999px; background: var(--gl-glass); backdrop-filter: blur(6px); border: 1px solid var(--gl-border); font-weight: 700; font-size: 13px; transition: transform .16s ease, color .16s; }
.gl-share a:hover { transform: translateY(-3px); color: var(--gl-accent); }

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

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

/* ---------- archive / blog ---------- */
.gl-arch-head { padding: 46px 0 0; text-align: center; }
.gl-arch-head .gl-chip { margin-bottom: 16px; }
.gl-arch-head h1 { font-family: var(--gl-display); font-size: clamp(40px, 6vw, 76px); letter-spacing: -0.025em; line-height: 1; font-weight: 500; margin: 0; }
.gl-arch-head h1 em { font-style: italic; color: var(--gl-accent); }
.gl-arch-head p { color: var(--gl-ink-2); max-width: 50ch; margin: 18px auto 0; font-size: 18px; }
.gl-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin: 30px 0 4px; }
.gl-filter a { font-weight: 700; font-size: 13.5px; padding: 9px 18px; border-radius: 999px; background: var(--gl-glass); backdrop-filter: blur(6px); border: 1px solid var(--gl-border); color: var(--gl-ink-2); transition: color .14s, transform .14s; }
.gl-filter a:hover { transform: translateY(-2px); color: var(--gl-ink); }
.gl-filter a.on { background: var(--gl-accent); color: #fff; border-color: transparent; }
.gl-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 34px; }
@media (max-width: 900px) { .gl-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gl-blog-grid { grid-template-columns: 1fr; } }

.gl-pagination { display: flex; gap: 8px; justify-content: center; margin: 46px 0 0; flex-wrap: wrap; }
.gl-pagination .page-numbers { min-width: 44px; text-align: center; padding: 11px 15px; border-radius: 999px; background: var(--gl-glass); backdrop-filter: blur(6px); border: 1px solid var(--gl-border); font-weight: 700; font-size: 14px; color: var(--gl-ink-2); }
.gl-pagination .page-numbers.current { background: var(--gl-accent); color: #fff; }
.gl-pagination a.page-numbers:hover { color: var(--gl-ink); }
.gl-empty { padding: 60px 0; text-align: center; color: var(--gl-ink-3); font-weight: 600; }

/* ---------- pages ---------- */
.gl-page { padding: 44px 0 20px; }
.gl-page-lead { max-width: 780px; margin: 0 auto; text-align: center; }
.gl-page-lead .gl-chip { margin-bottom: 14px; }
.gl-page-lead h1 { font-family: var(--gl-display); font-size: clamp(34px, 5vw, 60px); line-height: 1.02; letter-spacing: -0.02em; font-weight: 500; margin: 0; }
.gl-page-body { max-width: 780px; margin: 30px auto 0; padding: 34px 40px; font-size: 18px; line-height: 1.78; }
.gl-page-body .blj-lead, .gl-page-body > p:first-child { font-size: 20px; color: var(--gl-ink-2); }
.gl-page-body p { color: #2a2d52; margin: 0 0 1.1em; }
.gl-page-body h2 { font-family: var(--gl-display); font-size: 25px; font-weight: 600; letter-spacing: -0.01em; margin: 1.6em 0 .5em; }
.gl-page-body h3 { font-family: var(--gl-display); font-size: 19px; font-weight: 600; margin: 1.4em 0 .4em; }
.gl-page-body ul { padding-left: 0; list-style: none; }
.gl-page-body li { margin: .5em 0; padding-left: 1.7em; position: relative; color: #2a2d52; }
.gl-page-body ul li::before { content: ""; position: absolute; left: 0; top: .58em; width: 10px; height: 10px; border-radius: 3px; background: linear-gradient(135deg, var(--gl-accent), var(--gl-accent-2)); }
.gl-page-body a { color: var(--gl-accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.gl-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: 700; font-size: 12.5px; padding: 8px 15px; border-radius: 999px; background: rgba(255,255,255,.55); border: 1px solid var(--gl-border); }
.blj-info-card { margin: 1.6em 0; padding: 24px; border-radius: 16px; background: rgba(90,107,255,.07); border: 1px solid rgba(90,107,255,.16); }
.blj-info-card h3 { margin: 0 0 6px; }
.blj-info-card a { font-weight: 700; font-size: 17px; }
.blj-note { color: var(--gl-ink-3); }

/* ---------- The Map (glass) ---------- */
.blj-map { padding: 24px; background: var(--gl-glass-solid); backdrop-filter: var(--gl-blur); -webkit-backdrop-filter: var(--gl-blur); border: 1px solid var(--gl-border); border-radius: var(--gl-r-lg); box-shadow: 0 20px 46px -26px var(--gl-shadow); }
.blj-map-title { font-family: var(--gl-display); font-size: 18px; font-weight: 600; 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: 1px solid var(--gl-border); background: rgba(255,255,255,.6); font-family: var(--gl-body); font-size: 14px; color: var(--gl-ink); outline: none; border-radius: 999px; }
.blj-map-search input:focus { border-color: var(--gl-accent); }
.blj-map-search svg { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: var(--gl-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(--gl-accent); color: #fff; border-radius: 14px; font-weight: 700; font-size: 14px; }
.blj-map-entry { display: flex; flex-direction: column; gap: 2px; padding: 12px 14px; border-radius: 14px; background: rgba(255,255,255,.4); border: 1px solid rgba(255,255,255,.5); transition: transform .16s ease, background .16s; }
.blj-map-entry:hover { transform: translateX(3px); background: rgba(255,255,255,.7); }
.blj-map-anchor { font-family: var(--gl-display); font-weight: 600; font-size: 15.5px; color: var(--gl-ink); }
.blj-map-anchor:hover { color: var(--gl-accent); }
.blj-map-host { display: inline-flex; align-items: center; gap: 4px; font-weight: 700; font-size: 12.5px; color: var(--gl-accent); }
.blj-map-src { font-size: 12.5px; color: var(--gl-ink-3); font-weight: 500; }
.blj-map-src:hover { color: var(--gl-ink); }
.blj-map-empty { color: var(--gl-ink-3); padding: 16px 4px; font-weight: 600; }

/* ============================================================
   Motion — soft reveal, blob parallax, glass hover. Gated on reduced-motion + ?noanim.
   ============================================================ */
.js-reveal .gl-reveal, .js-reveal .gl-sec-head, .js-reveal .gl-card, .js-reveal .gl-coll,
.js-reveal .gl-mapwrap > *, .js-reveal .gl-cta-box, .js-reveal .gl-hero-card,
.js-reveal .gl-arch-head, .js-reveal .gl-filter, .js-reveal .gl-art-head, .js-reveal .gl-art-fig {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.js-reveal .is-in { opacity: 1; transform: none; }

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

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