:root {
  --bg: #f5efe5;
  --paper: #fffaf3;
  --paper-strong: #fff7ec;
  --ink: #231f1b;
  --muted: #746b61;
  --line: #dfd1bf;
  --red: #9b2f28;
  --green: #2f5f4a;
  --blue: #34495e;
  --shadow: 0 20px 50px rgba(42, 31, 21, 0.08);
  --font-serif: "Noto Serif SC", "Songti SC", STSong, "Noto Serif CJK SC", "Source Han Serif SC", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(155, 47, 40, .08), transparent 34rem),
    linear-gradient(180deg, #f8f2ea 0%, var(--bg) 42%, #eee5da 100%);
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0;
}
a { color: inherit; text-decoration-color: rgba(155,47,40,.35); text-underline-offset: .18em; }
img { max-width: 100%; height: auto; }
main, .site-header, .site-footer { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 18px;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: 220px; }
.brand img { border-radius: 8px; box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.brand strong { display: block; font-size: 1rem; font-weight: 900; }
.brand em { display: block; color: var(--muted); font-family: var(--font-sans); font-style: normal; font-size: .72rem; margin-top: 2px; }
.site-nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 18px; font-size: .88rem; font-weight: 700; }
.site-nav a { text-decoration: none; color: var(--blue); }
.site-nav a:hover { color: var(--red); }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) 340px;
  gap: 48px;
  align-items: center;
  padding: 56px 0 36px;
}
.eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--red);
}
h1, h2, h3 { line-height: 1.5; letter-spacing: 0; }
.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 900;
  color: #171310;
}
.lede {
  width: min(690px, 100%);
  margin: 20px 0 0;
  font-size: 1.16rem;
  color: #463b32;
}
.hero-actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid var(--red);
  border-radius: 4px;
  color: var(--red);
  text-decoration: none;
  font-weight: 800;
}
.button.primary { background: var(--red); color: #fffaf3; }
.hero-mark {
  display: flex;
  justify-content: center;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, .72);
  box-shadow: var(--shadow);
}
.hero-mark img { width: 280px; border-radius: 10px; }
.feature-grid, .series-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 52px;
}
.feature-card, .series-card {
  display: block;
  padding: 22px;
  background: rgba(255, 250, 243, .82);
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(42,31,21,.04);
}
.feature-card span, .series-card span {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 800;
  color: var(--green);
  text-transform: uppercase;
}
.feature-card h2, .series-card h2, .series-card h3 { margin: 8px 0; font-size: 1.25rem; }
.feature-card p, .series-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.section-heading { margin: 56px 0 18px; }
.section-heading h2, .page-title h1 { margin: 0; font-size: clamp(1.9rem, 4vw, 3rem); }
.section-heading.compact { margin: 0 0 16px; }
.featured-section { margin: 48px 0 72px; }
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 48px 0 72px;
}
.link-list {
  border-top: 1px solid var(--line);
}
.featured-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 32px;
}
.link-list a {
  display: grid;
  grid-template-columns: 96px minmax(0,1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-weight: 700;
}
.link-list span, .meta, .article-row time, .toc-list em {
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: .78rem;
  font-style: normal;
}
.page-title { padding: 48px 0 24px; border-bottom: 1px solid var(--line); margin-bottom: 28px; }
.page-title p { max-width: 720px; color: var(--muted); }
.article-list { display: grid; gap: 12px; margin-bottom: 72px; }
.article-row a {
  display: grid;
  grid-template-columns: 130px minmax(0,1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.article-row h2, .article-row h3 { margin: 0; font-size: 1.2rem; }
.article-row p { grid-column: 2; margin: 4px 0 0; color: var(--muted); font-size: .88rem; }
.article {
  width: min(820px, 100%);
  margin: 0 auto 72px;
  padding-top: 42px;
}
.back-link { color: var(--red); font-family: var(--font-sans); font-size: .82rem; text-decoration: none; }
.article-header h1 { margin: 12px 0 10px; font-size: clamp(2rem, 5vw, 3.6rem); }
.meta { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.article-body {
  margin-top: 34px;
  font-size: 1.08rem;
  line-height: 1.5;
  color: #2b251f;
}
.article-body p { margin: 0 0 1.15em; }
.section-content { max-width: 760px; margin: 0 0 72px; }
.section-content h2 { margin: 1.8em 0 .6em; color: var(--red); font-size: 1.45rem; }
.article-body img { border-radius: 6px; }
.literary-figure {
  margin: 0 0 34px;
  padding: 18px;
  background: rgba(255, 250, 243, .72);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.literary-figure img {
  display: block;
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  border-radius: 4px;
  mix-blend-mode: multiply;
}
.series-cover {
  width: min(860px, 100%);
  margin: 0 auto 36px;
}
.series-cover img { max-height: 560px; }
.series-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 34px 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-sans);
  font-size: .86rem;
}
.series-nav.top { margin-top: 24px; }
.series-nav a { max-width: 32%; color: var(--blue); text-decoration: none; }
.comments {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 2px solid var(--line);
}
.comments ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.comments li {
  padding: 18px;
  background: rgba(255, 250, 243, .65);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.comments header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.comments strong { color: var(--green); }
.comments time { color: var(--muted); font-family: var(--font-sans); font-size: .76rem; }
.comments p { margin: 0 0 .8em; }
.toc-list {
  display: grid;
  gap: 12px;
  margin-bottom: 72px;
}
.toc-list a {
  display: grid;
  grid-template-columns: 58px minmax(0,1fr) 112px;
  gap: 18px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(223, 209, 191, .9);
  text-decoration: none;
}
.toc-number { color: var(--red); font-family: var(--font-sans); font-weight: 800; }
.toc-copy strong { display: block; font-size: 1.08rem; margin-bottom: 5px; }
.toc-copy p {
  margin: 0;
  color: #5d5148;
  font-size: .94rem;
  line-height: 1.5;
}
.year-block { margin: 0 0 42px; }
.year-block h2 { color: var(--red); border-bottom: 2px solid var(--red); padding-bottom: 6px; }
.site-footer {
  padding: 32px 0 48px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .86rem;
}
.site-footer p { margin: 0 0 8px; }

@media (max-width: 900px) {
  .site-header, .hero, .two-column { grid-template-columns: 1fr; }
  .site-header { align-items: flex-start; flex-direction: column; }
  .site-nav { justify-content: flex-start; }
  .feature-grid, .series-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-mark { justify-content: flex-start; }
}
@media (max-width: 620px) {
  main, .site-header, .site-footer { width: min(100% - 28px, 1120px); }
  body { font-size: 16px; }
  .feature-grid, .series-grid { grid-template-columns: 1fr; }
  .article-row a, .link-list a, .toc-list a { grid-template-columns: 1fr; gap: 6px; }
  .article-row p { grid-column: auto; }
  .series-nav { flex-direction: column; }
  .series-nav a { max-width: 100%; }
  .comments header { flex-direction: column; }
}
@media (max-width: 480px) {
  .featured-list { grid-template-columns: 1fr; }
}
