/* ============================================================
   陈兰彬文化教育基地 · 网页版
   设计系统 v2.0
   —— 参照全球顶级文化/博物馆网站（大英博物馆、Lumen Artspace、
      NMAAHC）的设计逻辑：故事优先、留白呼吸、排版克制、
      动效微妙。东方细节（竖排文字、细线、墨色晕染）贯穿。
   ============================================================

   【设计约束 v2.0】
   1. 色板（岭南+近代外交气质，比 v1 更深一档的墨色层次）
      --ink       墨色 #141414（主文字，比 v1 更沉）
      --paper     宣纸米白 #f7f2e7（底色，暖一分）
      --paper-deep 熟宣 #eee6d4（次级底）
      --cinnabar  朱砂红 #9a3b2a（点缀/强调，压暗一档更雅）
      --gold      鎏金 #b08d4f（深色区块的点睛）
      --qingshui  青灰 #5a6670（次级文字）
      --line      细线 #ddd3bd（分隔线/边框）
      --deep      深墨 #0f1214（深色区块底）
      --deep-soft 墨蓝 #161c20
   2. 字体
      中文正文：思源宋体 Noto Serif SC——文化馆的"高级感"来源
                （大英博物馆、故宫数字站均以衬线为主）
      中文标题：思源宋体 700 + 宽字距
      英文小标：字距极宽的小型大写，朱砂或鎏金色
      数字：衬线体大数字
   3. 网格：8pt 基准；区块留白 120px/80px（比 v1 更透气）
   4. 东方细节：竖排文字（writing-mode）、细线分隔（hairline）、
      朱砂印章式色块、水墨晕染渐变背景
   5. 动效：滚动淡入 + 微上移（禁止夸张动画），尊重 reduced-motion
   ============================================================ */

:root {
  --ink: #141414;
  --ink-soft: #3b3b3b;
  --paper: #f7f2e7;
  --paper-deep: #eee6d4;
  --cinnabar: #9a3b2a;
  --cinnabar-dark: #7e2f21;
  --qingshui: #5a6670;
  --line: #ddd3bd;
  --deep: #0f1214;
  --deep-soft: #161c20;
  --gold: #b08d4f;
  --gold-soft: #c9a86a;

  --font-serif: "Noto Serif SC", "Songti SC", "STSong", "SimSun", serif;
  --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
  --space-7: 128px;

  --radius: 2px;
  --shadow: 0 4px 24px rgba(15, 18, 20, 0.08);
  --shadow-deep: 0 8px 40px rgba(15, 18, 20, 0.16);
}

/* ---------- 基础 ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* 根治移动端横向溢出 */
}

body {
  font-family: var(--font-serif);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.9;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden; /* 防移动端横向溢出 */
}

::selection {
  background: var(--cinnabar);
  color: var(--paper);
}

img { max-width: 100%; display: block; }

a { color: var(--cinnabar); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .78; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-3);
  width: 100%;
}

/* 正文段落：宋体+适中字距，文化感 */
p { letter-spacing: 0.02em; }

/* ---------- 顶部导航 ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247, 242, 231, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  width: 100%;
  overflow-x: clip; /* 防 header 内部撑出 */
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-3);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--ink);
}

.brand .seal {
  width: 34px; height: 34px;
  background: var(--cinnabar);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(154, 59, 42, 0.35);
}

.nav-links {
  display: flex;
  gap: var(--space-3);
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--ink-soft);
  letter-spacing: 1px;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--cinnabar);
  transition: width .25s;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--cinnabar); }

/* 移动端导航 */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--ink);
  cursor: pointer;
  padding: 8px 12px;
  min-width: 44px;
  min-height: 44px;
  text-align: center;
  line-height: 1;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* 纯 CSS 菜单开关（不依赖 JS，兼容微信内置浏览器） */
.nav-toggle-check {
  /* 视觉隐藏但保持可交互（display:none 会导致部分浏览器 label 关联失效） */
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  pointer-events: none;
}

@media (max-width: 768px) {
  /* 方案B：移动端不折叠，直接显示全部导航（横向滑动） */
  .nav-toggle { display: none; }
  .nav-toggle-check { display: none; }
  .nav-inner {
    height: auto;
    min-height: 68px;
    flex-wrap: wrap;
    padding: 10px var(--space-3);
    gap: 8px;
  }
  .brand {
    font-size: 17px;
    letter-spacing: 1px;
    margin-right: auto;
  }
  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    background: none;
    border: none;
    padding: 8px 0 2px;
    gap: 16px;
    z-index: auto;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links li { flex: 0 0 auto; }
  .nav-links a {
    white-space: nowrap;
    font-size: 13px;
    padding: 5px 0;
  }
}

/* ---------- 页脚 ---------- */
.site-footer {
  background: var(--deep);
  color: rgba(247, 242, 231, 0.7);
  padding: var(--space-5) 0 var(--space-4);
  margin-top: var(--space-7);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--space-3);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--space-4);
  width: 100%;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--paper);
  letter-spacing: 2px;
}

.footer-desc { margin-top: var(--space-2); font-size: 14px; max-width: 480px; }

.footer-meta { font-size: 13px; text-align: right; }
.footer-meta p { margin-top: var(--space-1); }

@media (max-width: 768px) {
  .footer-meta { text-align: left; }
}

/* ---------- 通用区块 ---------- */
.page-hero {
  padding: calc(68px + var(--space-7)) 0 var(--space-6);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  text-align: center;
  position: relative;
}

/* 顶部细金线 */
.page-hero::before {
  content: "";
  position: absolute;
  top: 68px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

.page-hero .eyebrow {
  font-size: 12px;
  font-family: var(--font-sans);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--cinnabar);
  margin-bottom: var(--space-3);
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: 8px;
}

.page-hero .sub {
  margin-top: var(--space-2);
  color: var(--qingshui);
  font-size: 16px;
  letter-spacing: 2px;
}

.section {
  padding: var(--space-7) 0;
}

.section-head {
  margin-bottom: var(--space-5);
}

.section-head .en {
  font-size: 11px;
  font-family: var(--font-sans);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--cinnabar);
  margin-bottom: var(--space-2);
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.6vw, 38px);
  letter-spacing: 4px;
  font-weight: 700;
  line-height: 1.5;
}

.section-head .rule {
  width: 56px; height: 3px;
  background: var(--cinnabar);
  margin-top: var(--space-3);
}

/* 章节编号（左上角小字，文化感） */
.section-index {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

/* ---------- 首页封面（沉浸式） ---------- */
.hero-cover {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--deep);
  max-width: 100vw; /* 防溢出 */
}

.hero-cover img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transform: scale(1.02);
  animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1.0); }
}

.hero-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(15,18,20,0.1) 0%, rgba(15,18,20,0.55) 100%),
    linear-gradient(180deg, rgba(15,18,20,0.35) 0%, rgba(15,18,20,0.25) 40%, rgba(15,18,20,0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--paper);
  padding: var(--space-4);
  max-width: 900px;
}

.hero-content .eyebrow {
  font-size: 13px;
  font-family: var(--font-sans);
  letter-spacing: 10px;
  color: var(--gold-soft);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  animation: heroFade 1.2s .2s both;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(42px, 7.5vw, 84px);
  font-weight: 700;
  letter-spacing: 14px;
  line-height: 1.25;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
  animation: heroFade 1.2s .4s both;
}

.hero-content .tagline {
  margin-top: var(--space-4);
  font-size: clamp(15px, 2.2vw, 20px);
  letter-spacing: 5px;
  font-family: var(--font-serif);
  color: rgba(247,242,231,0.92);
  animation: heroFade 1.2s .6s both;
}

.hero-content .meta {
  margin-top: var(--space-4);
  font-size: 13px;
  font-family: var(--font-sans);
  letter-spacing: 4px;
  color: rgba(247,242,231,0.65);
  animation: heroFade 1.2s .8s both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--paper);
  font-size: 12px;
  font-family: var(--font-sans);
  letter-spacing: 4px;
  opacity: 0.85;
  text-align: center;
  animation: heroFade 1.2s 1.2s both;
}

.hero-scroll .arrow {
  display: block;
  margin-top: var(--space-1);
  font-size: 18px;
  animation: bounce 2.4s infinite;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ---------- 数字大条 ---------- */
.stats-band {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: var(--space-6) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.stat-item { text-align: center; position: relative; }

/* 数字间用细竖线分隔 */
.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--space-2));
  top: 10%; bottom: 10%;
  width: 1px;
  background: var(--line);
}

.stat-item .num {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.stat-item .num .unit {
  font-size: 0.45em;
  color: var(--qingshui);
  margin-left: 2px;
  font-weight: 400;
}

.stat-item .label {
  margin-top: var(--space-1);
  font-size: 13px;
  font-family: var(--font-sans);
  color: var(--qingshui);
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .stat-item + .stat-item::before { display: none; }
}

/* ---------- 双栏图文 ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
  min-width: 0; /* 允许子元素收缩，防止溢出 */
}

.split > * { min-width: 0; }

.split .img-frame img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.split .text h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: 2px;
  margin-bottom: var(--space-2);
}

.split .text p {
  color: var(--ink-soft);
  margin-bottom: var(--space-2);
}

.split .text .lead {
  font-size: 17px;
  color: var(--ink);
}

@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; gap: var(--space-4); }
}

/* ---------- 卡片 ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-4);
  min-width: 0;
}

.card-grid > * { min-width: 0; }

.card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
  border-color: var(--gold-soft);
}

.card .icon {
  width: 44px; height: 44px;
  border: 1px solid var(--cinnabar);
  color: var(--cinnabar);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: var(--space-3);
  border-radius: var(--radius);
  font-family: var(--font-serif);
}

.card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  letter-spacing: 1px;
  margin-bottom: var(--space-1);
}

.card p {
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--qingshui);
  line-height: 1.8;
}

/* ---------- 时间线 ---------- */
.timeline {
  position: relative;
  padding-left: var(--space-4);
  margin-top: var(--space-4);
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px; top: 0; bottom: 0;
  width: 2px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-4);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--space-4) + 1px);
  top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--cinnabar);
  border: 3px solid var(--paper);
}

.timeline-item .year {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--cinnabar);
}

.timeline-item h4 {
  font-size: 16px;
  margin-top: 2px;
  letter-spacing: 1px;
}

.timeline-item p {
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--qingshui);
  margin-top: 4px;
}

/* ---------- 画廊 ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-4);
  min-width: 0;
}

.gallery-grid > * { min-width: 0; }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .5s;
}

.gallery-item:hover img { transform: scale(1.03); }

.gallery-item .cap {
  padding: var(--space-2) var(--space-3);
  font-size: 13px;
  font-family: var(--font-sans);
  color: var(--qingshui);
  letter-spacing: 1px;
}

/* ---------- 表格 ---------- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--line);
  font-size: 15px;
}

.data-table th, .data-table td {
  padding: var(--space-2) var(--space-3);
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.data-table th {
  background: var(--paper-deep);
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 1px;
  width: 240px;
}

.data-table tr:last-child td { border-bottom: none; }

.data-table td .hl { color: var(--cinnabar); font-weight: 600; }

/* ---------- 故事板块（一栋楼的回家） ---------- */
.story-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
  margin-top: var(--space-5);
  min-width: 0;
}

.story-wrap > * { min-width: 0; }

.story-caption {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  font-family: var(--font-sans);
  color: var(--qingshui);
  letter-spacing: 1px;
}

.story-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border: 1px solid var(--cinnabar);
  border-radius: 999px;
  color: var(--cinnabar);
  font-size: 13px;
  font-family: var(--font-sans);
  letter-spacing: 2px;
  margin-bottom: var(--space-3);
}

.story-lead {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.9;
  letter-spacing: 2px;
  color: var(--ink);
}

.story-lead em {
  font-style: normal;
  color: var(--cinnabar);
}

.story-note {
  margin-top: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-left: 3px solid var(--cinnabar);
  background: var(--paper-deep);
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-soft);
}

.journey {
  margin-top: var(--space-5);
}

.journey-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  border-bottom: 1px dashed var(--line);
  align-items: baseline;
}

.journey-row:last-child { border-bottom: none; }

.journey-year {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--cinnabar);
  letter-spacing: 1px;
}

.journey-row h4 {
  font-size: 16px;
  letter-spacing: 1px;
}

.journey-row p {
  margin-top: 4px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--qingshui);
  line-height: 1.8;
}

.return-highlight {
  background: linear-gradient(135deg, var(--deep), #2a2620);
  color: var(--paper);
  border-radius: var(--radius);
  padding: var(--space-6);
  margin-top: var(--space-5);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* 金线装饰框 */
.return-highlight::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 168, 106, 0.35);
  pointer-events: none;
}

.return-highlight .big {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.4vw, 36px);
  letter-spacing: 8px;
  color: var(--gold-soft);
}

.return-highlight p {
  margin-top: var(--space-2);
  font-size: 15px;
  color: var(--paper);
  opacity: .85;
  letter-spacing: 2px;
  font-family: var(--font-sans);
}

@media (max-width: 800px) {
  .story-wrap { grid-template-columns: 1fr; }
  .journey-row { grid-template-columns: 80px 1fr; }
}

/* ---------- 深色区块 ---------- */
.dark-section {
  background: var(--deep);
  color: var(--paper);
  padding: var(--space-7) 0;
  position: relative;
}

/* 水墨晕染背景 */
.dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(176, 141, 79, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(154, 59, 42, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.dark-section > .container { position: relative; z-index: 1; }
.dark-section .section-head h2 { color: var(--paper); }
.dark-section .section-head .en { color: var(--gold-soft); }
.dark-section .section-head .rule { background: var(--gold); }

.dark-quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.9;
  letter-spacing: 3px;
  color: var(--paper);
}

.dark-quote .attr {
  margin-top: var(--space-3);
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--gold-soft);
  letter-spacing: 2px;
}

/* ---------- 按钮 ---------- */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border: 1px solid var(--cinnabar);
  color: var(--cinnabar);
  font-size: 15px;
  font-family: var(--font-sans);
  letter-spacing: 2px;
  border-radius: var(--radius);
  transition: background .25s, color .25s;
}

.btn:hover {
  background: var(--cinnabar);
  color: var(--paper);
  opacity: 1;
}

.btn-solid {
  background: var(--cinnabar);
  color: var(--paper);
}

.btn-solid:hover { background: var(--cinnabar-dark); color: var(--paper); }

.btn-gold {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.btn-gold:hover { background: var(--gold-soft); color: var(--deep); }

.cta-row {
  text-align: center;
  margin-top: var(--space-5);
}

/* ---------- 图片框（画框感） ---------- */
.img-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.7);
  padding: var(--space-2);
  box-shadow: var(--shadow);
}

.img-frame img { border-radius: var(--radius); }

/* ---------- 竖排文字（东方细节） ---------- */
.vtext {
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 6px;
  font-family: var(--font-serif);
}

/* 竖排印章式角标 */
.seal-corner {
  writing-mode: vertical-rl;
  background: var(--cinnabar);
  color: var(--paper);
  padding: 10px 6px;
  font-size: 12px;
  letter-spacing: 4px;
  font-family: var(--font-serif);
}

/* 引用块：左侧细线+宋体 */
.pull-quote {
  border-left: 3px solid var(--gold);
  padding: var(--space-2) var(--space-4);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.9;
  color: var(--ink);
  margin: var(--space-4) 0;
}

/* 数字大引号装饰 */
.big-quote-mark {
  font-family: var(--font-serif);
  font-size: 72px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.5;
  display: block;
  margin-bottom: var(--space-2);
}

/* ---------- 实用 ---------- */
.text-center { text-align: center; }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mb-4 { margin-bottom: var(--space-4); }

.breadcrumb {
  font-size: 13px;
  font-family: var(--font-sans);
  color: var(--qingshui);
  letter-spacing: 1px;
  margin-bottom: var(--space-3);
}

.breadcrumb a { color: var(--qingshui); }
.breadcrumb a:hover { color: var(--cinnabar); }

/* 打印友好 */
@media print {
  .site-header, .site-footer, .hero-scroll, .cta-row { display: none; }
  body { background: #fff; }
  .section { padding: 24px 0; }
}
