:root {
  --ink-950: #05080d;
  --ink-900: #070c14;
  --ink-850: #0b121d;
  --ink-800: #101a27;
  --paper: #e9e0ca;
  --paper-dim: #b9b09d;
  --paper-faint: rgba(233, 224, 202, 0.58);
  --gold: #c5a363;
  --gold-bright: #e0c384;
  --gold-faint: rgba(197, 163, 99, 0.18);
  --cinnabar: #8d322c;
  --line: rgba(233, 224, 202, 0.14);
  --line-bright: rgba(233, 224, 202, 0.28);
  --serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", STSong, SimSun, serif;
  --sans: Inter, "Noto Sans SC", "Microsoft YaHei", system-ui, sans-serif;
  --shell: min(1180px, calc(100vw - 64px));
  --section-space: clamp(110px, 13vw, 190px);
  --pointer-x: 50vw;
  --pointer-y: 50vh;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink-950);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 14%, rgba(60, 83, 109, 0.13), transparent 32%),
    radial-gradient(circle at 85% 62%, rgba(129, 94, 47, 0.08), transparent 30%),
    var(--ink-950);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

::selection {
  color: var(--ink-950);
  background: var(--gold-bright);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 18px;
  color: var(--ink-950);
  background: var(--paper);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 5px;
}

.page-shell {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-space);
}

.paper-grain {
  position: fixed;
  z-index: 80;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image:
    repeating-radial-gradient(circle at 22% 31%, transparent 0 1px, rgba(255, 255, 255, 0.6) 1px 2px),
    repeating-linear-gradient(118deg, transparent 0 4px, rgba(255, 255, 255, 0.25) 4px 5px);
  background-size: 5px 5px, 9px 9px;
  mix-blend-mode: soft-light;
}

.pointer-glow {
  position: fixed;
  z-index: 0;
  left: var(--pointer-x);
  top: var(--pointer-y);
  width: 480px;
  aspect-ratio: 1;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 163, 99, 0.065), transparent 67%);
  transform: translate(-50%, -50%);
}

.star-field {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.62;
}

.reading-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cinnabar), var(--gold-bright));
  transform: scaleX(0);
  transform-origin: left center;
}

.ink-intro {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  color: var(--paper);
  background: var(--ink-950);
  transition: opacity 650ms cubic-bezier(0.55, 0, 0.2, 1), visibility 650ms;
}

.no-js .ink-intro,
.ink-intro.is-gone {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.ink-intro__mark {
  position: relative;
  font-family: var(--serif);
  font-size: clamp(52px, 8vw, 92px);
  letter-spacing: 0.16em;
  opacity: 0;
  filter: blur(10px);
  animation: ink-arrive 900ms 80ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ink-intro__line {
  width: min(220px, 48vw);
  height: 1px;
  margin-block: 22px 14px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  animation: line-arrive 750ms 320ms ease forwards;
}

.ink-intro__caption {
  color: var(--paper-dim);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.65em;
  text-indent: 0.65em;
  opacity: 0;
  animation: fade-up 600ms 420ms ease forwards;
}

@keyframes ink-arrive {
  to { opacity: 1; filter: blur(0); transform: translateY(-4px); }
}

@keyframes line-arrive {
  to { transform: scaleX(1); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 86px;
  padding-inline: clamp(24px, 4vw, 64px);
  border-bottom: 1px solid transparent;
  transition: height 300ms ease, background 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  border-color: var(--line);
  background: rgba(5, 8, 13, 0.78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__seal {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  color: #eadcc2;
  border: 1px solid rgba(225, 197, 149, 0.42);
  background: var(--cinnabar);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
  transform: rotate(-3deg);
}

.brand__text {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.24em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
}

.site-nav a {
  position: relative;
  color: var(--paper-dim);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.18em;
  transition: color 220ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: calc(100% - 0.18em);
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--paper);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  right: 0;
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: transform 250ms ease, top 250ms ease;
}

.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 25px; width: 19px; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink-950);
}

.hero__art,
.hero__veil {
  position: absolute;
  inset: 0;
}

.hero__art {
  z-index: -4;
  will-change: transform;
}

.hero__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 59% center;
  filter: saturate(0.72) contrast(1.08) brightness(0.74);
  transform: scale(1.035);
}

.hero__veil {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(4, 8, 13, 0.98) 0%, rgba(4, 8, 13, 0.88) 26%, rgba(4, 8, 13, 0.43) 53%, rgba(4, 8, 13, 0.15) 74%, rgba(4, 8, 13, 0.52) 100%),
    linear-gradient(180deg, rgba(3, 7, 12, 0.36), transparent 38%, rgba(3, 7, 12, 0.86) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: radial-gradient(circle at 26% 21%, rgba(229, 213, 170, 0.13), transparent 16%);
  mix-blend-mode: screen;
}

.hero__mist {
  position: absolute;
  z-index: -1;
  left: -25%;
  bottom: -17%;
  width: 100%;
  height: 48%;
  opacity: 0.23;
  filter: blur(34px);
  background: radial-gradient(ellipse, rgba(190, 198, 196, 0.55), transparent 67%);
  animation: mist-drift 18s ease-in-out infinite alternate;
}

.hero__mist--two {
  left: 36%;
  bottom: 2%;
  width: 74%;
  opacity: 0.12;
  animation-duration: 24s;
  animation-direction: alternate-reverse;
}

@keyframes mist-drift {
  from { transform: translate3d(-4%, 0, 0) scale(1); }
  to { transform: translate3d(12%, -7%, 0) scale(1.12); }
}

.hero__content {
  display: flex;
  min-height: 100svh;
  padding-block: 150px 125px;
  justify-content: center;
  flex-direction: column;
}

.hero__eyebrow,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero__eyebrow i {
  width: 21px;
  height: 1px;
  background: rgba(224, 195, 132, 0.48);
}

.hero__title {
  display: flex;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(106px, 15vw, 208px);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.9;
  text-shadow: 0 8px 50px rgba(0, 0, 0, 0.38);
}

.hero__title span:last-child {
  margin-top: 0.16em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(233, 224, 202, 0.78);
}

.hero__identity {
  margin: 20px 0 32px 8px;
  color: var(--paper-dim);
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.18em;
}

.hero__quote {
  margin: 0 0 32px 8px;
  padding-left: 20px;
  border-left: 1px solid var(--gold);
}

.hero__quote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(20px, 2.3vw, 28px);
  letter-spacing: 0.1em;
  line-height: 1.7;
}

.hero__quote cite {
  display: block;
  margin-top: 4px;
  color: var(--paper-faint);
  font-family: var(--serif);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.2em;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-left: 8px;
}

.button {
  display: inline-flex;
  min-width: 152px;
  min-height: 52px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid var(--line-bright);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.13em;
  transition: color 250ms ease, background 250ms ease, border-color 250ms ease, transform 250ms ease;
}

.button--solid {
  color: var(--ink-950);
  border-color: var(--paper);
  background: var(--paper);
}

.button--solid:hover {
  border-color: var(--gold-bright);
  background: var(--gold-bright);
}

.button--ghost:hover {
  color: var(--gold-bright);
  border-color: var(--gold);
  background: rgba(197, 163, 99, 0.07);
}

.hero__facts {
  position: absolute;
  right: clamp(28px, 5vw, 78px);
  bottom: clamp(34px, 5vw, 68px);
  display: flex;
  margin: 0;
  border: 1px solid rgba(233, 224, 202, 0.15);
  background: rgba(5, 8, 13, 0.43);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero__facts div {
  min-width: 116px;
  padding: 16px 20px;
}

.hero__facts div + div {
  border-left: 1px solid rgba(233, 224, 202, 0.13);
}

.hero__facts dt {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.25em;
}

.hero__facts dd {
  margin: 2px 0 0;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 9px;
  color: var(--paper-faint);
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.35em;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 38px;
  overflow: hidden;
  background: rgba(233, 224, 202, 0.2);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 60%;
  background: var(--gold-bright);
  animation: scroll-drop 2s ease-in-out infinite;
}

@keyframes scroll-drop {
  0% { transform: translateY(0); }
  70%, 100% { transform: translateY(330%); }
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(58px, 7vw, 92px);
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(380px, 1.08fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: 80px;
}

.section-kicker {
  display: flex;
  margin: 0 0 20px;
  align-items: center;
  gap: 10px;
  color: var(--paper-faint);
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.section-kicker span {
  color: var(--gold);
}

.section-heading h2,
.sources-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.section-heading h2 em,
.sources-section h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(233, 224, 202, 0.7);
}

.section-heading > p:last-child,
.section-heading--split > p {
  margin: 25px 0 0;
  max-width: 600px;
  color: var(--paper-dim);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 2;
}

.section-heading--split > p {
  margin: 0 0 6px;
}

.profile-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(197, 163, 99, 0.035), transparent 32%),
    var(--ink-900);
}

.profile-section::before {
  content: "白";
  position: absolute;
  top: 6%;
  right: -0.08em;
  color: rgba(233, 224, 202, 0.018);
  font-family: var(--serif);
  font-size: min(48vw, 700px);
  line-height: 1;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: start;
}

.profile-story {
  max-width: 690px;
  color: var(--paper-dim);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 2.2;
}

.profile-story > p {
  margin: 0 0 22px;
}

.dropcap::first-letter {
  float: left;
  margin: 0.1em 0.18em 0 0;
  color: var(--gold-bright);
  font-size: 4.4em;
  line-height: 0.75;
}

.inline-quote {
  position: relative;
  margin: 56px 0 0;
  padding: 32px 0 28px 42px;
  border-block: 1px solid var(--line);
}

.inline-quote > span {
  position: absolute;
  top: -13px;
  left: 0;
  color: var(--gold);
  font-size: 84px;
  line-height: 1;
  opacity: 0.36;
}

.inline-quote p {
  margin: 0;
  color: var(--paper);
  font-size: clamp(21px, 2.8vw, 30px);
  letter-spacing: 0.12em;
  line-height: 1.8;
}

.inline-quote cite {
  color: var(--paper-faint);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.14em;
}

.identity-card {
  position: relative;
  margin: 0;
  padding: 12px 28px;
  border: 1px solid var(--line-bright);
  background: rgba(5, 8, 13, 0.42);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
}

.identity-card::before,
.identity-card::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--gold);
  opacity: 0.6;
}

.identity-card::before {
  top: -6px;
  left: -6px;
  border-top: 1px solid;
  border-left: 1px solid;
}

.identity-card::after {
  right: -6px;
  bottom: -6px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}

.identity-card div {
  display: grid;
  padding: 17px 0;
  grid-template-columns: 78px 1fr;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
}

.identity-card div:last-child { border-bottom: 0; }

.identity-card dt {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.2em;
}

.identity-card dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.1em;
}

.scholar-note {
  display: grid;
  margin-top: clamp(62px, 8vw, 110px);
  padding: 30px 34px;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(197, 163, 99, 0.07), transparent);
}

.scholar-note__seal {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  color: #e9dbc0;
  border: 1px solid rgba(233, 219, 192, 0.35);
  background: var(--cinnabar);
  font-family: var(--serif);
  font-size: 20px;
  transform: rotate(3deg);
}

.scholar-note h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.scholar-note p {
  margin: 0;
  color: var(--paper-dim);
  font-family: var(--serif);
  font-size: 13px;
}

.life-section {
  overflow: clip;
}

.life-section::after {
  content: "";
  position: absolute;
  top: 25%;
  left: -18%;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(100, 126, 151, 0.07), transparent 68%);
}

.timeline {
  --timeline-progress: 0;
  position: relative;
  max-width: 940px;
  margin-inline: auto;
}

.timeline__rail {
  position: absolute;
  z-index: 0;
  top: 20px;
  bottom: 20px;
  left: 170px;
  width: 1px;
  overflow: hidden;
  background: var(--line);
}

.timeline__rail span {
  position: absolute;
  inset: 0;
  background: linear-gradient(var(--gold-bright), var(--cinnabar));
  transform: scaleY(var(--timeline-progress));
  transform-origin: top;
}

.timeline-entry {
  position: relative;
  display: grid;
  min-height: 205px;
  grid-template-columns: 142px 57px 1fr;
  align-items: start;
}

.timeline-entry__year {
  padding-top: 3px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: 0.03em;
  text-align: right;
}

.timeline-entry__year span {
  margin-right: 3px;
  color: var(--paper-faint);
  font-size: 10px;
}

.timeline-entry__dot {
  z-index: 1;
  width: 9px;
  aspect-ratio: 1;
  margin: 13px auto 0;
  border: 2px solid var(--ink-950);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(197, 163, 99, 0.5), 0 0 22px rgba(197, 163, 99, 0.28);
}

.timeline-entry__body {
  max-width: 650px;
  padding: 0 0 58px 38px;
}

.timeline-entry__place {
  margin: 0 0 4px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.25em;
}

.timeline-entry h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.timeline-entry__body > p:last-child {
  margin: 0;
  color: var(--paper-dim);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 2;
}

.timeline-entry--accent .timeline-entry__dot {
  width: 15px;
  margin-top: 10px;
  background: var(--cinnabar);
  box-shadow: 0 0 0 1px rgba(141, 50, 44, 0.65), 0 0 28px rgba(141, 50, 44, 0.36);
}

.timeline-entry--accent h3 {
  color: var(--gold-bright);
}

.journey-section {
  padding-bottom: clamp(120px, 14vw, 200px);
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--ink-950), rgba(9, 17, 26, 0.96)),
    var(--ink-900);
}

.journey-section__moon {
  position: absolute;
  top: 9%;
  right: 7%;
  width: clamp(130px, 18vw, 250px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.12;
  background: radial-gradient(circle at 38% 36%, #fff7df, #d3c49f 64%, transparent 66%);
  box-shadow: 0 0 100px rgba(223, 207, 168, 0.18);
}

.journey-scroll {
  position: relative;
  width: 100%;
  padding: 25px max(32px, calc((100vw - 1180px) / 2)) 48px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(197, 163, 99, 0.42) transparent;
  cursor: grab;
}

.journey-scroll.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.journey-scroll::-webkit-scrollbar { height: 3px; }
.journey-scroll::-webkit-scrollbar-track { background: transparent; }
.journey-scroll::-webkit-scrollbar-thumb { background: rgba(197, 163, 99, 0.42); }

.journey-track {
  --journey-progress: 0;
  position: relative;
  display: grid;
  width: max-content;
  min-width: 100%;
  padding-block: 65px 25px;
  grid-template-columns: repeat(11, 168px);
}

.journey-line {
  position: absolute;
  top: 91px;
  left: 22px;
  width: calc(100% - 44px);
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.journey-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cinnabar), var(--gold-bright));
  transform: scaleX(var(--journey-progress));
  transform-origin: left;
}

.journey-stop {
  position: relative;
  padding: 63px 20px 0;
}

.journey-stop::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 20px;
  width: 9px;
  aspect-ratio: 1;
  border: 3px solid var(--ink-900);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.journey-stop:nth-of-type(even) {
  padding-top: 92px;
}

.journey-stop:nth-of-type(even)::before {
  top: 22px;
}

.journey-stop > span {
  color: rgba(197, 163, 99, 0.5);
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.journey-stop h3 {
  margin: 1px 0 7px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.14em;
}

.journey-stop p {
  margin: 0;
  color: var(--paper-faint);
  font-family: var(--serif);
  font-size: 11px;
  line-height: 1.8;
}

.journey-stop--major::before {
  width: 17px;
  top: 18px;
  background: var(--cinnabar);
  box-shadow: 0 0 0 1px var(--cinnabar), 0 0 30px rgba(141, 50, 44, 0.45);
}

.journey-stop--major h3 { color: var(--gold-bright); }

.journey-hint {
  width: var(--shell);
  margin: 10px auto 0;
  color: rgba(233, 224, 202, 0.34);
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-align: right;
}

.journey-hint span {
  display: inline-block;
  margin-left: 8px;
  color: var(--gold);
  animation: nudge-right 1.6s ease-in-out infinite;
}

@keyframes nudge-right {
  50% { transform: translateX(7px); }
}

.realms-section {
  background: var(--ink-900);
}

.realm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  perspective: 1100px;
}

.realm-card {
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  min-height: 300px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008));
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
  transition: border-color 300ms ease, background 300ms ease, transform 180ms ease;
}

.realm-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(224, 195, 132, 0.17), transparent 42%);
  transition: opacity 300ms ease;
}

.realm-card:hover {
  border-color: rgba(197, 163, 99, 0.45);
  background: linear-gradient(145deg, rgba(197, 163, 99, 0.075), rgba(255, 255, 255, 0.01));
}

.realm-card:hover::before { opacity: 1; }

.realm-card__number {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 11px;
}

.realm-card > i {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 54px;
  aspect-ratio: 1;
  border: 1px solid rgba(233, 224, 202, 0.15);
  border-radius: 50%;
}

.realm-card > i::before,
.realm-card > i::after {
  content: "";
  position: absolute;
}

.realm-card--moon > i::before {
  inset: 9px 8px 11px 12px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: -8px 2px 0 2px var(--ink-850);
}

.realm-card--wine > i::before {
  top: 10px; left: 17px; width: 18px; height: 28px;
  border: 1px solid var(--paper-dim); border-radius: 2px 2px 9px 9px;
}

.realm-card--wine > i::after {
  left: 12px; bottom: 9px; width: 29px; height: 1px; background: var(--paper-dim);
}

.realm-card--mountain > i::before {
  left: 8px; bottom: 12px; width: 37px; height: 28px;
  border-left: 1px solid var(--paper-dim); border-top: 1px solid var(--paper-dim); transform: rotate(45deg) skew(-12deg, -12deg);
}

.realm-card--friend > i::before {
  top: 25px; left: 8px; width: 38px; height: 1px; background: var(--paper-dim); box-shadow: 0 -7px 0 rgba(233,224,202,.25), 0 7px 0 rgba(233,224,202,.25);
}

.realm-card--sword > i::before {
  top: 8px; left: 26px; width: 1px; height: 38px; background: var(--paper); transform: rotate(38deg);
}

.realm-card--immortal > i::before {
  inset: 14px 9px; border-top: 1px solid var(--paper-dim); border-bottom: 1px solid var(--paper-dim); border-radius: 50%; transform: rotate(-15deg);
}

.realm-card h3 {
  margin: 66px 0 14px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.14em;
}

.realm-card p {
  position: relative;
  margin: 0 0 24px;
  color: var(--paper-dim);
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.95;
}

.realm-card small {
  position: relative;
  color: rgba(197, 163, 99, 0.7);
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.realm-card:nth-child(1),
.realm-card:nth-child(6) {
  min-height: 340px;
}

.fellowship-section {
  overflow: hidden;
}

.fellowship-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background:
    radial-gradient(circle at center, transparent 0 23%, rgba(197, 163, 99, 0.12) 23.1% 23.2%, transparent 23.3% 41%, rgba(197, 163, 99, 0.08) 41.1% 41.2%, transparent 41.3%);
}

.fellowship-orbit {
  position: relative;
  display: grid;
  min-height: 620px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 18px;
  align-items: center;
}

.fellowship-center {
  position: relative;
  z-index: 2;
  display: grid;
  width: 170px;
  aspect-ratio: 1;
  place-content: center;
  justify-self: center;
  grid-column: 2;
  grid-row: 2;
  border: 1px solid rgba(197, 163, 99, 0.45);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 163, 99, 0.13), rgba(5, 8, 13, 0.92) 70%);
  box-shadow: 0 0 90px rgba(197, 163, 99, 0.1);
  text-align: center;
}

.fellowship-center::after {
  content: "";
  position: absolute;
  inset: -11px;
  border: 1px dashed rgba(197, 163, 99, 0.25);
  border-radius: 50%;
  animation: orbit-rotate 28s linear infinite;
}

@keyframes orbit-rotate { to { transform: rotate(360deg); } }

.fellowship-center span {
  font-family: var(--serif);
  font-size: 60px;
  line-height: 1;
}

.fellowship-center strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
}

.fellowship-orbit article {
  max-width: 250px;
  padding: 20px 24px;
  border-left: 1px solid var(--line-bright);
}

.fellowship-orbit article:nth-of-type(1) { grid-column: 1; grid-row: 1; justify-self: end; }
.fellowship-orbit article:nth-of-type(2) { grid-column: 2; grid-row: 1; justify-self: center; }
.fellowship-orbit article:nth-of-type(3) { grid-column: 3; grid-row: 1; }
.fellowship-orbit article:nth-of-type(4) { grid-column: 1; grid-row: 3; justify-self: end; }
.fellowship-orbit article:nth-of-type(5) { grid-column: 2; grid-row: 3; justify-self: center; }
.fellowship-orbit article:nth-of-type(6) { grid-column: 3; grid-row: 3; }

.fellowship-orbit article span {
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.13em;
}

.fellowship-orbit article p {
  margin: 5px 0 0;
  color: var(--paper-faint);
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.8;
}

.poems-section {
  background:
    linear-gradient(180deg, rgba(5, 8, 13, 0.25), rgba(5, 8, 13, 0.95)),
    var(--ink-900);
}

.poem-filters {
  display: flex;
  margin-bottom: 32px;
  gap: 9px;
  flex-wrap: wrap;
}

.poem-filters button {
  min-width: 64px;
  padding: 9px 15px;
  color: var(--paper-faint);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.poem-filters button:hover,
.poem-filters button.is-active {
  color: var(--ink-950);
  border-color: var(--gold-bright);
  background: var(--gold-bright);
}

.poem-list {
  border-top: 1px solid var(--line-bright);
}

.poem-card {
  border-bottom: 1px solid var(--line);
}

.poem-card[hidden] { display: none; }

.poem-card summary {
  position: relative;
  display: grid;
  min-height: 116px;
  padding: 26px 74px 26px 0;
  grid-template-columns: 78px 1fr;
  align-items: center;
  list-style: none;
  cursor: pointer;
  transition: color 220ms ease, padding-left 220ms ease, background 220ms ease;
}

.poem-card summary::-webkit-details-marker { display: none; }

.poem-card summary:hover {
  padding-left: 18px;
  color: var(--gold-bright);
  background: linear-gradient(90deg, rgba(197, 163, 99, 0.07), transparent 72%);
}

.poem-card__index {
  color: rgba(197, 163, 99, 0.55);
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.poem-card summary strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(19px, 2.3vw, 28px);
  font-weight: 400;
  letter-spacing: 0.12em;
}

.poem-card summary small {
  display: block;
  margin-top: 5px;
  color: var(--paper-faint);
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.poem-card summary > i {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line-bright);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 260ms ease, border-color 260ms ease;
}

.poem-card summary > i::before,
.poem-card summary > i::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 7px;
  width: 10px;
  height: 1px;
  background: currentColor;
}

.poem-card summary > i::after { transform: rotate(90deg); }

.poem-card[open] summary {
  color: var(--gold-bright);
}

.poem-card[open] summary > i {
  border-color: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}

.poem-card__content {
  display: grid;
  padding: 18px 5vw 58px 78px;
  grid-template-columns: minmax(300px, 1fr) minmax(220px, 0.45fr);
  gap: 70px;
  animation: details-open 400ms ease both;
}

@keyframes details-open {
  from { opacity: 0; transform: translateY(-10px); }
}

.poem-text {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(16px, 1.8vw, 20px);
  letter-spacing: 0.07em;
  line-height: 2;
}

.poem-text p { margin: 0 0 5px; }

.poem-note {
  margin: 6px 0 0;
  padding: 20px 0 0 22px;
  color: var(--paper-faint);
  border-left: 1px solid var(--gold);
  font-family: var(--serif);
  font-size: 12px;
  line-height: 2;
}

.filter-empty {
  margin: 40px 0;
  color: var(--paper-faint);
  font-family: var(--serif);
  text-align: center;
}

.legacy-section {
  overflow: hidden;
}

.legacy-section::before {
  content: "月";
  position: absolute;
  right: -0.15em;
  bottom: 0;
  color: rgba(233, 224, 202, 0.018);
  font-family: var(--serif);
  font-size: min(48vw, 700px);
  line-height: 0.8;
}

.legacy-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(55px, 9vw, 130px);
}

.legacy-lead > p {
  margin: 0 0 24px;
  color: var(--paper-dim);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 2.15;
}

.legacy-lead blockquote {
  margin: 58px 0 0;
  padding: 32px 0;
  border-block: 1px solid var(--line);
}

.legacy-lead blockquote p {
  margin: 0;
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: 0.12em;
}

.legacy-lead cite {
  color: var(--paper-faint);
  font-family: var(--serif);
  font-size: 11px;
  font-style: normal;
}

.legacy-notes article {
  display: grid;
  padding: 26px 0;
  grid-template-columns: 48px 145px 1fr;
  gap: 13px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.legacy-notes article:first-child { border-top: 1px solid var(--line); }

.legacy-notes span {
  color: rgba(197, 163, 99, 0.55);
  font-family: var(--serif);
  font-size: 10px;
}

.legacy-notes h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.13em;
}

.legacy-notes p {
  margin: 0;
  color: var(--paper-faint);
  font-family: var(--serif);
  font-size: 12px;
  line-height: 1.9;
}

.truth-panel {
  display: grid;
  margin-top: clamp(80px, 9vw, 130px);
  padding: 38px;
  grid-template-columns: 0.42fr 1fr 1fr;
  gap: 40px;
  border: 1px solid var(--line-bright);
  background: rgba(197, 163, 99, 0.035);
}

.truth-panel__title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 22px;
}

.truth-panel__title i {
  width: 35px;
  height: 1px;
  background: var(--line-bright);
}

.truth-panel h3 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.truth-panel p {
  margin: 0;
  color: var(--paper-faint);
  font-family: var(--serif);
  font-size: 12px;
}

.sources-section {
  border-top: 1px solid var(--line);
  background: var(--ink-900);
}

.sources-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 100px;
}

.source-list {
  border-top: 1px solid var(--line-bright);
}

.source-list a {
  position: relative;
  display: grid;
  padding: 23px 48px 23px 0;
  grid-template-columns: 0.8fr 1fr;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  transition: color 220ms ease, padding-left 220ms ease;
}

.source-list a:hover {
  padding-left: 12px;
  color: var(--gold-bright);
}

.source-list a span {
  color: var(--paper-faint);
  font-family: var(--serif);
  font-size: 11px;
}

.source-list a strong {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.source-list a i {
  position: absolute;
  top: 22px;
  right: 4px;
  color: var(--gold);
  font-style: normal;
}

.source-list > p {
  margin: 28px 0 0;
  color: rgba(233, 224, 202, 0.4);
  font-family: var(--serif);
  font-size: 11px;
  line-height: 2;
}

.site-footer {
  position: relative;
  display: grid;
  min-height: 70svh;
  padding-block: 130px 44px;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(169, 181, 179, 0.12), transparent 18%),
    linear-gradient(180deg, var(--ink-900), #030609);
}

.site-footer__moon {
  position: absolute;
  top: 8%;
  left: 50%;
  width: min(39vw, 480px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.65;
  background:
    radial-gradient(circle at 36% 32%, rgba(67, 62, 48, 0.16) 0 4%, transparent 5%),
    radial-gradient(circle at 62% 66%, rgba(67, 62, 48, 0.12) 0 7%, transparent 8%),
    radial-gradient(circle at 48% 44%, #efe5c9, #baac87 68%, #8e8165 100%);
  box-shadow: 0 0 90px rgba(223, 207, 168, 0.12), 0 0 230px rgba(223, 207, 168, 0.08);
}

.site-footer__line {
  position: relative;
  z-index: 2;
  margin: 0 0 180px;
  color: var(--ink-900);
  font-family: var(--serif);
  font-size: clamp(19px, 2.4vw, 30px);
  letter-spacing: 0.16em;
  text-align: center;
  text-shadow: 0 1px rgba(255,255,255,.15);
}

.site-footer__meta {
  display: grid;
  padding-top: 24px;
  grid-template-columns: 0.6fr 1fr auto;
  gap: 40px;
  align-items: end;
  border-top: 1px solid var(--line);
  color: var(--paper-faint);
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.site-footer__meta p { margin: 0; }

.site-footer__meta a {
  color: var(--gold);
}

.back-to-top {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: 44px;
  aspect-ratio: 1;
  padding: 0;
  place-items: center;
  color: var(--paper);
  border: 1px solid var(--line-bright);
  background: rgba(5, 8, 13, 0.72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  cursor: pointer;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover { border-color: var(--gold); }

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .hero__title span:nth-child(2) { transition-delay: 90ms; }
.motion-ready .hero__identity { transition-delay: 150ms; }
.motion-ready .hero__quote { transition-delay: 220ms; }
.motion-ready .hero__actions { transition-delay: 300ms; }

.motion-ready .realm-card[data-reveal] {
  transform: translateY(34px) perspective(900px) rotateX(0) rotateY(0);
}

.motion-ready .realm-card[data-reveal].is-revealed {
  transform: translateY(0) perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 44px, 780px);
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading--split > p {
    max-width: 620px;
  }

  .hero__art img {
    object-position: 64% center;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(4, 8, 13, 0.95), rgba(4, 8, 13, 0.58) 56%, rgba(4, 8, 13, 0.3)),
      linear-gradient(180deg, rgba(3, 7, 12, 0.28), transparent 35%, rgba(3, 7, 12, 0.9));
  }

  .hero__facts {
    display: none;
  }

  .profile-grid,
  .legacy-grid,
  .sources-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .identity-card { max-width: 600px; }

  .realm-grid { grid-template-columns: repeat(2, 1fr); }

  .fellowship-orbit {
    min-height: auto;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .fellowship-center {
    margin: 30px auto 50px;
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .fellowship-orbit article:nth-of-type(n) {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
  }

  .truth-panel {
    grid-template-columns: 0.5fr 1fr 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 36px);
    --section-space: 100px;
  }

  /* Keep the first paint immediate on small screens and slower mobile CPUs. */
  .ink-intro { display: none; }

  body { font-size: 15px; }

  .site-header {
    height: 70px;
    padding-inline: 18px;
  }

  .brand__text { display: none; }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    top: 20px;
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    top: 20px;
    width: 28px;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    padding: 120px 32px 50px;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    background:
      radial-gradient(circle at 85% 15%, rgba(197, 163, 99, 0.12), transparent 28%),
      rgba(5, 8, 13, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity 250ms ease, visibility 250ms, transform 250ms ease;
  }

  .site-nav::before {
    content: "卷中目录";
    margin-bottom: 20px;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 11px;
    letter-spacing: 0.35em;
  }

  .site-nav a {
    width: min(310px, 100%);
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 20px;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero__art img {
    object-position: 64% center;
    filter: saturate(0.66) contrast(1.05) brightness(0.64);
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(4, 8, 13, 0.94), rgba(4, 8, 13, 0.48) 72%, rgba(4, 8, 13, 0.3)),
      linear-gradient(180deg, rgba(3, 7, 12, 0.48), transparent 28%, rgba(3, 7, 12, 0.94) 90%);
  }

  .hero__content {
    padding-block: 112px 100px;
    justify-content: flex-end;
  }

  .hero__eyebrow {
    gap: 7px;
    font-size: 9px;
    letter-spacing: 0.2em;
  }

  .hero__eyebrow i { width: 10px; }

  .hero__title {
    font-size: clamp(92px, 31vw, 138px);
  }

  .hero__identity {
    margin-top: 15px;
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .hero__quote p { font-size: 18px; }

  .hero__actions {
    width: 100%;
    margin-left: 0;
  }

  .button {
    min-width: 0;
    flex: 1;
    padding-inline: 15px;
    gap: 9px;
    font-size: 11px;
  }

  .scroll-cue { display: none; }

  .section-heading {
    margin-bottom: 55px;
  }

  .section-heading h2,
  .sources-section h2 {
    font-size: clamp(37px, 12vw, 52px);
  }

  .section-heading > p:last-child,
  .section-heading--split > p {
    font-size: 13px;
  }

  .profile-story {
    font-size: 14px;
  }

  .inline-quote {
    padding-left: 28px;
  }

  .identity-card { padding-inline: 20px; }

  .scholar-note {
    padding: 24px 20px;
    gap: 15px;
  }

  .timeline__rail { left: 13px; }

  .timeline-entry {
    min-height: 0;
    padding-bottom: 64px;
    grid-template-columns: 26px 1fr;
  }

  .timeline-entry__year {
    grid-column: 2;
    grid-row: 1;
    padding-left: 20px;
    font-size: 17px;
    text-align: left;
  }

  .timeline-entry__dot {
    grid-column: 1;
    grid-row: 1;
    margin-top: 8px;
  }

  .timeline-entry__body {
    grid-column: 2;
    padding: 4px 0 0 20px;
  }

  .timeline-entry h3 { font-size: 23px; }

  .timeline-entry__body > p:last-child { font-size: 12px; }

  .journey-scroll {
    padding-inline: 18px;
  }

  .journey-track { grid-template-columns: repeat(11, 145px); }

  .journey-hint { width: calc(100vw - 36px); }

  .realm-grid { grid-template-columns: 1fr; }

  .realm-card,
  .realm-card:nth-child(1),
  .realm-card:nth-child(6) {
    min-height: 280px;
  }

  .fellowship-orbit { grid-template-columns: 1fr; }

  .fellowship-orbit article {
    max-width: none;
  }

  .poem-filters {
    margin-inline: -18px;
    padding-inline: 18px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .poem-filters::-webkit-scrollbar { display: none; }

  .poem-filters button { flex: 0 0 auto; }

  .poem-card summary {
    min-height: 98px;
    padding-right: 48px;
    grid-template-columns: 43px 1fr;
  }

  .poem-card summary:hover { padding-left: 7px; }

  .poem-card summary > i { right: 6px; }

  .poem-card summary strong {
    font-size: 18px;
    letter-spacing: 0.05em;
  }

  .poem-card__content {
    padding: 8px 4px 44px 43px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .poem-text {
    font-size: 15px;
    letter-spacing: 0.02em;
    line-height: 1.9;
  }

  .poem-note {
    padding: 14px 0 0 16px;
  }

  .legacy-notes article {
    grid-template-columns: 35px 100px 1fr;
  }

  .truth-panel {
    padding: 26px 22px;
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .sources-layout { gap: 50px; }

  .source-list a {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .site-footer {
    min-height: 76svh;
  }

  .site-footer__moon {
    top: 14%;
    width: 72vw;
  }

  .site-footer__line {
    margin-bottom: 170px;
    color: rgba(8, 13, 20, 0.92);
    font-size: 16px;
    letter-spacing: 0.08em;
  }

  .site-footer__meta {
    grid-template-columns: 1fr auto;
  }

  .site-footer__meta p:nth-child(2) {
    display: none;
  }
}

@media (pointer: coarse) {
  .pointer-glow { display: none; }
  .realm-card { transform: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .star-field,
  .pointer-glow,
  .hero__mist {
    display: none;
  }

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
