:root {
  --paper: #f3efe6;
  --paper-soft: #fbf8f0;
  --ink: #24211d;
  --ink-strong: #11100e;
  --muted: #746d61;
  --faint: #a79e90;
  --line: #d4cabc;
  --line-dark: #b9ad9d;
  --red: #9d3329;
  --red-dark: #74251f;
  --shadow: rgba(43, 36, 26, 0.08);
  --serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", "STSong", "SimSun", serif;
  --sans: "Noto Sans SC", "Source Han Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --mono: "Courier New", "Noto Sans Mono CJK SC", monospace;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 255, 255, 0.7), transparent 23rem),
    radial-gradient(circle at 84% 18%, rgba(176, 143, 101, 0.09), transparent 27rem),
    linear-gradient(90deg, rgba(92, 70, 43, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(92, 70, 43, 0.03) 1px, transparent 1px),
    var(--paper);
  background-size: auto, auto, 22px 22px, 22px 22px, auto;
  color: var(--ink);
  font-family: var(--serif);
  letter-spacing: 0.015em;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(115deg, rgba(35, 30, 24, 0.025) 0, rgba(35, 30, 24, 0.025) 1px, transparent 1px, transparent 6px),
    radial-gradient(circle, rgba(45, 39, 31, 0.05) 0 1px, transparent 1px);
  background-size: auto, 9px 9px;
  opacity: 0.56;
}

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

button,
input {
  font: inherit;
}

.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;
}

.site-app {
  min-height: 100vh;
}

.page {
  position: relative;
  width: min(1250px, calc(100vw - 112px));
  margin: 0 auto;
}

.home-shell {
  padding: 16px 0 40px;
}

.folio-shell {
  padding: 16px 0 36px;
}

.site-header,
.folio-header {
  position: relative;
}

.home-top {
  display: grid;
  grid-template-columns: minmax(560px, auto) 1fr 248px;
  align-items: center;
  gap: 34px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.brand-copy {
  min-width: 0;
}

.brand-title {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(1.85rem, 2.55vw, 2.62rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.11em;
  white-space: nowrap;
}

.brand-title .online {
  margin-left: 10px;
  color: var(--red-dark);
  font-size: 0.34em;
  font-weight: 500;
  letter-spacing: 0.78em;
  vertical-align: middle;
}

.folio-header .brand-title {
  font-size: clamp(2rem, 3.05vw, 3.05rem);
  letter-spacing: 0.035em;
  text-transform: none;
}

.folio-header .brand-title .online {
  margin-left: 10px;
  color: var(--ink-strong);
  font-size: 0.76em;
  letter-spacing: 0.02em;
  vertical-align: baseline;
}

.brand-subtitle {
  display: block;
  margin-top: 12px;
  font-size: 0.92rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.folio-header .brand-subtitle {
  margin-top: 10px;
  font-size: 1.13rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.seal {
  display: block;
  flex: 0 0 auto;
  width: 86px;
  height: 86px;
  object-fit: contain;
  filter: contrast(1.05);
}

.folio-header .seal {
  width: 104px;
  height: 104px;
}

.home-statement,
.folio-statement {
  position: relative;
  color: #585044;
  font-size: 0.93rem;
  line-height: 1.9;
}

.home-statement {
  padding-left: 36px;
  border-left: 1px solid var(--line-dark);
}

.folio-statement {
  padding-left: 38px;
  border-left: 1px solid var(--line-dark);
}

.home-search-form,
.folio-search-form,
.large-search-form {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.28);
  color: var(--faint);
  font-size: 0.86rem;
}

.home-search-form {
  height: 34px;
}

.folio-search-form {
  grid-column: 1 / -1;
  justify-self: end;
  width: 280px;
  height: 34px;
  margin-top: -18px;
}

.large-search-form {
  width: min(100%, 620px);
  height: 44px;
  margin: 16px 0 10px;
  background: rgba(255, 255, 255, 0.36);
}

.home-search-form input,
.folio-search-form input,
.large-search-form input {
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 0 11px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.home-search-form input::placeholder,
.folio-search-form input::placeholder,
.large-search-form input::placeholder {
  color: var(--faint);
}

.home-search-form button,
.folio-search-form button,
.large-search-form button {
  display: grid;
  width: 38px;
  height: 100%;
  place-items: center;
  border: 0;
  border-left: 1px solid var(--line);
  background: transparent;
  color: #72695d;
  font-family: var(--sans);
  font-size: 1.15rem;
  cursor: pointer;
}

.home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  padding-top: 16px;
}

.feature-hero {
  position: relative;
  height: 376px;
  min-height: 376px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: #111;
  color: #f4f0e8;
}

.feature-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 8, 10, 0.92) 0%, rgba(8, 11, 12, 0.68) 48%, rgba(10, 10, 10, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.38) 100%);
  content: "";
}

.feature-hero .scene {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(710px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.feature-hero .eyebrow {
  color: #d8d1c6;
}

.hero-title {
  margin: 16px 0 16px;
  font-size: clamp(1.85rem, 2.3vw, 2.38rem);
  font-weight: 600;
  line-height: 1.36;
  letter-spacing: 0.06em;
}

.hero-desc {
  max-width: 500px;
  margin: 0 0 24px;
  color: #f2eee7;
  font-size: 0.98rem;
  line-height: 1.86;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  min-height: 44px;
  border: 1px solid currentColor;
  color: inherit;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.hero-dots,
.topic-dots {
  position: absolute;
  z-index: 3;
  right: 42px;
  bottom: 22px;
  display: flex;
  gap: 14px;
}

.hero-dots span,
.topic-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ded8cf;
}

.hero-dots span:first-child,
.topic-dots span:first-child {
  background: var(--red);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 12px;
}

.section-head h2 {
  margin: 0;
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.07em;
}

.see-all {
  color: var(--red);
  font-size: 0.92rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.news-card {
  display: block;
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.24);
}

.news-card:hover,
.topic-card:hover,
.archive-item:hover {
  border-color: rgba(157, 51, 41, 0.42);
  box-shadow: 0 16px 34px rgba(43, 36, 26, 0.1);
  text-decoration: none;
}

.news-card .scene {
  height: 140px;
}

.card-body {
  padding: 14px 13px 12px;
}

.card-category,
.archive-category {
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.card-title {
  margin: 8px 0 10px;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.55;
}

.card-summary {
  margin: 0;
  color: #6e665a;
  font-size: 0.86rem;
  line-height: 1.72;
}

.card-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.card-flags span {
  border: 1px solid rgba(185, 173, 157, 0.58);
  background: rgba(255, 255, 255, 0.18);
  color: #766c60;
  font-size: 0.72rem;
  padding: 2px 6px;
}

.card-meta {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  color: #8c8275;
  font-size: 0.78rem;
}

.center-link {
  margin-top: 22px;
  text-align: center;
}

.home-aside,
.side-stack {
  display: grid;
  gap: 14px;
  align-content: start;
}

.side-panel {
  position: relative;
  padding: 18px 18px 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 30px var(--shadow);
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.panel-title::before {
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--paper-soft);
  font-family: var(--sans);
  font-size: 0.72rem;
  content: attr(data-mark);
}

.side-panel h2:not(.panel-title) {
  margin: 0 0 14px;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.side-panel p {
  margin: 0;
  color: #655d52;
  font-size: 0.9rem;
  line-height: 1.82;
}

.side-panel p + p {
  margin-top: 8px;
}

.side-panel.with-stamp {
  min-height: 158px;
}

.side-panel.with-stamp p {
  padding-right: 88px;
}

.panel-link {
  display: inline-flex;
  margin-top: 15px;
  color: var(--red);
  font-weight: 600;
}

.stamp {
  position: absolute;
  right: 24px;
  bottom: 18px;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 3px double rgba(157, 51, 41, 0.34);
  border-radius: 50%;
  color: rgba(157, 51, 41, 0.54);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transform: rotate(-9deg);
}

.topic-mini {
  display: grid;
  grid-template-columns: 1fr 88px;
  gap: 14px;
  align-items: center;
}

.topic-mini h3 {
  margin: 2px 0 10px;
  font-size: 1.3rem;
  font-weight: 600;
}

.topic-mini .scene {
  height: 118px;
}

.compact-list {
  display: grid;
  gap: 10px;
}

.compact-row,
.related-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(185, 173, 157, 0.5);
  color: #61594f;
  font-size: 0.86rem;
}

.compact-row:last-child,
.related-row:last-child {
  border-bottom: 0;
}

.left-rail {
  position: fixed;
  top: 50px;
  left: max(4px, calc((100vw - 1500px) / 2));
  width: 68px;
  height: min(930px, calc(100vh - 90px));
  color: #2f2a24;
  pointer-events: none;
}

.rail-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.rail-lines {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
  opacity: 0.62;
}

.rail-lines line:first-child {
  opacity: 0.35;
}

.rail-lines circle {
  opacity: 0.4;
}

.rail-text,
.rail-date-vector,
.rail-stamp-vector text {
  fill: currentColor;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.26em;
}

.rail-small {
  font-size: 9px;
  letter-spacing: 0.2em;
}

.rail-stamp-vector {
  color: var(--red);
}

.rail-stamp-vector rect {
  fill: rgba(243, 239, 230, 0.14);
  stroke: currentColor;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.rail-stamp-vector text {
  fill: currentColor;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.rail-barcode rect {
  fill: currentColor;
}

.rail-date-vector {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-anchor: middle;
}

.folio-header {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) 320px;
  gap: 46px;
  align-items: start;
  padding-bottom: 22px;
}

.folio-brand-row {
  display: grid;
  grid-template-columns: auto minmax(300px, 1fr);
  gap: 28px;
  align-items: center;
}

.folio-brand-row .folio-statement {
  max-width: 360px;
}

.disclosure-card {
  position: relative;
  min-height: 104px;
  padding: 12px 20px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.26);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.disclosure-card h2 {
  margin: 0 0 7px;
  font-size: 1.03rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.disclosure-card p {
  max-width: 228px;
  margin: 0;
  color: #5f564c;
  font-size: 0.84rem;
  line-height: 1.62;
}

.disclosure-card .stamp {
  right: -22px;
  bottom: -22px;
  width: 72px;
  height: 72px;
  background: rgba(243, 239, 230, 0.68);
}

.page-watermark {
  position: absolute;
  top: -34px;
  right: -48px;
  color: #302a24;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  line-height: 1.25;
  text-align: right;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 354px;
  gap: 42px;
  padding-top: 16px;
}

.article-head {
  border-bottom: 1px solid var(--line);
  padding: 4px 0 16px;
}

.article-head .eyebrow,
.topic-title-block .eyebrow {
  margin-bottom: 12px;
}

.article-title,
.topic-title {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(2.05rem, 3.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.article-subtitle,
.topic-subtitle {
  margin: 8px 0 0;
  color: #61584d;
  font-size: 1.03rem;
  line-height: 1.7;
}

.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding: 14px 0 16px;
  color: #685f55;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.article-hero {
  margin: 28px 0 0;
}

.article-hero .scene {
  height: 245px;
}

.caption {
  display: block;
  margin: 6px 0 24px;
  color: #9c9184;
  font-size: 0.75rem;
}

.article-body p {
  margin: 0 0 18px;
  color: #3f382f;
  font-size: 1.02rem;
  line-height: 2.05;
}

.text-page {
  padding-top: 6px;
}

.lead-copy {
  margin: 16px 0 24px;
  color: #3f382f;
  font-size: 1.08rem;
  line-height: 2;
}

.text-page p:not(.eyebrow):not(.lead-copy) {
  margin: 0 0 18px;
  color: #3f382f;
  font-size: 1.02rem;
  line-height: 2.05;
}

.article-quote {
  position: relative;
  margin: 22px 0;
  padding: 24px 40px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.22);
  color: var(--red-dark);
  font-size: 1.45rem;
  letter-spacing: 0.18em;
  line-height: 1.7;
  text-align: center;
}

.article-quote::before,
.article-quote::after {
  position: absolute;
  color: rgba(57, 49, 42, 0.45);
  font-size: 4.4rem;
  line-height: 1;
}

.article-quote::before {
  top: -6px;
  left: 18px;
  content: "“";
}

.article-quote::after {
  right: 24px;
  bottom: -32px;
  content: "”";
}

.article-section-title {
  margin: 26px 0 12px;
  font-size: 1.44rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.article-float {
  float: right;
  width: 245px;
  margin: 0 0 14px 28px;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.26);
}

.article-float .scene {
  height: 240px;
}

.article-float figcaption {
  margin-top: 8px;
  color: #8a8074;
  font-size: 0.75rem;
  line-height: 1.6;
}

.related-list {
  display: grid;
  gap: 12px;
}

.info-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(185, 173, 157, 0.5);
}

.info-list div:last-child {
  border-bottom: 0;
}

.info-list dt {
  color: #8c8174;
  font-size: 0.82rem;
}

.info-list dd {
  margin: 0;
  color: #534a41;
  font-size: 0.86rem;
  line-height: 1.62;
}

.related-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(185, 173, 157, 0.55);
}

.related-item:last-child {
  border-bottom: 0;
}

.related-item .scene {
  height: 58px;
}

.related-item h3 {
  margin: 0 0 5px;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.55;
}

.related-item time {
  color: #8d8375;
  font-size: 0.78rem;
}

.recent-list {
  display: grid;
  gap: 9px;
}

.recent-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  color: #62594f;
  font-size: 0.86rem;
}

.topic-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
}

.topic-title-block {
  margin: 0 0 18px;
}

.topic-hero {
  position: relative;
  min-height: 318px;
  padding: 34px 28px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  color: #fff8ec;
}

.topic-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(42, 23, 7, 0.82) 0%, rgba(43, 31, 18, 0.63) 48%, rgba(25, 18, 12, 0.18) 100%);
  content: "";
}

.topic-hero .scene {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border: 0;
}

.topic-hero-copy {
  position: relative;
  z-index: 2;
  width: min(575px, 100%);
}

.topic-hero h2 {
  margin: 24px 0 20px;
  font-size: clamp(2rem, 3.1vw, 3rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.05em;
}

.topic-hero p {
  margin: 0 0 24px;
  font-size: 1.02rem;
  line-height: 1.9;
}

.topic-card-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.topic-card {
  display: block;
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.2);
}

.topic-card .scene {
  height: 118px;
}

.topic-card-head {
  display: flex;
  justify-content: space-between;
  padding: 7px 9px 0;
  color: #5c5147;
  font-family: var(--mono);
  font-size: 0.7rem;
}

.topic-card h3 {
  margin: 8px 10px 10px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.55;
}

.topic-card .card-summary {
  padding: 0 10px 10px;
}

.topic-tags,
.archive-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.topic-tags {
  padding: 0 10px 11px;
}

.tag {
  border: 1px solid rgba(185, 173, 157, 0.65);
  background: rgba(255, 255, 255, 0.25);
  color: #655c50;
  font-size: 0.73rem;
  padding: 2px 6px;
}

a.tag:hover {
  border-color: rgba(157, 51, 41, 0.45);
  color: var(--red);
  text-decoration: none;
}

.panel-head {
  margin-top: 0;
}

.rank-list {
  counter-reset: ranks;
  display: grid;
  gap: 11px;
}

.rank-row {
  counter-increment: ranks;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 8px;
  align-items: baseline;
  color: #4f473d;
  font-size: 0.84rem;
}

.rank-row::before {
  color: var(--red);
  content: counter(ranks);
  font-size: 1rem;
}

.rank-row strong {
  font-weight: 500;
  line-height: 1.45;
}

.rank-row span {
  color: #8b8174;
  font-size: 0.73rem;
}

.editor-note {
  color: #655c51;
  font-size: 1rem;
  line-height: 1.95;
}

.editor-note .signature {
  display: block;
  margin-top: 18px;
  text-align: right;
}

.archive-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  padding-top: 16px;
}

.filter-bar {
  display: grid;
  grid-template-columns: 190px repeat(3, 1fr) 180px;
  min-height: 43px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.18);
}

.filter-pill {
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  color: #5f554b;
  font-size: 0.88rem;
}

.filter-pill:last-child {
  justify-content: flex-end;
  border-right: 0;
}

.filter-pill input {
  margin-right: 8px;
  accent-color: var(--red);
}

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

.archive-item {
  display: grid;
  grid-template-columns: 220px 1fr 82px;
  gap: 24px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.12);
}

.archive-item:hover {
  background: rgba(255, 255, 255, 0.22);
}

.archive-item:first-child {
  border-top: 0;
}

.archive-item .scene {
  height: 132px;
}

.archive-copy h2 {
  margin: 5px 0 8px;
  font-size: 1.42rem;
  font-weight: 500;
  line-height: 1.45;
}

.archive-copy p {
  margin: 0 0 10px;
  color: #5f574d;
  font-size: 0.94rem;
  line-height: 1.72;
}

.archive-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  color: #6f6559;
  font-size: 0.84rem;
}

.comments::before {
  margin-right: 6px;
  content: "▢";
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 48px;
  color: #483f35;
}

.pagination a {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
}

.pagination a.active {
  background: var(--red);
  color: var(--paper-soft);
}

.recommend-list {
  display: grid;
  gap: 17px;
}

.recommend-row {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
}

.recommend-row .num {
  color: var(--red);
  font-size: 1.1rem;
}

.recommend-row h3 {
  margin: 0 0 3px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}

.recommend-row time {
  color: #8b8174;
  font-size: 0.77rem;
}

.correction-list {
  margin: 0;
  padding-left: 18px;
  color: #5f554b;
  line-height: 1.82;
}

.correction-list li {
  margin-bottom: 12px;
}

.search-panel {
  padding: 18px 20px 20px;
  border: 1px solid var(--line);
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.18);
}

.search-panel h1 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.search-panel p {
  margin: 0;
  color: #6e655a;
  font-size: 0.9rem;
}

.empty-state {
  padding: 42px 24px;
  background: rgba(255, 255, 255, 0.12);
}

.empty-state h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  font-weight: 500;
}

.empty-state p {
  margin: 0;
  color: #6e655a;
}

.site-footer-lite {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #7a7165;
  font-size: 0.82rem;
}

.site-footer-lite a {
  color: var(--red);
}

.scene {
  position: relative;
  overflow: hidden;
  background: #24231f;
  isolation: isolate;
}

.scene::before,
.scene::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.scene::after {
  z-index: 4;
  background:
    radial-gradient(circle at 20% 28%, rgba(255, 255, 255, 0.12), transparent 2px),
    radial-gradient(circle at 68% 74%, rgba(255, 255, 255, 0.09), transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.2)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 4px);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.scene-label {
  position: absolute;
  right: 8px;
  bottom: 6px;
  z-index: 5;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.scene-skyline {
  background:
    radial-gradient(circle at 68% 44%, rgba(255, 180, 84, 0.2) 0 2px, transparent 3px),
    radial-gradient(circle at 42% 55%, rgba(255, 190, 112, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 21% 64%, rgba(255, 194, 111, 0.12) 0 2px, transparent 3px),
    linear-gradient(180deg, #67625a 0%, #30383a 42%, #121b1e 100%);
}

.scene-skyline::before {
  inset: 24% -2% 0;
  background:
    linear-gradient(#121b1e 0 0) 2% 100% / 7% 54% no-repeat,
    linear-gradient(#263234 0 0) 12% 100% / 7% 68% no-repeat,
    linear-gradient(#162124 0 0) 22% 100% / 10% 45% no-repeat,
    linear-gradient(#2c3638 0 0) 36% 100% / 10% 74% no-repeat,
    linear-gradient(#121c20 0 0) 49% 100% / 8% 58% no-repeat,
    linear-gradient(#283437 0 0) 61% 100% / 12% 79% no-repeat,
    linear-gradient(#131c1f 0 0) 77% 100% / 8% 63% no-repeat,
    linear-gradient(#263134 0 0) 88% 100% / 10% 70% no-repeat,
    radial-gradient(circle at 16% 60%, rgba(255, 185, 93, 0.45) 0 2px, transparent 3px),
    radial-gradient(circle at 38% 47%, rgba(255, 185, 93, 0.35) 0 2px, transparent 3px),
    radial-gradient(circle at 65% 36%, rgba(255, 185, 93, 0.42) 0 2px, transparent 3px),
    repeating-linear-gradient(90deg, rgba(255, 184, 95, 0.16) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(180deg, rgba(255, 184, 95, 0.14) 0 1px, transparent 1px 20px);
  opacity: 0.9;
}

.scene-table {
  background: radial-gradient(ellipse at 50% 72%, rgba(125, 82, 45, 0.55), transparent 38%), linear-gradient(180deg, #6c655c 0%, #34312c 100%);
}

.scene-table::before {
  inset: 45% 11% 18%;
  border: 1px solid rgba(220, 207, 187, 0.2);
  background: linear-gradient(90deg, rgba(35, 26, 18, 0.85), rgba(88, 63, 39, 0.86), rgba(35, 26, 18, 0.85));
  box-shadow: -72px 12px 0 -18px rgba(16, 16, 15, 0.88), 72px 12px 0 -18px rgba(16, 16, 15, 0.88), 0 38px 22px rgba(0, 0, 0, 0.35);
}

.scene-notice {
  background: radial-gradient(circle at 50% 38%, rgba(184, 171, 142, 0.26), transparent 28%), linear-gradient(180deg, #67645d 0%, #35342f 100%);
}

.scene-notice::before {
  inset: 22% 13% 22%;
  border: 6px solid rgba(54, 45, 34, 0.75);
  background:
    linear-gradient(rgba(236, 224, 205, 0.8) 0 0) 16% 30% / 25% 30% no-repeat,
    linear-gradient(rgba(208, 191, 166, 0.7) 0 0) 56% 28% / 24% 34% no-repeat,
    linear-gradient(rgba(145, 82, 54, 0.5) 0 0) 40% 66% / 48% 9% no-repeat,
    #92856f;
}

.scene-phone {
  background: linear-gradient(135deg, #606761 0%, #222b2d 100%);
}

.scene-phone::before {
  inset: 13% 28% 8% 41%;
  border: 6px solid #111;
  border-radius: 22px;
  background: radial-gradient(circle at 50% 22%, #e7efe8 0 14px, transparent 15px), linear-gradient(180deg, #0d2026, #11171a);
  box-shadow: 0 24px 30px rgba(0, 0, 0, 0.5);
  transform: rotate(-14deg);
}

.scene-road {
  background:
    linear-gradient(110deg, transparent 0 54%, rgba(42, 42, 37, 0.65) 55% 58%, transparent 59%),
    linear-gradient(180deg, #b4b0a5 0%, #6b6a63 45%, #34342f 100%);
}

.scene-road::before {
  inset: 26% 0 0 50%;
  background: repeating-linear-gradient(90deg, rgba(44, 43, 38, 0.75) 0 4px, transparent 4px 44px), linear-gradient(90deg, rgba(62, 58, 48, 0.5), transparent 62%);
  clip-path: polygon(0 0, 72% 0, 100% 100%, 20% 100%);
}

.scene-chair {
  background: linear-gradient(180deg, #716f68, #393733);
}

.scene-chair::before {
  inset: 32% 30% 18%;
  border-left: 15px solid rgba(26, 25, 23, 0.9);
  border-bottom: 13px solid rgba(26, 25, 23, 0.9);
  transform: skew(-4deg);
}

.scene-bridge {
  background:
    radial-gradient(circle at 24% 24%, rgba(238, 190, 118, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 30%, rgba(238, 190, 118, 0.16) 0 2px, transparent 3px),
    radial-gradient(ellipse at 50% 48%, rgba(210, 219, 218, 0.13), transparent 30%),
    linear-gradient(180deg, #5b6063 0%, #2d383d 46%, #11181b 100%);
}

.scene-bridge::before {
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 64%, rgba(8, 9, 9, 0.94) 0 2.8%, transparent 3%),
    linear-gradient(rgba(8, 9, 9, 0.9) 0 0) 50% 60% / 3.5% 26% no-repeat,
    repeating-linear-gradient(90deg, rgba(14, 18, 20, 0.88) 0 3px, transparent 3px 54px) 0 56% / 100% 50px no-repeat,
    linear-gradient(90deg, rgba(17, 21, 22, 0.95) 0 2px, transparent 2px 100%) 0 57% / 100% 2px no-repeat,
    linear-gradient(90deg, rgba(17, 21, 22, 0.95) 0 2px, transparent 2px 100%) 0 62% / 100% 2px no-repeat,
    linear-gradient(96deg, transparent 0 16%, rgba(15, 19, 20, 0.96) 16.4% 17.4%, transparent 18%),
    linear-gradient(84deg, transparent 0 82%, rgba(15, 19, 20, 0.96) 82.4% 83.4%, transparent 84%),
    linear-gradient(90deg, rgba(13, 17, 18, 0.58), transparent 30% 70%, rgba(13, 17, 18, 0.58)),
    linear-gradient(180deg, transparent 0 66%, rgba(16, 18, 18, 0.78) 67% 100%);
}

.scene-street {
  background: radial-gradient(ellipse at 53% 52%, rgba(230, 223, 210, 0.18), transparent 24%), linear-gradient(180deg, #a7a7a1 0%, #545651 52%, #2e302d 100%);
}

.scene-street::before {
  background: linear-gradient(90deg, rgba(28, 30, 28, 0.72) 0 24%, transparent 24% 76%, rgba(32, 33, 31, 0.74) 76%), radial-gradient(ellipse at 51% 72%, rgba(16, 15, 14, 0.95) 0 5%, transparent 6%);
}

.scene-room {
  background:
    radial-gradient(circle at 68% 26%, rgba(252, 203, 120, 0.72) 0 46px, transparent 47px),
    radial-gradient(circle at 68% 44%, rgba(247, 189, 98, 0.3), transparent 20%),
    linear-gradient(100deg, #3a2718 0%, #795c38 52%, #251c15 100%);
}

.scene-room::before {
  inset: 48% 8% 12% 55%;
  border: 7px solid rgba(14, 16, 16, 0.85);
  border-radius: 22px;
  background: linear-gradient(180deg, #182b2e, #0d1517);
  box-shadow: -300px -4px 0 -70px rgba(43, 31, 22, 0.92), -155px 12px 0 -34px rgba(52, 38, 28, 0.95);
}

.scene-message {
  background: linear-gradient(180deg, #8b806f, #302f2c);
}

.scene-message::before {
  inset: 23% 24% 26%;
  border-radius: 20px;
  background: linear-gradient(#d6d0c3 0 0) 28% 34% / 42% 9px no-repeat, linear-gradient(#d6d0c3 0 0) 28% 49% / 54% 9px no-repeat, #242c29;
  transform: rotate(-9deg);
}

.scene-clock {
  background: radial-gradient(circle at 50% 45%, #c6b89d 0 33%, #3a332b 34% 100%);
}

.scene-clock::before {
  inset: 22% 30% 22%;
  border: 7px solid #151515;
  border-radius: 50%;
  background: linear-gradient(90deg, transparent 47%, #191817 48% 52%, transparent 53%), linear-gradient(20deg, transparent 47%, #191817 48% 52%, transparent 53%), #e7decb;
}

.scene-portrait {
  background: radial-gradient(ellipse at 38% 42%, rgba(213, 191, 154, 0.7), transparent 16%), radial-gradient(ellipse at 60% 44%, rgba(184, 155, 116, 0.55), transparent 12%), linear-gradient(90deg, #453526, #7b654c, #2b251f);
}

.scene-window {
  background: linear-gradient(90deg, #1e211f 0 34%, #5d625e 35% 55%, #242521 56% 100%);
}

.scene-window::before {
  inset: 18% 42% 0 48%;
  background: radial-gradient(ellipse at 50% 68%, rgba(8, 8, 8, 0.9) 0 26%, transparent 27%);
}

.scene-festival {
  background:
    radial-gradient(circle at 22% 38%, rgba(245, 205, 115, 0.7) 0 3px, transparent 4px),
    radial-gradient(circle at 44% 28%, rgba(245, 205, 115, 0.7) 0 3px, transparent 4px),
    radial-gradient(circle at 68% 34%, rgba(245, 205, 115, 0.7) 0 3px, transparent 4px),
    linear-gradient(180deg, #2b332f, #171a18);
}

.scene-festival::before {
  inset: 28% 8% auto;
  height: 2px;
  background: rgba(234, 202, 137, 0.66);
  transform: rotate(-5deg);
}

.scene-construction {
  background: linear-gradient(180deg, #aaa89f, #575951 52%, #302f2a 100%);
}

.scene-construction::before {
  inset: 36% 26% 30%;
  background: linear-gradient(#d6ccb4 0 0) center 36% / 70% 12px no-repeat, #2f342f;
  box-shadow: 0 24px 0 -8px rgba(40, 28, 18, 0.75);
}

.scene-girl-phone {
  background: radial-gradient(ellipse at 41% 52%, rgba(236, 235, 224, 0.2), transparent 13%), linear-gradient(90deg, #121719, #434642);
}

.scene-girl-phone::before {
  inset: 18% 43% 10% 28%;
  background: radial-gradient(ellipse at 50% 30%, rgba(10, 10, 10, 0.95) 0 23%, transparent 24%);
}

@media (max-width: 1150px) {
  .page {
    width: min(100% - 140px, 1040px);
    margin-right: 24px;
    margin-left: 92px;
  }

  .page-watermark {
    display: none;
  }

  .home-top,
  .folio-header,
  .folio-brand-row,
  .content-grid,
  .topic-layout,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .home-search-form,
  .folio-search-form {
    width: 100%;
    justify-self: stretch;
    margin-top: 0;
  }

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

  .topic-card-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 24px, 640px);
    margin-right: auto;
    margin-left: auto;
  }

  .left-rail {
    display: none;
  }

  .home-shell,
  .folio-shell {
    padding-top: 20px;
  }

  .brand {
    align-items: flex-start;
  }

  .seal,
  .folio-header .seal {
    width: 70px;
    height: 70px;
  }

  .brand-title,
  .folio-header .brand-title {
    white-space: normal;
    font-size: 2rem;
    line-height: 1.16;
  }

  .home-statement,
  .folio-statement {
    padding-left: 18px;
  }

  .home-grid,
  .card-grid,
  .topic-card-row,
  .archive-item,
  .filter-bar {
    grid-template-columns: 1fr;
  }

  .feature-hero,
  .topic-hero {
    min-height: 430px;
    padding: 28px 22px;
  }

  .hero-title,
  .topic-hero h2 {
    font-size: 2rem;
  }

  .archive-meta {
    align-items: flex-start;
    gap: 10px;
  }

  .filter-pill {
    min-height: 42px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .article-float {
    float: none;
    width: 100%;
    margin: 0 0 18px;
  }
}

@media (max-width: 720px) {
  .content-grid,
  .topic-layout,
  .archive-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .content-grid > *,
  .topic-layout > *,
  .archive-grid > *,
  .archive-list,
  .filter-bar {
    min-width: 0;
  }

  .disclosure-card .stamp {
    right: 8px;
    bottom: 8px;
    transform: rotate(-9deg) scale(0.82);
    transform-origin: right bottom;
  }
}
