/* ===== Wake Up Girls — 全球女性议题周报 =====
   设计取自一幅画：暖白墙（照片主体）+ 画作彩色色块
   色板：墙 #F4F1EB / 墨 #1D1715 / 芥末黄 #E1B62A / 砖红 #A12627 / 珊瑚粉 #DC876F / 青蓝 #0E7587 / 蓝灰 #306C7B
   方向：浅色画廊 + 大胆色块（栏目以大面积色块分区） */

:root {
  --wall: #F4F1EB;
  --wall-2: #EAE5DC;
  --beige: #F1E9D9;       /* 米色（digest 网格内部） */
  --paper: #FFFFFF;
  --ink: #1D1715;
  --ink-2: #5A4F49;
  --ink-3: #8A7A72;
  --line: rgba(29, 23, 21, .12);

  --gold: #E1B62A;
  --gold-d: #B8921A;
  --brick: #A12627;
  --coral: #DC876F;
  --teal: #0E7587;
  --teal-2: #306C7B;

  /* 兼容旧变量名 */
  --bg: var(--wall);
  --card: var(--paper);
  --fg: var(--ink);
  --muted: var(--ink-2);
  --border: var(--line);
  --primary: var(--gold);
  --primary-soft: rgba(225, 182, 42, .2);
  --accent: var(--brick);
  --gold-light: #F2D45C;
  --gold-deep: var(--gold-d);

  --serif: "Playfair Display", "Noto Serif SC", Georgia, "Songti SC", "SimSun", serif;
  --sans: "Inter", -apple-system, "Segoe UI", "Microsoft YaHei", "PingFang SC", sans-serif;
  --radius: 8px;
  --ease-apple: cubic-bezier(.16, 1, .3, 1);
  --shadow-card: 0 2px 4px rgba(29, 23, 21, .04), 0 12px 28px rgba(29, 23, 21, .08);
  --shadow-frame: 0 18px 40px rgba(29, 23, 21, .18), 0 2px 6px rgba(29, 23, 21, .1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: var(--wall);
  background-image: linear-gradient(180deg, #F8F6F2 0%, #F4F1EB 40%, #EFEAE2 100%);
  background-attachment: fixed;
}
body {
  font-family: var(--sans); color: var(--ink); background: transparent;
  line-height: 1.75; font-size: 15px; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--brick); }
.wrap { max-width: 1152px; margin: 0 auto; padding: 0 20px; }

/* 画廊光晕（微弱暖冷光） */
.atmosphere { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.wave {
  position: absolute; left: -30%; width: 160%; height: 40vh; border-radius: 50%;
  background: radial-gradient(60% 100% at 50% 100%, rgba(225, 182, 42, .16), rgba(225, 182, 42, 0) 70%);
  filter: blur(60px);
}
.wave.w1 { bottom: -18vh; animation: waveDrift 26s ease-in-out infinite; }
.wave.w2 { bottom: -6vh; height: 30vh; background: radial-gradient(60% 100% at 50% 100%, rgba(14, 117, 135, .14), rgba(14, 117, 135, 0) 70%); animation: waveDrift 34s ease-in-out infinite reverse; }
.wave.w3 { display: none; }
@keyframes waveDrift { 0%,100% { transform: translate3d(-3%,0,0); } 50% { transform: translate3d(3%,-10px,0); } }
.caustic { position: absolute; border-radius: 50%; filter: blur(70px); }
.caustic.c1 { width: 42vw; height: 42vw; right: -8%; top: -10%; background: radial-gradient(circle, rgba(220, 135, 111, .22), transparent 66%); animation: causticFloat 34s ease-in-out infinite; }
.caustic.c2 { width: 36vw; height: 36vw; left: -6%; top: 30%; background: radial-gradient(circle, rgba(48, 108, 123, .16), transparent 66%); animation: causticFloat 46s ease-in-out infinite reverse; }
@keyframes causticFloat { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(2%,3%,0) scale(1.06); } }
@media (prefers-reduced-motion: reduce) { .wave, .caustic { animation: none; } }

/* ---------- 顶栏 ---------- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 241, 235, .88);
  -webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, background .3s ease;
}
header.site.scrolled { background: rgba(244, 241, 235, .97); box-shadow: 0 6px 24px rgba(29, 23, 21, .08); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 12px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand .logo { align-self: baseline; }
.brand .tag { align-self: baseline; }
.brand .logo { font-family: var(--serif); font-size: 22px; font-weight: 900; color: var(--ink); letter-spacing: .5px; text-transform: uppercase; }
.brand .logo em { font-style: normal; color: var(--brick); }
.brand .tag { font-size: 11px; color: var(--ink-3); letter-spacing: 1px; }
.nav-right { display: flex; align-items: center; gap: 12px; }
nav.menu { display: flex; align-items: center; flex-wrap: wrap; }
nav.menu a { position: relative; color: var(--ink-2); margin-left: 22px; font-size: 14px; letter-spacing: 1px; padding: 4px 0; }
nav.menu a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 3px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-apple);
}
nav.menu a:hover::after, nav.menu a.active::after { transform: scaleX(1); }
nav.menu a.active { color: var(--ink); font-weight: 600; }
nav.menu a:hover { color: var(--ink); }
.lang-switch { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.lang-switch button { background: transparent; border: none; color: var(--ink-2); font-size: 12px; letter-spacing: 1px; padding: 6px 12px; cursor: pointer; font-family: var(--sans); transition: all .25s ease; }
.lang-switch button + button { border-left: 1px solid var(--line); }
.lang-switch button:hover { color: var(--ink); }
.lang-switch button.on { background: var(--ink); color: var(--wall); }
.nav-cta {
  background: var(--gold); color: var(--ink); border-radius: 999px; padding: 9px 20px;
  font-size: 13px; letter-spacing: 1px; white-space: nowrap; font-weight: 700; transition: all .32s var(--ease-apple);
}
.nav-cta:hover { background: var(--brick); color: var(--wall); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(161, 38, 39, .28); }
.nav-burger { display: none; background: transparent; border: 1px solid var(--line); border-radius: 6px; width: 38px; height: 34px; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.nav-burger span { display: block; width: 16px; height: 1.5px; background: var(--ink); border-radius: 2px; }

/* ---------- Hero：白墙 + 画框 + 色块 ---------- */
.hero-ed { position: relative; overflow: hidden; background: var(--wall); padding: 66px 0 54px; }
.hero-media, .shape-a, .shape-b, .shape-outline, .hero-index, .hero-bg-text { display: none; }
.hero-inner { position: relative; z-index: 3; }
.hero-eyebrow { font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: var(--ink-3); margin-bottom: 18px; }
.hero-head {
  font-family: var(--serif); font-weight: 900; line-height: 1.08;
  font-size: clamp(38px, 5.6vw, 74px); letter-spacing: 1px; color: var(--ink); margin-bottom: 22px;
}
.hero-head .l1, .hero-head .l2 { display: block; }
.hero-head em { font-style: normal; position: relative; z-index: 0; }
.hero-head em::after {
  content: ""; position: absolute; left: -.04em; right: -.04em; bottom: .06em; height: .34em;
  background: var(--gold); z-index: -1;
}
.hero-sub { max-width: 560px; font-size: 16px; line-height: 1.95; color: var(--ink-2); margin-bottom: 30px; }

/* 使命句：主标语负责被记住，这一句负责被理解（首页首屏） */
.hero-mission {
  font-family: var(--serif); font-size: 17.5px; font-weight: 600; line-height: 1.85;
  color: var(--ink); max-width: 520px; margin: 0 0 18px;
  border-left: 3px solid var(--gold); padding-left: 16px;
}

/* 「为什么值得关注」——策展判断层 */
.why-tag { font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--brick); white-space: nowrap; }
.why-line { border-left: 3px solid var(--gold); padding-left: 10px; margin-top: 4px; }
.why-box { border-left: 4px solid var(--gold); background: var(--beige); border-radius: 0 4px 4px 0; padding: 14px 18px; margin: 0 0 22px; }
.why-box p { margin: 6px 0 0; font-size: 15px; line-height: 1.9; color: var(--ink); }
.why-box .why-tag { display: inline-block; }

/* ---------- 04 WOMEN TO WATCH · 本周，一位值得你认识的女性 ---------- */
.watch-sec { padding: 40px 0 54px; }
.watch-card {
  position: relative; background: var(--wall-2); border: 1px solid var(--line);
  border-radius: 4px; padding: 30px 34px; box-shadow: var(--shadow-card);
}
.watch-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.watch-head .sec-label { margin-bottom: 0; }
.watch-head .sec-label i { color: var(--teal); }
.watch-sub { font-size: 12px; color: var(--ink-3); letter-spacing: 1px; }
.watch-body { display: flex; gap: 28px; align-items: flex-start; }
.watch-portrait {
  flex: 0 0 152px; width: 152px; height: 152px; border-radius: 50%; overflow: hidden;
  background: var(--ink); display: flex; align-items: center; justify-content: center;
}
.watch-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.watch-portrait .watch-initial { font-family: var(--serif); font-size: 62px; font-weight: 900; color: var(--gold); }
.watch-info { flex: 1; min-width: 0; }
.watch-name { font-family: var(--serif); font-size: 26px; font-weight: 900; line-height: 1.35; color: var(--ink); margin-bottom: 4px; }
.watch-role { font-size: 12.5px; letter-spacing: 1px; color: var(--teal); margin-bottom: 12px; }
.watch-why { font-size: 15.5px; line-height: 1.95; color: var(--ink-2); max-width: 640px; margin-bottom: 14px; }
.watch-link { font-size: 13px; font-weight: 600; color: var(--brick); }

/* ---------- 策展人手记（首页的个人声音） ---------- */
.note-sec { padding: 46px 0 6px; }
.note-card {
  position: relative; max-width: 860px; background: var(--beige);
  border: 1px solid var(--line); border-left: 6px solid var(--brick);
  border-radius: 4px; padding: 30px 34px 26px; box-shadow: var(--shadow-card);
}
.note-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.note-head .sec-label { margin-bottom: 6px; }
.note-head .sec-label i { color: var(--brick); font-style: normal; }
.note-week { font-size: 12px; color: var(--ink-3); letter-spacing: 1px; }
.note-title { font-family: var(--serif); font-size: 23px; font-weight: 800; line-height: 1.45; color: var(--ink); margin: 8px 0 14px; }
.note-body p { font-family: var(--serif); font-size: 16.5px; line-height: 2.05; color: var(--ink); margin-bottom: 14px; }
.note-body p:last-child { margin-bottom: 0; }
.note-by { margin-top: 18px; font-size: 12.5px; color: var(--ink-3); letter-spacing: 1px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-gallery { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
@media (max-width: 900px) { .hero-gallery { grid-template-columns: 1fr; gap: 28px; } }
.hero-frame { position: relative; }
.hero-frame .frame {
  background: var(--beige); padding: 16px; border-radius: 2px; box-shadow: var(--shadow-frame);
  transform: rotate(-1.2deg); transition: transform .5s var(--ease-apple);
}
.hero-frame:hover .frame { transform: rotate(0deg) translateY(-4px); }
.hero-frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; filter: grayscale(1) contrast(1.05); }
/* 题注已按主理人要求移除（2026-09-18）；如需恢复，加回 .hero-frame figcaption 样式与 index.html 的 figcaption */
.block-chip { position: absolute; border-radius: 2px; }
.chip-1 { width: 84px; height: 84px; background: var(--gold); top: -22px; right: -18px; }
.chip-2 { width: 56px; height: 116px; background: var(--brick); bottom: 34px; left: -22px; }
.chip-3 { width: 100px; height: 34px; background: var(--teal); bottom: -14px; right: 40px; }
.hero-foot { position: relative; z-index: 3; border-top: 3px solid var(--ink); margin-top: 44px; }
.hero-foot-in { display: flex; align-items: center; gap: 26px; padding: 14px 0; flex-wrap: wrap; }
.hero-foot-in a { font-size: 12.5px; letter-spacing: 1px; color: var(--ink-2); }
.hero-foot-in a:hover { color: var(--brick); }
.hero-foot-in .vol { margin-left: auto; font-size: 11.5px; letter-spacing: 2px; color: var(--ink-3); }

/* 胶囊按钮 */
.pill {
  display: inline-flex; align-items: center; gap: 14px; border-radius: 999px;
  border: 1px solid var(--ink); padding: 11px 12px 11px 26px; color: var(--ink);
  font-size: 14.5px; letter-spacing: 1px; background: transparent; transition: all .35s var(--ease-apple);
}
.pill i { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--ink); color: var(--wall); font-style: normal; transition: all .35s ease; }
.pill:hover { background: var(--ink); color: var(--wall); text-decoration: none; }
.pill:hover i { background: var(--gold); color: var(--ink); transform: translateX(2px); }
.pill.ghost { border-color: var(--line); color: var(--ink-2); }
.pill.ghost i { background: rgba(29, 23, 21, .08); color: var(--ink); }
.pill.ghost:hover { background: var(--coral); border-color: var(--coral); color: var(--ink); }
.pill.ghost:hover i { background: var(--ink); color: var(--wall); }
.pill.dark { border-color: rgba(29, 23, 21, .2); color: var(--ink); padding: 10px 12px 10px 24px; }
.pill.dark:hover { background: var(--ink); color: var(--wall); }
.pill.dark:hover i { background: var(--gold); color: var(--ink); }

/* ---------- 色块分区（大胆版） ---------- */
.band { padding: 54px 0; }
.band-yellow { background: var(--gold); }
.band-teal { background: var(--teal); color: var(--wall); }
.band-brick { background: var(--brick); color: var(--wall); }
.band-coral { background: var(--coral); }
.band-ink { background: var(--ink); color: var(--wall); }
.band-yellow .sec-label, .band-coral .sec-label, .band-yellow .block-head h2, .band-coral .block-head h2 { color: var(--ink); }
.band-teal .sec-label, .band-brick .sec-label, .band-ink .sec-label,
.band-teal .block-head h2, .band-brick .block-head h2, .band-ink .block-head h2 { color: var(--wall); }
.band-yellow .more, .band-coral .more { color: rgba(29, 23, 21, .72); }
.band-yellow .more:hover, .band-coral .more:hover { color: var(--brick); }
.band-teal .more, .band-brick .more, .band-ink .more { color: rgba(244, 241, 235, .82); }
.band-teal .more:hover, .band-brick .more:hover, .band-ink .more:hover { color: var(--gold); }

section.block { padding: 46px 0; }
.sec-label { display: inline-flex; align-items: baseline; gap: 12px; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--ink-2); font-weight: 700; margin-bottom: 10px; }
.sec-label i { font-family: var(--serif); font-style: normal; font-size: 13px; color: var(--brick); }
.sec-label.center { display: flex; justify-content: center; }
.block-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 26px; gap: 12px; }
.block-head h2 { font-family: var(--serif); font-size: 30px; font-weight: 800; line-height: 1.3; color: var(--ink); }
.more { font-size: 13px; letter-spacing: 1px; color: var(--ink-2); }
.more:hover { color: var(--brick); }

/* ---------- 卡片 ---------- */
.grid { display: grid; gap: 16px; }
.grid.c3 { grid-template-columns: repeat(3, 1fr); }
.grid.c2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid.c3, .grid.c2 { grid-template-columns: 1fr; } }
.card {
  position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; display: flex; flex-direction: column; gap: 10px; box-shadow: var(--shadow-card);
  transition: border-color .25s ease, transform .25s var(--ease-apple), box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 4px 8px rgba(29,23,21,.06), 0 20px 40px rgba(29,23,21,.14); border-color: rgba(29, 23, 21, .2); }
.card-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.cat { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--brick); }
.region { font-size: 12px; color: var(--ink-3); }
.card h3 { font-size: 16px; line-height: 1.55; font-weight: 700; color: var(--ink); }
.card h3 a:hover { color: var(--brick); }
.card .meta { font-size: 12.5px; color: var(--ink-3); }
.card p { font-size: 13.5px; color: var(--ink-2); flex: 1; }
.card .src { font-size: 12px; color: var(--ink-3); border-top: 1px solid var(--line); padding-top: 10px; }
.card .readmore a { font-size: 12.5px; color: var(--brick); font-weight: 600; }
.award { font-size: 12.5px; color: var(--gold-d); }

/* ---------- 作品海报墙 ---------- */
.grid.works-grid { grid-template-columns: repeat(5, 1fr); gap: 14px; }
@media (max-width: 1180px) { .grid.works-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 880px) { .grid.works-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .grid.works-grid { grid-template-columns: repeat(2, 1fr); } }
.card.work-card { padding: 0; gap: 0; overflow: hidden; border-radius: 4px; }
.card.work-card .card-media { display: block; margin: 0; }
.card.work-card .card-img img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; display: block; transition: transform .5s var(--ease-apple); }
.card.work-card:hover .card-img img { transform: scale(1.05); }
.work-meta { padding: 9px 11px 11px; display: flex; flex-direction: column; gap: 3px; }
.work-meta .cat { font-size: 10px; letter-spacing: 1.5px; }
.work-meta .region { font-size: 10.5px; }
.work-meta h3 { font-size: 13.5px; line-height: 1.45; font-weight: 700; color: var(--ink); }
.work-meta .meta { font-size: 11.5px; color: var(--ink-3); }
.work-meta .award { font-size: 11px; }
.ph-img { width: 100%; aspect-ratio: 16 / 9; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--teal) 0%, var(--teal-2) 52%, var(--brick) 100%); }
.ph-img span { font-family: var(--serif); font-size: 19px; font-weight: 700; letter-spacing: 3px; color: rgba(255,255,255,.85); text-transform: uppercase; }

/* ---------- 工具条 ---------- */
.toolbar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.toolbar input { flex: 1; min-width: 240px; padding: 11px 16px; font-size: 15px; border: 1px solid var(--line); border-radius: 6px; background: var(--paper); color: var(--ink); font-family: var(--sans); }
.toolbar input::placeholder { color: var(--ink-3); }
.toolbar input:focus { outline: none; border-color: var(--brick); box-shadow: 0 0 0 3px rgba(161, 38, 39, .12); }
.tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.tabs button { border: 1px solid var(--line); background: var(--paper); color: var(--ink-2); padding: 9px 18px; border-radius: 6px; font-size: 14px; cursor: pointer; font-family: var(--sans); letter-spacing: 1px; transition: all .25s ease; }
.tabs button:hover { border-color: var(--ink); color: var(--ink); }
.tabs button.on { background: var(--gold); border-color: var(--gold); color: var(--ink); font-weight: 700; }
.tabs.regions button, .tabs.sorts button { font-size: 13px; padding: 7px 14px; letter-spacing: 0; }
.tabs.regions button.on, .tabs.sorts button.on { background: var(--brick); border-color: var(--brick); color: var(--wall); }
.count { font-size: 13px; color: var(--ink-3); margin-bottom: 16px; letter-spacing: 1px; }

/* ---------- 周报 / 文章 ---------- */
.issue-cover { margin-bottom: 22px; }
.issue-cover img { width: 100%; max-height: 320px; object-fit: cover; border-radius: 4px; border: 1px solid var(--line); }
.issue-item { border-top: 1px solid var(--line); padding: 16px 0; }
.issue-item:first-of-type { border-top: none; padding-top: 0; }
.issue-item h3 { font-size: 16px; margin-bottom: 6px; font-weight: 700; }
.issue-item h3 a { color: var(--ink); }
.issue-item h3 a:hover { color: var(--brick); }
.issue-item p { font-size: 14px; color: var(--ink-2); }
.issue-item .src { font-size: 12.5px; color: var(--ink-3); margin-top: 6px; }
.issue-item .src a { color: var(--brick); }
.issue-item.has-thumb { overflow: hidden; }
.issue-thumb { float: left; width: 132px; height: 88px; object-fit: cover; border-radius: 4px; margin: 2px 16px 8px 0; border: 1px solid var(--line); transition: transform .35s ease; }
.issue-item.has-thumb:hover .issue-thumb { transform: scale(1.04); }
.sec-heading { font-family: var(--serif); font-size: 21px; font-weight: 800; color: var(--ink); border-left: 5px solid var(--gold); padding-left: 12px; margin: 28px 0 8px; }
.news-title { font-family: var(--serif); font-size: 34px; font-weight: 800; line-height: 1.3; margin: 6px 0; letter-spacing: .5px; color: var(--ink); }
.news-lead { font-size: 16.5px; color: var(--ink-2); line-height: 1.85; }
.news-figure { margin: 0 0 26px; }
.news-img img, .news-img.ph-img { width: 100%; max-height: 430px; object-fit: cover; display: block; border-radius: 4px; border: 1px solid var(--line); }
.news-figure figcaption { font-size: 12px; color: var(--ink-3); margin-top: 8px; }
.news-body { max-width: 760px; }
.news-body p { font-size: 15.5px; line-height: 2; color: #33302D; margin-bottom: 18px; text-align: justify; }
.news-body p:first-child::first-letter { font-family: var(--serif); font-size: 30px; font-weight: 800; color: var(--brick); float: left; line-height: 1; margin: 6px 8px 0 0; }
.news-source { margin-top: 26px; border: 1px solid var(--line); border-left: 5px solid var(--gold); border-radius: 4px; background: var(--paper); padding: 16px 18px; font-size: 13.5px; color: var(--ink-2); }
.news-source a { color: var(--brick) !important; }

/* ---------- 作品详情 ---------- */
.work-detail { display: flex; gap: 28px; align-items: flex-start; }
.work-poster { flex: 0 0 260px; }
.work-poster img { width: 100%; border-radius: 4px; border: 1px solid var(--line); display: block; box-shadow: var(--shadow-frame); }
.work-detail-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 10px; }
@media (max-width: 760px) { .work-detail { flex-direction: column; } .work-poster { flex: none; width: 62%; } }
.work-links { border-top: 1px solid var(--line); padding-top: 14px; margin-top: 4px; }
.work-link { display: inline-block; margin-right: 12px; margin-bottom: 6px; border: 1px solid rgba(29, 23, 21, .2); border-radius: 999px; padding: 8px 18px; font-size: 13px; color: var(--ink); transition: all .25s ease; }
.work-link:hover { background: var(--ink); color: var(--wall); border-color: var(--ink); }
.work-link.pd { border-color: var(--brick); color: var(--brick); }
.work-link.pd:hover { background: var(--brick); color: var(--wall); }
.f-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px; }

/* ---------- 关于页 ---------- */
.about-hero { padding-top: 60px; padding-bottom: 36px; }
.about-title { font-family: var(--serif); font-size: 46px; font-weight: 900; line-height: 1.22; letter-spacing: .5px; margin: 12px 0 20px; color: var(--ink); }
.about-lead { font-size: 17.5px; line-height: 1.95; color: var(--ink-2); max-width: 780px; }
.about-mission { font-size: 17px; line-height: 1.9; color: var(--ink-2); max-width: 780px; margin-bottom: 30px; border-left: 6px solid var(--gold); padding-left: 18px; }
.value-grid { gap: 16px; }
.value-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; position: relative; overflow: hidden; box-shadow: var(--shadow-card); transition: transform .35s var(--ease-apple), box-shadow .35s ease; }
.value-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(29,23,21,.14); }
.value-card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 5px; background: var(--gold); }
.value-card:nth-child(2)::before { background: var(--brick); }
.value-card:nth-child(3)::before { background: var(--teal); }
.value-card:nth-child(4)::before { background: var(--coral); }
.value-num { font-family: var(--serif); font-size: 40px; font-weight: 900; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(29, 23, 21, .35); margin-bottom: 10px; transition: -webkit-text-stroke-color .35s ease; }
.value-card:hover .value-num { -webkit-text-stroke-color: var(--brick); }
.value-card h3 { font-family: var(--serif); font-size: 21px; font-weight: 800; margin-bottom: 8px; color: var(--ink); }
.value-card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.85; }
.story p { font-size: 16px; line-height: 2.05; color: var(--ink-2); max-width: 820px; margin-bottom: 18px; }
.team-grid { gap: 16px; margin-top: 6px; }
.team-card { display: flex; gap: 18px; align-items: flex-start; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-card); transition: transform .35s var(--ease-apple); }
.team-card:hover { transform: translateY(-3px); }
.avatar { flex: 0 0 auto; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 24px; font-weight: 800; color: var(--wall); background: var(--brick); }
.avatar.alt { background: var(--teal); }
.team-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 2px; color: var(--ink); }
.team-card .role { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--brick); margin-bottom: 8px; }
.team-card p { font-size: 14px; color: var(--ink-2); line-height: 1.85; }
.cta-box { position: relative; overflow: hidden; text-align: center; border: 1px solid var(--line); border-radius: 6px; padding: 46px 30px; background: var(--gold); }
.cta-box h3 { font-family: var(--serif); font-size: 28px; font-weight: 800; margin-bottom: 12px; color: var(--ink); }
.cta-box p { color: rgba(29, 23, 21, .78); max-width: 560px; margin: 0 auto 24px; line-height: 1.9; }
.mini-cta { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; box-shadow: var(--shadow-card); transition: transform .35s var(--ease-apple); }
.mini-cta:hover { transform: translateY(-3px); }
.mini-cta p { color: var(--ink-2); font-size: 14.5px; line-height: 1.9; }

/* ---------- 面板 / 表单 ---------- */
.panel { background: var(--paper); border: 1px solid var(--line); border-radius: 6px; padding: 34px; max-width: 720px; margin: 0 auto; box-shadow: var(--shadow-card); }
.panel h2 { font-family: var(--serif); font-size: 26px; font-weight: 800; margin-bottom: 14px; color: var(--ink); }
.panel h3 { font-family: var(--serif); font-size: 20px; font-weight: 800; margin: 24px 0 10px; color: var(--ink); }
.panel p { margin-bottom: 10px; color: var(--ink-2); }
.panel strong { color: var(--ink); }
form.inline { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
form.inline input, form.inline textarea { flex: 1; min-width: 220px; padding: 11px 14px; border: 1px solid var(--line); border-radius: 6px; font-size: 14px; font-family: var(--sans); background: var(--wall); color: var(--ink); }
form.inline textarea { min-height: 110px; resize: vertical; }
form.inline input:focus, form.inline textarea:focus { outline: none; border-color: var(--brick); }
.btn { display: inline-block; background: var(--ink); color: var(--wall); border: 1px solid var(--ink); border-radius: 999px; padding: 11px 28px; font-size: 14px; letter-spacing: 1px; cursor: pointer; transition: all .3s var(--ease-apple); }
.btn:hover { background: var(--brick); border-color: var(--brick); color: var(--wall); text-decoration: none; }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.note { font-size: 12.5px; color: var(--ink-3); }
.muted { color: var(--ink-2); }

/* ---------- 跑马灯（砖红色块带） ---------- */
.ticker { overflow: hidden; background: var(--brick); padding: 14px 0; }
.ticker-track { display: inline-flex; align-items: center; white-space: nowrap; animation: tickerMove 32s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.tick { font-family: var(--serif); font-size: 15px; letter-spacing: 3px; color: var(--wall); text-transform: uppercase; padding: 0 14px; transition: color .3s ease; }
.ticker-track .tick:hover { color: var(--gold); }
.tick-dot { color: var(--gold); font-size: 9px; padding: 0 4px; }
@keyframes tickerMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- 页脚（墨黑色块带） ---------- */
footer.site { background: var(--ink); color: var(--wall); padding: 48px 0 30px; border-top: 8px solid var(--gold); }
.f-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 30px; }
@media (max-width: 860px) { .f-grid { grid-template-columns: 1fr 1fr; } }
.f-logo { font-family: var(--serif); font-size: 22px; font-weight: 900; color: var(--wall); }
.f-logo em { font-style: normal; color: var(--gold); }
.f-tag { font-size: 12px; color: rgba(244, 241, 235, .6); margin-top: 6px; letter-spacing: 1px; }
.f-label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(244, 241, 235, .55); margin-bottom: 12px; }
.f-col a { display: block; font-size: 13.5px; color: rgba(244, 241, 235, .78); margin-bottom: 8px; }
.f-col a:hover { color: var(--gold); }
.f-mission { font-size: 13.5px; color: rgba(244, 241, 235, .78); }
.f-contact { font-size: 12.5px; color: rgba(244, 241, 235, .6); margin-top: 10px; }
.f-bottom { border-top: 1px solid rgba(244, 241, 235, .18); margin-top: 34px; padding-top: 18px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 12px; color: rgba(244, 241, 235, .6); }

/* 图片来源与免责声明（页脚，全站） */
.f-legal {
  margin-top: 26px; padding-top: 14px; border-top: 1px solid rgba(244, 241, 235, .14);
  font-size: 11.5px; line-height: 1.9; color: rgba(244, 241, 235, .5); max-width: 920px;
}
.f-legal a { color: var(--gold); padding: 5px 0; }
.f-legal a:hover { color: var(--wall); }

/* 作品页封面来源说明 */
.work-credit { margin: 8px 0 0; font-size: 11.5px; line-height: 1.75; color: var(--ink-3); }

/* ---------- 动效 / 转场 ---------- */
.scroll-bar { position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 200; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--gold), var(--brick), var(--coral), var(--teal)); will-change: transform; }
.to-top { position: fixed; right: 26px; bottom: 26px; z-index: 120; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: var(--paper); color: var(--ink); font-size: 16px; cursor: pointer; box-shadow: 0 8px 24px rgba(29, 23, 21, .16); opacity: 0; pointer-events: none; transform: translateY(12px); transition: all .35s var(--ease-apple); }
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--brick); color: var(--wall); border-color: var(--brick); transform: translateY(-3px); }
.page-veil { position: fixed; inset: 0; z-index: 300; pointer-events: none; opacity: 0; background: radial-gradient(120% 100% at 50% 0%, rgba(225, 182, 42, .5) 0%, rgba(244, 241, 235, .96) 46%, var(--wall) 100%); transition: opacity .5s var(--ease-apple), backdrop-filter .5s var(--ease-apple); }
.page-veil.entering { opacity: 1; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.page-veil.leaving { opacity: 1; }
.page-veil.gone { opacity: 0; }
body.page-in { animation: pageIn .6s var(--ease-apple) both; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
body.page-out { opacity: 0; transform: translateY(-6px); transition: opacity .3s var(--ease-apple), transform .3s var(--ease-apple); }
.reveal { opacity: 0; transform: translateY(26px); filter: blur(10px); transition: opacity .9s var(--ease-apple), transform 1s var(--ease-apple), filter .8s var(--ease-apple); will-change: opacity, transform, filter; }
.reveal.in { opacity: 1; transform: none; filter: blur(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
  body.page-in { animation: none; }
  .page-veil { display: none; }
}

/* ---------- 响应式 ---------- */
@media (max-width: 900px) {
  .nav-burger { display: flex; }
  nav.menu { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--wall); border-bottom: 1px solid var(--line); box-shadow: 0 12px 30px rgba(29,23,21,.1); padding: 14px 20px; flex-direction: column; align-items: flex-start; gap: 4px; }
  nav.menu.open { display: flex; }
  nav.menu a { margin: 8px 0; font-size: 15px; }
  .lang-switch { border: none; }
  .lang-switch button { border: 1px solid var(--line); border-radius: 6px; margin-right: 6px; padding: 5px 11px; }
  .brand .tag { display: none; }
  .hero-ed { padding: 42px 0 34px; }
  .about-title { font-size: 34px; }
  .news-title { font-size: 26px; }
}


/* ================= 紧凑网格（参考 demo digest：小图 + 文字，3 列细线网格） ================= */
.mini-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line); background: var(--beige); border-radius: 4px; overflow: hidden;
  box-shadow: var(--shadow-card);
}
@media (max-width: 900px) { .mini-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .mini-grid { grid-template-columns: 1fr; } }
.mini-cell {
  display: flex; gap: 12px; align-items: flex-start; padding: 14px;
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.mini-cell:nth-child(3n) { border-right: none; }
@media (max-width: 900px) { .mini-cell:nth-child(3n) { border-right: 1px solid var(--line); } .mini-cell:nth-child(2n) { border-right: none; } }
.mini-thumb {
  flex: 0 0 auto; width: 76px; height: 76px; overflow: hidden; border-radius: 3px; background: var(--wall-2);
  display: block;
}
.mini-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s var(--ease-apple); }
.mini-thumb.poster { width: 64px; height: 92px; }
.mini-cell:hover .mini-thumb img { transform: scale(1.06); }
.mini-body { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.mini-meta { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.mini-meta .cat { font-size: 10px; letter-spacing: 1.6px; }
.mini-meta .region { font-size: 10.5px; color: var(--ink-3); }
.mini-body h3 { font-size: 14.5px; line-height: 1.5; font-weight: 700; color: var(--ink); }
.mini-body h3 a { color: var(--ink); }
.mini-body h3 a:hover { color: var(--brick); }
.mini-body p {
  font-size: 12.5px; line-height: 1.7; color: var(--ink-2); margin: 0;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.mini-body .meta { font-size: 12px; color: var(--ink-3); }
.mini-body .award { font-size: 12px; color: var(--gold-d); }
.thumb-img.ph-img { width: 100%; height: 100%; aspect-ratio: auto; }
.thumb-img.ph-img span { font-size: 13px; letter-spacing: 1px; }


/* ================= digest 区（1:1 对齐 yuanxiuzhong.com/#digest） ================= */
/* 头部行：label + 期号（左）· 往期链接（右）；mb-6 / md:mb-10，border-b pb-4 */
.digest-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--line);
}
.digest-head-left { display: flex; align-items: center; gap: 12px; }
.digest-label { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--brick); }
.digest-issue { font-size: 12px; color: var(--ink-3); }
.digest-archive { font-size: 12px; color: var(--ink-3); letter-spacing: .025em; }
.digest-archive:hover { color: var(--ink); }
@media (min-width: 900px) { .digest-head { margin-bottom: 40px; } }

/* 网格：grid-cols-1 lg:grid-cols-3 gap-0 border */
.digest-grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border: 1px solid var(--line); background: var(--paper);
  box-shadow: var(--shadow-card); border-radius: 4px; overflow: hidden;
}
@media (min-width: 900px) { .digest-grid { grid-template-columns: repeat(3, 1fr); } }

/* 大卡：lg:col-span-2，border-b / lg:border-r */
.dg-lead { border-bottom: 1px solid var(--line); }
@media (min-width: 900px) { .dg-lead { grid-column: span 2; border-bottom: 0; border-right: 1px solid var(--line); } }
/* 图：aspect-[16/9] + 底部渐变遮罩 + hover 1.02 */
.dg-media { position: relative; display: block; overflow: hidden; aspect-ratio: 16 / 9; }
.dg-img, .dg-img img { width: 100%; height: 100%; }
.dg-img img { object-fit: cover; display: block; transition: transform .5s var(--ease-apple); }
.dg-media:hover .dg-img img { transform: scale(1.02); }
.dg-media::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(0,0,0,.6), transparent); }
/* 文字区：p-5 md:p-8 */
.dg-lead-body { padding: 20px; }
@media (min-width: 900px) { .dg-lead-body { padding: 32px; } }
.dg-lead-body h2 { font-family: var(--serif); font-weight: 700; font-size: 18px; line-height: 1.35; margin: 8px 0; color: var(--ink); }
@media (min-width: 900px) { .dg-lead-body h2 { font-size: 24px; margin: 12px 0; } }
.dg-lead-body p {
  font-size: 14px; line-height: 1.75; color: var(--ink-2); margin-bottom: 12px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
@media (min-width: 900px) { .dg-lead-body p { margin-bottom: 16px; } }
.dg-more { font-size: 12px; font-weight: 600; letter-spacing: .025em; color: var(--brick); }
.dg-more:hover { color: var(--ink); }

/* 右侧条目列：移动端横向滚动，lg 纵向 */
.dg-side { display: flex; flex-direction: row; overflow-x: auto; -webkit-overflow-scrolling: touch; }
@media (min-width: 900px) { .dg-side { flex-direction: column; overflow-x: visible; } }
.dg-item {
  flex-shrink: 0; width: 288px; display: flex; gap: 12px; padding: 16px;
  border-right: 1px solid var(--line); transition: background-color .2s ease;
}
.dg-item:last-child { border-right: none; }
@media (min-width: 900px) {
  .dg-item { width: auto; padding: 20px; border-right: 0; border-bottom: 1px solid var(--line); }
  .dg-item:last-child { border-bottom: none; }
}
.dg-item:hover { background: var(--wall-2); }
/* 缩略图：w-16 h-16 md:w-20 md:h-20 */
.dg-thumb { flex-shrink: 0; width: 64px; height: 64px; overflow: hidden; border-radius: 3px; background: var(--wall-2); display: block; }
@media (min-width: 900px) { .dg-thumb { width: 80px; height: 80px; } }
.dg-timg, .dg-timg img { width: 100%; height: 100%; }
.dg-timg img { object-fit: cover; display: block; transition: transform .3s ease; }
.dg-item:hover .dg-timg img { transform: scale(1.02); }
.dg-item-body { min-width: 0; }
.dg-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.dg-cat { font-size: 12px; font-weight: 600; letter-spacing: .025em; color: var(--brick); }
.dg-region { font-size: 12px; color: var(--ink-3); }
@media (max-width: 640px) { .dg-region { display: none; } }
.dg-item-body h3 {
  font-size: 14px; font-weight: 600; line-height: 1.35; margin-bottom: 4px; color: var(--ink);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.dg-item-body h3 a { color: var(--ink); }
.dg-item-body h3 a:hover { color: var(--brick); }
.dg-item-body p {
  font-size: 12px; line-height: 1.7; color: var(--ink-2);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
@media (max-width: 640px) { .dg-item-body p { display: none; } }
.dg-img.ph-img, .dg-timg.ph-img { width: 100%; height: 100%; aspect-ratio: auto; }
.dg-timg.ph-img span { font-size: 11px; letter-spacing: 1px; }


/* digest 网格内部：米色 */
.digest-grid { background: var(--beige); }
.dg-item:hover { background: #E7DCC4; }


/* 筛选下拉（国家 / 年代 / 字母 / 排序） */
.toolbar.filters { gap: 14px; align-items: center; flex-wrap: wrap; }
.filter { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 1px; color: var(--ink-3); }
.filter select {
  font-family: var(--sans); font-size: 14px; color: var(--ink);
  background: var(--beige); border: 1px solid var(--line); border-radius: 6px;
  padding: 8px 12px; min-width: 132px; cursor: pointer;
  transition: border-color .2s ease;
}
.filter select:hover { border-color: var(--ink); }
.filter select:focus { outline: none; border-color: var(--brick); box-shadow: 0 0 0 3px rgba(161, 38, 39, .12); }


/* =====================================================================
   移动端适配（手机 / 平板）
   断点：≤900px 平板与手机通用 · ≤640px 手机 · ≤400px 小屏手机
   原则：先保证不横向溢出，其次保证触控目标 ≥44px，最后保排版节奏
   ===================================================================== */

/* --- 全局兜底 --- */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; overflow-x: clip; }
body { overflow-x: clip; }
img, svg, video, iframe { max-width: 100%; }
/* 手机端下拉菜单按钮（桌面端由顶栏 CTA 承担，隐藏） */
nav.menu a.menu-cta { display: none; }

@media (max-width: 900px) {
  /* ---------- 顶栏 ---------- */
  .wrap { padding: 0 16px; }
  .nav { min-height: 60px; gap: 8px; }
  .brand { min-width: 0; flex-shrink: 1; overflow: hidden; }
  .brand .logo { white-space: nowrap; font-size: 19px; letter-spacing: .3px; }
  .nav-right { gap: 8px; flex-shrink: 0; }
  /* 汉堡按钮移到最右，符合手机习惯 */
  .nav-burger { order: 3; width: 44px; height: 44px; border-radius: 8px; gap: 5px; }
  .nav-burger span { width: 18px; height: 2px; }
  /* 下拉菜单：整行可点，触控目标 ≥48px */
  nav.menu {
    top: 100%; left: 0; right: 0; padding: 6px 16px 14px;
    background: var(--wall); border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 34px rgba(29, 23, 21, .12);
    max-height: calc(100vh - 60px); overflow-y: auto;
    flex-direction: column; align-items: stretch; gap: 0;
  }
  nav.menu a { margin: 0; padding: 14px 0; font-size: 16px; letter-spacing: .5px; border-bottom: 1px solid var(--line); }
  nav.menu a::after { display: none; }
  nav.menu a.active { color: var(--brick); font-weight: 700; }
  nav.menu a.menu-cta {
    display: inline-flex; align-items: center; justify-content: center;
    margin: 14px 0 4px; padding: 13px 18px; border: none; border-radius: 999px;
    background: var(--gold); color: var(--ink); font-weight: 700; font-size: 15px;
  }
  nav.menu a.menu-cta.active { color: var(--ink); }
  /* 语言切换：三个按钮等宽，触控友好 */
  .lang-switch { border: none; border-radius: 0; gap: 4px; }
  .lang-switch button {
    border: 1px solid var(--line); border-radius: 7px; margin: 0;
    padding: 0 9px; min-width: 40px; height: 40px; font-size: 12.5px; letter-spacing: .5px;
  }

  /* ---------- 通用节奏 ---------- */
  .band { padding: 40px 0; }
  section.block { padding: 34px 0; }
  .grid { gap: 12px; }
  /* 三列网格降为两列（平板），≤640px 再降为单列 */
  .grid.c3 { grid-template-columns: repeat(2, 1fr); }
  .sec-label { letter-spacing: 2px; margin-bottom: 8px; }
  .block-head { flex-wrap: wrap; align-items: flex-end; gap: 4px 12px; margin-bottom: 18px; }
  .block-head h2 { font-size: 23px; }
  .more { display: inline-block; padding: 8px 0; font-size: 13px; }

  /* ---------- 首屏 ---------- */
  .hero-ed { padding: 34px 0 30px; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 3px; margin-bottom: 12px; }
  .hero-head { font-size: clamp(29px, 8.6vw, 46px); line-height: 1.14; margin-bottom: 16px; }
  .hero-mission { font-size: 16px; padding-left: 13px; margin-bottom: 14px; max-width: none; }
  .hero-sub { font-size: 15.5px; line-height: 1.9; max-width: 620px; margin-bottom: 22px; }
  .hero-btns { gap: 10px; }
  .pill { padding: 9px 10px 9px 20px; font-size: 14px; gap: 10px; }
  .pill i { width: 30px; height: 30px; }
  .hero-gallery { gap: 26px; }
  .hero-frame .frame { padding: 12px; transform: rotate(-1deg); }
  .hero-frame img { aspect-ratio: 4 / 3; }
  
  .chip-1 { width: 56px; height: 56px; top: -14px; right: -12px; }
  .chip-2 { width: 38px; height: 76px; left: -14px; bottom: 22px; }
  .chip-3 { width: 68px; height: 24px; right: 22px; bottom: -11px; }
  .hero-foot { margin-top: 28px; }
  .hero-foot-in { gap: 4px 18px; padding: 12px 0; }
  .hero-foot-in a { padding: 8px 0; font-size: 12.5px; }
  .hero-foot-in .vol { margin-left: 0; width: 100%; letter-spacing: 1.5px; }

  /* ---------- 跑马灯 ---------- */
  .ticker { padding: 12px 0; }
  .tick { font-size: 13.5px; letter-spacing: 2px; padding: 0 10px; }

  /* 策展人手记 */
  .note-sec { padding: 34px 0 4px; }
  .note-card { padding: 22px 18px 20px; border-left-width: 5px; }
  .note-title { font-size: 19px; margin: 6px 0 10px; }
  .note-body p { font-size: 15.5px; line-height: 1.95; }

  /* WOMEN TO WATCH */
  .watch-sec { padding: 30px 0 40px; }
  .watch-card { padding: 22px 18px; }
  .watch-body { flex-direction: column; gap: 16px; }
  .watch-portrait { flex: none; width: 110px; height: 110px; }
  .watch-portrait .watch-initial { font-size: 44px; }
  .watch-name { font-size: 21px; }
  .watch-why { font-size: 15px; line-height: 1.9; }

  /* ---------- 本周精选（digest） ---------- */
  .digest-head { flex-wrap: wrap; gap: 4px 12px; margin-bottom: 16px; padding-bottom: 12px; }
  .digest-head-left { gap: 8px; }
  .digest-archive { padding: 6px 0; }
  .dg-lead-body { padding: 18px; }
  .dg-lead-body h2 { font-size: 17px; margin: 6px 0; }
  .dg-lead-body p { -webkit-line-clamp: 4; margin-bottom: 10px; }
  .dg-more { display: inline-block; padding: 6px 0; font-size: 13px; }
  /* 横滑条：吸附滚动 + 隐藏滚动条 */
  .dg-side { scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; }
  .dg-side::-webkit-scrollbar { display: none; }
  .dg-item { width: 84%; max-width: 320px; scroll-snap-align: start; padding: 14px 16px 16px; }
  .dg-thumb { width: 60px; height: 60px; }
  .dg-item-body h3 { font-size: 14.5px; }

  /* ---------- 精选网格 ---------- */
  .mini-cell { padding: 12px; }
  .mini-thumb { width: 68px; height: 68px; }
  .mini-thumb.poster { width: 58px; height: 84px; }
  .mini-body h3 { font-size: 14px; }
  .mini-body p { -webkit-line-clamp: 2; }

  /* ---------- 作品检索页 ---------- */
  .toolbar.filters { gap: 10px; }
  .filter { flex: 1 1 calc(50% - 5px); flex-direction: column; align-items: stretch; gap: 4px; }
  .filter select { width: 100%; min-width: 0; padding: 0 12px; height: 44px; font-size: 16px; }
  .tabs { gap: 6px; }
  .tabs button, .tabs.regions button, .tabs.sorts button { padding: 0 14px; height: 42px; font-size: 13.5px; letter-spacing: .5px; }
  .count { margin-bottom: 12px; }
  .work-meta { padding: 9px 10px 11px; }
  .work-meta h3 { font-size: 13px; }

  /* ---------- 表单 / 面板 ---------- */
  .panel { padding: 22px 18px; }
  .panel h2 { font-size: 22px; }
  .panel h3 { font-size: 18px; margin: 20px 0 8px; }
  form.inline { flex-direction: column; gap: 10px; }
  form.inline input, form.inline textarea, .toolbar input, select, textarea {
    width: 100%; min-width: 0; font-size: 16px; /* ≥16px 避免 iOS 聚焦自动放大 */
  }
  form.inline input, form.inline textarea { padding: 13px 14px; }
  form.inline .btn { width: 100%; text-align: center; padding: 14px 22px; }

  /* ---------- 文章 / 周报 ---------- */
  .news-title { font-size: clamp(22px, 6.6vw, 30px); }
  .news-lead { font-size: 15.5px; line-height: 1.85; }
  .news-body { max-width: none; }
  .news-body p { font-size: 15.5px; line-height: 1.95; text-align: left; margin-bottom: 16px; }
  .news-img img, .news-img.ph-img { max-height: 300px; }
  .news-source { padding: 14px 16px; font-size: 13px; }
  .news-source, .issue-item .src, .card .src { word-break: break-word; }
  .sec-heading { font-size: 19px; margin: 24px 0 6px; padding-left: 10px; border-left-width: 4px; }
  .issue-cover img { max-height: 220px; }
  .issue-item { padding: 14px 0; }
  .issue-item h3 { font-size: 15.5px; }
  .issue-item p { font-size: 13.5px; }
  /* 缩略图由浮动改为整行图，避免手机上一行只剩几个字 */
  .issue-thumb { float: none; width: 100%; height: auto; aspect-ratio: 16 / 9; margin: 0 0 10px; }

  /* ---------- 作品详情 ---------- */
  .work-detail { gap: 18px; }
  .work-poster { width: 56%; }
  .work-link { padding: 11px 18px; margin-right: 8px; }

  /* ---------- 关于页 ---------- */
  .about-hero { padding-top: 40px; padding-bottom: 26px; }
  .about-title { font-size: clamp(26px, 8vw, 36px); margin: 10px 0 16px; }
  .about-lead { font-size: 16px; line-height: 1.9; }
  .about-mission { font-size: 15.5px; line-height: 1.9; padding-left: 14px; border-left-width: 5px; margin-bottom: 24px; }
  .value-card, .mini-cta { padding: 20px 18px; }
  .value-num { font-size: 34px; margin-bottom: 8px; }
  .value-card h3 { font-size: 19px; }
  .value-card p { font-size: 14px; }
  .story p { font-size: 15.5px; line-height: 1.95; }
  .team-card { padding: 18px; gap: 14px; }
  .avatar { width: 50px; height: 50px; font-size: 20px; }
  .team-card h3 { font-size: 16px; }
  .cta-box { padding: 32px 18px; }
  .cta-box h3 { font-size: 23px; }
  .cta-box p { font-size: 14.5px; }
  .cta-box .hero-btns { justify-content: center; }

  /* ---------- 页脚 ---------- */
  footer.site { padding: 36px 0 calc(26px + env(safe-area-inset-bottom)); border-top-width: 6px; }
  .f-grid { gap: 22px; }
  .f-col a { padding: 7px 0; margin-bottom: 0; font-size: 14px; }
  .f-bottom { flex-direction: column; align-items: flex-start; gap: 4px; margin-top: 24px; }

  /* ---------- 悬浮控件 ---------- */
  .to-top { right: 14px; bottom: calc(14px + env(safe-area-inset-bottom)); width: 44px; height: 44px; font-size: 17px; }
  /* 手机端关闭"模糊入场"，避免长页面滚动卡顿 */
  .reveal { filter: none; transform: translateY(14px); transition: opacity .6s var(--ease-apple), transform .6s var(--ease-apple); }
  .card:hover, .value-card:hover, .team-card:hover, .mini-cta:hover { transform: none; }

  /* ---------- 触控目标补足（≥44px 或整卡可点） ---------- */
  .brand { min-height: 44px; align-items: center; }
  .nav-cta { min-height: 40px; display: inline-flex; align-items: center; }
  .f-logo { display: inline-block; padding: 6px 0; }
  .f-col a, .hero-foot-in a { min-height: 34px; display: flex; align-items: center; }
  /* 作品卡：整张卡片可点（标题链接铺满卡片），避免手机上只能点中 19px 文字 */
  .card.work-card .card-media { position: static; }
  .card.work-card .card-media::after { content: ""; position: absolute; inset: 0; z-index: 2; }
  .card.work-card .work-meta { position: relative; z-index: 3; pointer-events: none; }
  .card.work-card .work-meta a { pointer-events: auto; }
  .work-meta h3 a { display: block; padding: 4px 0; }
  /* 精选小格：同样整格可点 */
  .mini-cell { position: relative; }
  .mini-thumb::after { content: ""; position: absolute; inset: 0; z-index: 2; }
  .mini-body { position: relative; z-index: 3; pointer-events: none; }
  .mini-body a { pointer-events: auto; display: block; padding: 4px 0; }
  /* 往期条目：标题与"阅读完整报道"加大可点区域 */
  .issue-item h3 a { display: block; padding: 4px 0; }
  .issue-item .src a { display: inline-block; padding: 6px 0; }
  p.muted a { display: inline-block; padding: 6px 0; }
  .digest-archive, .more, .dg-more { min-height: 34px; display: inline-flex; align-items: center; }
  /* 本周精选：大卡与右侧小条整卡可点 */
  .dg-lead { position: relative; }
  .dg-lead-body h2 a { display: block; padding: 4px 0; }
  .dg-lead-body h2 a::after { content: ""; position: absolute; inset: 0; z-index: 2; }
  .dg-lead-body .dg-more { position: relative; z-index: 3; }
  .dg-item { position: relative; }
  .dg-item-body h3 a { display: block; padding: 2px 0; }
  .dg-item-body h3 a::after { content: ""; position: absolute; inset: 0; z-index: 2; }
  .dg-item-body .dg-region, .dg-item-body .dg-cat { position: relative; }
}

/* ---------- 手机（≤640px） ---------- */
@media (max-width: 640px) {
  /* 顶栏：让位给品牌与语言，订阅入口收进下拉菜单 */
  .nav-cta { display: none; }
  .brand .logo { font-size: 18px; }
  .nav { min-height: 58px; }
  nav.menu { max-height: calc(100vh - 58px); }

  /* 首屏 */
  .hero-ed { padding: 30px 0 26px; }
  .hero-head { font-size: clamp(27px, 9.6vw, 38px); }
  .hero-head em::after { height: .28em; }
  .hero-sub { font-size: 15px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .pill { justify-content: space-between; padding: 10px 12px 10px 20px; }
  .hero-frame .frame { padding: 10px; }
  .hero-frame img { aspect-ratio: 5 / 4; }

  /* 网格列数 */
  .grid.c3, .grid.c2, .mini-grid, .value-grid, .team-grid, .f-grid { grid-template-columns: 1fr; }
  .mini-cell { border-right: none; }
  .grid.works-grid { gap: 10px; }
  .mini-thumb { width: 76px; height: 76px; }
  .mini-thumb.poster { width: 62px; height: 90px; }

  /* 卡片 */
  .card { padding: 16px; }
  .card h3 { font-size: 15.5px; }
  .card p { font-size: 13.5px; }

  /* 详情页海报放大到整行，视觉更清楚 */
  .work-poster { width: 100%; }
  .work-detail-body h1, .news-title { font-size: 22px; }

  /* 面板与表单 */
  .panel { padding: 20px 16px; }
  .cta-box { padding: 28px 16px; }
  .dg-item { width: 88%; }
}

/* ---------- 小屏手机（≤400px） ---------- */
@media (max-width: 400px) {
  .wrap { padding: 0 14px; }
  .brand .logo { font-size: 16px; letter-spacing: 0; }
  .nav-burger { width: 42px; height: 42px; }
  .lang-switch { gap: 3px; }
  .lang-switch button { min-width: 36px; height: 38px; padding: 0 7px; font-size: 11.5px; }
  .hero-head { font-size: clamp(25px, 9.2vw, 32px); }
  .block-head h2 { font-size: 21px; }
  .grid.works-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- 横屏手机 / 矮屏：压缩首屏高度 ---------- */
@media (max-width: 900px) and (max-height: 500px) and (orientation: landscape) {
  .hero-ed { padding: 22px 0 20px; }
  .hero-head { font-size: 26px; }
  .hero-sub { font-size: 14px; margin-bottom: 16px; }
}

/* ---------- 平板（641–900px）：首屏照片收窄居中，避免整块大图 ---------- */
@media (max-width: 900px) and (min-width: 641px) {
  .hero-frame { max-width: 520px; margin: 0 auto; }
  .news-body { max-width: 640px; }
}

/* ---------- 触屏设备：去掉 hover 位移，改为按压反馈 ---------- */
@media (hover: none) {
  .card:hover, .value-card:hover, .team-card:hover, .mini-cta:hover, .pill:hover, .btn:hover { transform: none; }
  .card:active, .value-card:active, .mini-cta:active { transform: scale(.985); }
  .nav-cta:active, .btn:active, .pill:active, .tabs button:active { opacity: .82; }
}
