:root {
  --ink: #201f1b;
  --muted: #6d6a63;
  --paper: #f8fbfd;
  --surface: #ffffff;
  --ground: #e4eaf0;
  --navy: #0b2136;
  --navy-2: #123a57;
  --blue: #1b6385;
  --copper: #bf5f34;
  --copper-dark: #8e3e22;
  --gold: #d5b46c;
  --gold-soft: #f1dfae;
  --line: #d0dae2;
  --line-dark: #aebdca;
  --soft: #eef3f6;
  --warn: #fff1c9;
  --shadow-sm: 0 8px 24px rgb(39 31 21 / 8%);
  --shadow-lg: 0 28px 70px rgb(5 19 31 / 22%);
  --radius: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 100% 0, rgb(51 139 171 / 13%), transparent 34rem),
    radial-gradient(circle at 0 35%, rgb(205 91 47 / 9%), transparent 30rem),
    var(--ground);
  color: var(--ink);
  font: 15px/1.68 "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
  text-rendering: optimizeLegibility;
}

a { color: var(--blue); text-underline-offset: 3px; }
a:hover { color: var(--copper-dark); }
img { max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.archive-note {
  background: linear-gradient(90deg, #f4d98e, #fff0bc 48%, #f4d98e);
  border-bottom: 1px solid #d3a945;
  color: #493710;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .06em;
  padding: 8px 16px;
  text-align: center;
  text-transform: uppercase;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(105deg, rgb(5 24 42 / 97%), rgb(11 53 72 / 96%) 65%, rgb(19 78 88 / 95%));
  border-bottom: 2px solid rgb(223 171 74 / 75%);
  box-shadow: 0 8px 30px rgb(4 14 24 / 14%);
  color: white;
  backdrop-filter: blur(16px);
}

.topbar__in,
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.topbar__in {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  color: #fff9ec;
  font: 700 18px/1 Georgia, Cambria, serif;
  letter-spacing: .1em;
  text-decoration: none;
}

.brand::before {
  content: "L";
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 31px;
  margin-right: 11px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-soft);
  font-size: 15px;
  letter-spacing: 0;
}

.nav { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.nav a {
  border-radius: 999px;
  color: #dce8ef;
  font-size: 12px;
  font-weight: 650;
  padding: 8px 12px;
  text-decoration: none;
}
.nav a:hover { background: rgb(255 255 255 / 10%); color: #fff3cd; }
.nav a:hover { background: rgb(255 255 255 / 9%); color: white; }

.eyebrow {
  color: var(--copper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #f9f4e9;
  background:
    radial-gradient(circle at 78% 35%, rgb(48 112 143 / 34%), transparent 28rem),
    radial-gradient(circle at 15% 100%, rgb(191 95 52 / 20%), transparent 26rem),
    linear-gradient(135deg, #071a2b 0%, var(--navy) 52%, #102f47 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero__in {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: 44px 64px;
  align-items: center;
  padding: 76px 0 54px;
}

.hero-copy { max-width: 690px; }
.hero .eyebrow { color: #efc875; }
.hero h1,
.release-hero h1 {
  margin: 13px 0 20px;
  color: inherit;
  font: 700 clamp(45px, 7vw, 82px)/.96 Georgia, Cambria, serif;
  letter-spacing: -.045em;
}

.hero p,
.release-hero p {
  max-width: 760px;
  margin: 0;
  color: #d6e1e7;
  font: 19px/1.62 Georgia, Cambria, serif;
}

.jump {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  border: 1px solid #df764a;
  border-radius: 999px;
  background: linear-gradient(135deg, #d46d41, #b84f2b);
  box-shadow: 0 10px 26px rgb(0 0 0 / 18%);
  color: white;
  font-size: 13px;
  font-weight: 750;
  padding: 11px 18px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.jump::after { content: "→"; }
.jump:hover { color: white; transform: translateY(-2px); box-shadow: 0 14px 30px rgb(0 0 0 / 24%); }

.hero-showcase {
  position: relative;
  min-height: 410px;
  filter: drop-shadow(0 28px 32px rgb(0 0 0 / 28%));
}

.hero-photo {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 18px;
  background: #03070a;
  box-shadow: var(--shadow-lg);
}
.hero-photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.hero-photo--primary { inset: 24px 40px 12px 62px; transform: rotate(2deg); }
.hero-photo--secondary { width: 42%; height: 42%; left: 0; bottom: 0; transform: rotate(-7deg); }
.hero-photo--tertiary { width: 36%; height: 34%; right: 0; top: 0; transform: rotate(7deg); }
.hero-seal {
  position: absolute;
  right: 26px;
  bottom: 2px;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 1px solid #eed18a;
  border-radius: 50%;
  background: rgb(8 29 47 / 93%);
  color: #f4d994;
  font: 700 12px/1.25 Georgia, serif;
  letter-spacing: .08em;
  text-align: center;
  transform: rotate(-8deg);
}

.ledger {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 7%);
  backdrop-filter: blur(12px);
}
.ledger div { padding: 20px 24px; border-right: 1px solid rgb(255 255 255 / 13%); }
.ledger div:last-child { border-right: 0; }
.ledger strong { display: block; color: white; font: 700 31px/1 Georgia, serif; }
.ledger span { display: block; margin-top: 7px; color: #bfcfd8; font-size: 12px; }

.section { padding: 74px 0; }
.section:nth-of-type(2) { background: linear-gradient(180deg, #f1ece4, #eae4da); }
.section h2 {
  margin: 8px 0 18px;
  color: var(--navy);
  font: 700 clamp(30px, 4vw, 44px)/1.08 Georgia, Cambria, serif;
  letter-spacing: -.025em;
}
.section-lead { max-width: 800px; margin: 0 0 32px; color: var(--muted); font-size: 16px; }

.series-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.series-index a {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.series-index a:hover { transform: translateY(-4px); border-color: #b69c70; box-shadow: 0 18px 38px rgb(39 31 21 / 14%); }
.series-thumb { display: block; height: 155px; overflow: hidden; background: #10171d; }
.series-thumb img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .35s ease; }
.series-index a:hover .series-thumb img { transform: scale(1.045); }
.series-copy { display: block; padding: 17px 18px 20px; }
.series-index strong { display: block; color: var(--navy); font: 700 18px/1.2 Georgia, serif; }
.series-index small { display: block; margin-top: 7px; color: var(--muted); font-size: 11px; }
.series-arrow { position: absolute; right: 14px; top: 14px; display: grid; place-items: center; width: 29px; height: 29px; border-radius: 50%; background: rgb(8 29 47 / 82%); color: white; }

.filters { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 15px; }
.filter {
  cursor: pointer;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgb(255 253 250 / 72%);
  color: var(--ink);
  font: 700 12px/1 "Segoe UI", sans-serif;
  padding: 10px 15px;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.filter:hover { transform: translateY(-1px); background: white; }
.filter[aria-pressed="true"] { border-color: var(--navy); background: var(--navy); color: white; }
.catalog-count { margin: 0 0 20px; color: var(--muted); font-size: 12px; }

.timeline { display: grid; gap: 12px; }
.release-row {
  display: grid;
  grid-template-columns: 72px 182px minmax(0, 1fr) 145px;
  gap: 22px;
  align-items: center;
  overflow: hidden;
  min-height: 134px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgb(255 253 250 / 82%);
  box-shadow: 0 5px 18px rgb(50 39 25 / 5%);
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.release-row:hover { transform: translateY(-3px); border-color: #b69c70; box-shadow: 0 14px 30px rgb(50 39 25 / 11%); }
.release-row[hidden] { display: none; }
.release-row img { width: 182px; height: 132px; display: block; object-fit: cover; background: #d9d2c8; }
.year { justify-self: end; color: var(--copper); font: 700 18px/1 Georgia, serif; }
.release-row h3 { margin: 0 0 7px; color: var(--navy); font: 700 22px/1.14 Georgia, serif; }
.release-row p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.tag { padding-right: 22px; color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .11em; text-align: right; text-transform: uppercase; }

.method {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #071a2b, #10344e);
  color: #e8eef1;
}
.method::after { content: ""; position: absolute; inset: auto -8rem -12rem auto; width: 32rem; height: 32rem; border: 1px solid rgb(213 180 108 / 23%); border-radius: 50%; box-shadow: 0 0 0 5rem rgb(213 180 108 / 3%), 0 0 0 10rem rgb(213 180 108 / 3%); }
.method .wrap { position: relative; z-index: 1; }
.method .eyebrow { color: #efc875; }
.method h2 { color: white; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.method-grid > div { border: 1px solid rgb(255 255 255 / 12%); border-radius: 14px; background: rgb(255 255 255 / 5%); padding: 22px; }
.method h3 { margin: 0 0 8px; color: #f7e6b8; font: 700 19px Georgia, serif; }
.method p { margin: 0; color: #c5d2da; font-size: 13px; }

.release-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 40%, rgb(52 115 145 / 35%), transparent 30rem),
    linear-gradient(135deg, #071a2b, #10344e);
  color: white;
}
.release-hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(120deg, transparent 45%, rgb(213 180 108 / 6%)); }
.release-hero__in {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 48px;
  align-items: center;
  min-height: 450px;
  padding: 58px 0;
}
.release-hero__in--single,
.release-hero__in > :only-child { grid-template-columns: 1fr; min-height: 360px; }
.release-hero__in > :only-child { grid-column: 1 / -1; }
.release-hero .eyebrow { color: #efc875; }
.release-hero h1 { max-width: 850px; font-size: clamp(40px, 6vw, 68px); }
.release-hero p { font-size: 18px; }

.release-page {
  --theme-accent: #e4b35d;
  --theme-accent-2: #3b9bb0;
  --theme-dark: #071a2b;
  --theme-deep: #02090f;
  --theme-glow: rgb(55 155 177 / 30%);
  min-height: 100vh;
  padding-bottom: 1px;
  background:
    radial-gradient(circle at 8% 15%, var(--theme-glow), transparent 28rem),
    linear-gradient(180deg, #dce5eb 0, #eef2f5 42rem, #e4eaf0 100%);
}
.release-page.theme-bitcoin {
  --theme-accent: #ff9f36;
  --theme-accent-2: #df5d3f;
  --theme-dark: #31170f;
  --theme-deep: #0e0b0b;
  --theme-glow: rgb(242 122 43 / 28%);
}
.release-page.theme-monero {
  --theme-accent: #ff7a2e;
  --theme-accent-2: #da3e32;
  --theme-dark: #32150e;
  --theme-deep: #0d0b0b;
  --theme-glow: rgb(255 102 0 / 26%);
}
.release-page.theme-litecoin {
  --theme-accent: #9bc8ef;
  --theme-accent-2: #4f86c6;
  --theme-dark: #132c48;
  --theme-deep: #07111e;
  --theme-glow: rgb(86 150 208 / 30%);
}
.release-page.theme-kizekra {
  --theme-accent: #d4a5ff;
  --theme-accent-2: #3bd8ba;
  --theme-dark: #241440;
  --theme-deep: #071822;
  --theme-glow: rgb(143 78 220 / 27%);
}
.release-page.release-grim-reaper {
  --theme-accent: #ffad3b;
  --theme-accent-2: #d22e4f;
  --theme-dark: #260a13;
  --theme-deep: #050408;
  --theme-glow: rgb(205 39 76 / 34%);
}
.release-page .release-hero {
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 28%, var(--theme-glow), transparent 28rem),
    radial-gradient(circle at 8% 100%, rgb(255 255 255 / 8%), transparent 24rem),
    linear-gradient(135deg, var(--theme-dark), var(--theme-deep));
  border-bottom: 3px solid var(--theme-accent);
}
.release-page .release-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .2;
  background-image: linear-gradient(115deg, transparent 0 58%, rgb(255 255 255 / 9%) 58% 58.3%, transparent 58.3% 100%);
  pointer-events: none;
}
.release-page .release-hero .eyebrow { color: var(--theme-accent); }
.release-page .release-hero h1 { text-shadow: 0 3px 30px rgb(0 0 0 / 38%); }
.release-page .meta span { border-color: rgb(255 255 255 / 22%); background: rgb(0 0 0 / 18%); }
.release-page .jump { background: linear-gradient(135deg, var(--theme-accent-2), var(--theme-accent)); box-shadow: 0 12px 28px var(--theme-glow); }
.release-page .release-cover { border: 2px solid var(--theme-accent); box-shadow: 0 30px 80px var(--theme-glow), 0 12px 42px rgb(0 0 0 / 38%); }
.release-page .thread { border-top: 4px solid var(--theme-accent-2); }
.release-page .post h2::before { background: linear-gradient(var(--theme-accent), var(--theme-accent-2)); }
.release-page .posthead:first-child { background: linear-gradient(90deg, #dce7ed, #edf1f3); }

.release-cover {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.12;
  cursor: zoom-in;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: 20px;
  background: #060b0f;
  box-shadow: var(--shadow-lg);
  padding: 0;
  transform: rotate(1.5deg);
}
.release-cover::after { content: "View full image"; position: absolute; right: 12px; bottom: 12px; border-radius: 999px; background: rgb(4 14 22 / 76%); color: white; font-size: 10px; font-weight: 750; padding: 7px 10px; backdrop-filter: blur(8px); }
.release-cover img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .35s ease; }
.release-cover:hover img { transform: scale(1.035); }
.meta { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 25px; color: #d7e1e7; font-size: 11px; }
.meta span { border: 1px solid rgb(255 255 255 / 18%); border-radius: 999px; background: rgb(255 255 255 / 6%); padding: 7px 10px; }

.thread {
  overflow: hidden;
  margin: 34px auto 62px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.posthead {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  background: #e8edf0;
  color: #394955;
  font-size: 12px;
  padding: 13px 18px;
}
.posthead:last-child { border-top: 1px solid var(--line); border-bottom: 0; background: #f0ece4; }
.postgrid { display: grid; grid-template-columns: 176px minmax(0, 1fr); }
.author { border-right: 1px solid #cbd3d7; background: linear-gradient(180deg, #edf2f4, #e5ebee); color: var(--muted); font-size: 11px; padding: 24px 17px; }
.author strong { display: block; margin-bottom: 3px; color: var(--navy-2); font: 700 18px Georgia, serif; }
.post { min-width: 0; padding: 36px min(5vw, 58px) 54px; }
.post h2 { display: flex; align-items: center; gap: 10px; margin: 48px 0 16px; border: 0; color: var(--navy); font: 700 29px/1.16 Georgia, serif; }
.post h2::before { content: ""; flex: 0 0 4px; align-self: stretch; min-height: 28px; border-radius: 999px; background: linear-gradient(var(--gold), var(--copper)); }
.post h2:first-child { margin-top: 0; }
.post h3 { color: var(--navy); font: 700 19px Georgia, serif; }
.post p, .post li { max-width: 850px; }
.summary { color: #3e4850; font: 18px/1.62 Georgia, serif; }
.factline, .rate, .type-guide-note, .missing { border-radius: 11px; }
.factline { border: 1px solid #d9bd69; background: var(--warn); padding: 15px 17px; }
.rate { margin: 22px 0; border: 1px solid #ddc88e; border-left: 5px solid var(--copper); background: #f8f1df; color: #44463f; padding: 14px 16px; }
.rate-values { display: grid; gap: 3px; margin: 8px 0 7px; }
.rate-line { position: relative; display: block; padding-left: 15px; font-variant-numeric: tabular-nums; }
.rate-line::before { content: ""; position: absolute; left: 1px; top: .73em; width: 6px; height: 6px; border-radius: 50%; background: var(--copper); transform: translateY(-50%); }
.price-note { color: var(--muted); font-size: 11px; }
.tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 11px; }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
th, td { border-bottom: 1px solid var(--line); padding: 12px 13px; text-align: left; vertical-align: top; }
tr:last-child td { border-bottom: 0; }
th { background: #ece7de; color: #48515a; font-size: 10px; letter-spacing: .09em; text-transform: uppercase; }
tbody tr:nth-child(even) { background: #fcfaf5; }
.record-detail { margin-top: 48px; }
.detail-intro { max-width: 850px; color: #46525c; font: 17px/1.62 Georgia, serif; }
.detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; margin-top: 18px; }
.detail-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  border: 1px solid #c9d5dc;
  border-radius: 13px;
  background: linear-gradient(145deg, #ffffff, #eef4f7);
  box-shadow: 0 8px 22px rgb(25 55 72 / 7%);
  padding: 19px 20px 20px;
}
.detail-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: linear-gradient(var(--theme-accent), var(--theme-accent-2)); }
.detail-card h3 { margin: 0 0 8px; color: #17344b; font-size: 18px; }
.detail-card p { margin: 0; color: #4d5b65; font-size: 13px; line-height: 1.62; }
.record-timeline { position: relative; display: grid; gap: 0; margin-top: 22px; padding-left: 4px; }
.record-timeline::before { content: ""; position: absolute; top: 11px; bottom: 11px; left: 130px; width: 2px; background: linear-gradient(var(--theme-accent), var(--theme-accent-2)); opacity: .48; }
.record-timeline__event { position: relative; display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 34px; padding: 0 0 24px; }
.record-timeline__event:last-child { padding-bottom: 0; }
.record-timeline__event::before { content: ""; position: absolute; top: 7px; left: 120px; z-index: 1; width: 15px; height: 15px; border: 3px solid #fff; border-radius: 50%; background: var(--theme-accent); box-shadow: 0 0 0 1px rgb(30 59 77 / 25%); }
.record-timeline__event time { padding-top: 4px; color: var(--theme-accent-2); font-size: 11px; font-weight: 800; letter-spacing: .03em; line-height: 1.35; text-transform: uppercase; }
.record-timeline__event h3 { margin: 0 0 5px; color: #17344b; font-size: 18px; }
.record-timeline__event p { margin: 0; color: #4d5b65; font-size: 13px; line-height: 1.62; }
.type-guide-note { margin: 18px 0 23px; border: 1px solid #dec98c; border-left: 5px solid var(--gold); background: #f7f1e2; padding: 14px 16px; }
.type-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.type-card { overflow: hidden; margin: 0; border: 1px solid var(--line); border-radius: 12px; background: var(--soft); box-shadow: 0 5px 15px rgb(40 31 21 / 6%); }
.type-card button { display: block; width: 100%; cursor: zoom-in; border: 0; border-bottom: 1px solid var(--line); background: #151719; padding: 0; }
.type-card img { transition: transform .25s ease; }
.type-card:hover img { transform: scale(1.025); }
.type-card figcaption { padding: 12px 14px; }
.type-card strong { display: block; color: var(--navy); font: 700 17px/1.25 Georgia, serif; }
.type-card span { display: block; margin-top: 3px; color: var(--muted); font-size: 11px; }
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.gallery figure { overflow: hidden; margin: 0; border: 1px solid var(--line); border-radius: 11px; background: var(--soft); box-shadow: 0 5px 14px rgb(40 31 21 / 5%); }
.gallery button { display: block; width: 100%; min-height: 180px; cursor: zoom-in; border: 0; background: #ded8ce; padding: 0; }
.gallery img { width: 100%; height: 235px; display: block; object-fit: cover; transition: transform .3s ease; }
.gallery figure:hover img { transform: scale(1.035); }
.gallery figcaption { border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; padding: 10px 11px; }
.missing { border: 1px dashed #a58e5e; background: #fff7dd; color: #655325; padding: 18px; }
.sources { font-size: 12px; }
.sources li { margin: 9px 0; }
.sources code { color: #64707a; }

.lightbox[hidden] { display: none; }
.lightbox { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 28px; background: rgb(0 0 0 / 91%); backdrop-filter: blur(8px); }
.lightbox img { display: block; max-width: min(1300px, 96vw); max-height: 90vh; border-radius: 8px; object-fit: contain; box-shadow: 0 20px 70px rgb(0 0 0 / 60%); }
.lightbox button { position: absolute; right: 18px; top: 18px; cursor: pointer; border: 1px solid rgb(255 255 255 / 65%); border-radius: 999px; background: #111; color: white; font-weight: 700; padding: 9px 13px; }

.footer { border-top: 1px solid #c7bdaf; background: #ddd5ca; color: #625e57; font-size: 11px; padding: 30px 0 46px; }

@media (max-width: 980px) {
  .hero__in { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .hero-showcase { min-height: 350px; max-width: 650px; width: 100%; justify-self: center; }
  .series-index { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .release-row { grid-template-columns: 66px 150px minmax(0, 1fr); }
  .release-row img { width: 150px; }
  .tag { display: none; }
  .release-hero__in { grid-template-columns: 1fr 300px; min-height: 400px; gap: 34px; }
}

@media (max-width: 760px) {
  .topbar__in { min-height: auto; padding: 14px 0; align-items: flex-start; flex-direction: column; gap: 11px; }
  .nav { margin-left: -7px; }
  .hero__in { padding-top: 54px; }
  .hero h1 { font-size: clamp(43px, 13vw, 68px); }
  .hero-showcase { min-height: 300px; }
  .ledger { grid-template-columns: 1fr; }
  .ledger div { display: grid; grid-template-columns: 100px 1fr; align-items: baseline; border-right: 0; border-bottom: 1px solid rgb(255 255 255 / 13%); }
  .ledger div:last-child { border-bottom: 0; }
  .section { padding: 55px 0; }
  .release-row { grid-template-columns: 60px 112px minmax(0, 1fr); gap: 14px; min-height: 112px; }
  .release-row img { width: 112px; height: 110px; }
  .release-row h3 { font-size: 18px; }
  .release-row p { display: none; }
  .release-hero__in { grid-template-columns: 1fr; padding: 48px 0; }
  .release-cover { max-width: 520px; justify-self: center; aspect-ratio: 1.5; }
  .detail-grid { grid-template-columns: 1fr; }
  .record-timeline::before { left: 7px; }
  .record-timeline__event { display: block; padding: 0 0 24px 31px; }
  .record-timeline__event::before { left: 0; }
  .record-timeline__event time { display: block; padding: 0 0 5px; }
  .method-grid { grid-template-columns: 1fr; }
  .postgrid { grid-template-columns: 1fr; }
  .author { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 540px) {
  .topbar__in, .wrap { width: min(100% - 28px, 1180px); }
  .brand { font-size: 15px; }
  .nav { gap: 2px; }
  .nav a { font-size: 11px; padding: 7px 9px; }
  .hero-showcase { min-height: 255px; }
  .hero-photo--primary { inset: 18px 20px 8px 34px; }
  .hero-photo--secondary { width: 44%; }
  .hero-photo--tertiary { width: 38%; }
  .hero-seal { width: 70px; height: 70px; right: 8px; font-size: 10px; }
  .series-index { grid-template-columns: 1fr; }
  .series-index a { min-height: 250px; }
  .release-row { grid-template-columns: 55px minmax(0, 1fr); min-height: 90px; padding-right: 14px; }
  .release-row img { display: none; }
  .type-grid, .gallery { grid-template-columns: 1fr; }
  .gallery img { height: auto; max-height: 420px; }
  .post { padding: 28px 17px 40px; }
  .post h2 { font-size: 25px; }
  .posthead { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
