/* ============================================
   袁珂 · 个人作品集
   春 · 风 · 序
   春日淡绿 + 花体英文 + 极简留白 + 模糊光晕
   ============================================ */

/* ---------- 1. Reset & Tokens ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* —— 调色板：雾中茶园 Misty Tea Garden —— */
  --paper:        #F4F2E9;   /* 雾白 Mist Veil White */
  --paper-2:      #EAE7D6;   /* 深雾白 */
  --paper-3:      #D6DCC4;   /* 茶绿雾 */
  --sage:         #6A8D73;   /* 龙井绿 Longjing Green · 主色 */
  --sage-2:       #B5C99A;   /* 芽黄绿 Bud Yellow-Green · 副色 */
  --olive:        #4F6852;   /* 深绿 */
  --forest:       #2D3B2A;   /* 墨绿 */
  --ink:          #1F231B;   /* 主文字 */
  --ink-2:        #4A5045;   /* 次文字 */
  --ink-3:        #7E857A;   /* 弱文字 */
  --rust:         #B5784A;   /* 赭石点缀 */
  --rose:         #E8C7B8;

  --zh:        "Noto Serif SC", "Songti SC", "STSong", serif;
  --en:        "Cormorant Garamond", "EB Garamond", serif;
  --script:    "Italianno", "Allura", cursive;
  --hand:      "Caveat", "Marker Felt", cursive;
  --mono:      "DM Mono", monospace;

  --max:    1180px;
  --gutter: 32px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--zh);
  color: var(--ink);
  background:
    radial-gradient(ellipse 60% 50% at 18% 8%, rgba(106, 141, 115, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 92% 28%, rgba(181, 201, 154, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(106, 141, 115, 0.12) 0%, transparent 60%),
    linear-gradient(180deg,
      #F4F2E9 0%,
      #F0F0E0 25%,
      #ECEFDD 50%,
      #F0F0E0 75%,
      #F4F2E9 100%
    );
  background-attachment: fixed;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* —— 树影底图 · 仅首页 · 全屏铺满 · 模糊 + 半透明叠加 —— */
body.page-index::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("images/tree-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.45;
  filter: blur(3px);
  pointer-events: none;
  z-index: 0;
}
body.page-index > * { position: relative; z-index: 1; }

/* —— 页面切换过渡 · 纯 CSS 淡入淡出 · 全浏览器通用 —— */
body {
  animation: page-enter 0.55s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
body.is-leaving {
  animation: page-leave 0.32s cubic-bezier(0.4, 0, 0.2, 1) both;
}
@keyframes page-enter {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes page-leave {
  to { opacity: 0; transform: translateY(-8px); }
}

/* —— Cover 5 张图依次浮入：底层 → 顶层，每张 100ms 间隔 —— */
@keyframes cover-art-in {
  from { opacity: 0; transform: scale(0.92) translateY(18px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cover__art-videos > img,
.cover__art-cover > img,
.cover__art-experience > img,
.cover__art-back-wrap > .cover__art--back,
.cover__art-link .cover__art {
  animation: cover-art-in 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.cover__art-videos > img              { animation-delay: 0ms;   }
.cover__art-cover > img               { animation-delay: 100ms; }
.cover__art-experience > img          { animation-delay: 200ms; }
.cover__art-back-wrap > .cover__art--back { animation-delay: 300ms; }
.cover__art-link .cover__art          { animation-delay: 400ms; }
@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
  body.is-leaving { animation: none; }
  .cover__art-videos > img,
  .cover__art-cover > img,
  .cover__art-experience > img,
  .cover__art-back-wrap > .cover__art--back,
  .cover__art-link .cover__art { animation: none; }
}

::selection {
  background: var(--sage);
  color: var(--forest);
}

a {
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, color 0.3s;
}
a:hover { border-bottom-color: var(--olive); }

em {
  font-style: italic;
  font-family: var(--en);
  color: var(--forest);
  font-weight: 400;
}

/* ---------- 2. 模糊绿光晕背景 ---------- */
.glow-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  mix-blend-mode: multiply;
}
.glow--1 {
  width: 700px; height: 700px;
  top: -180px; left: -200px;
  background: radial-gradient(circle, var(--sage-2) 0%, transparent 70%);
  animation: drift1 22s ease-in-out infinite alternate;
}
.glow--2 {
  width: 800px; height: 800px;
  top: 35%; right: -300px;
  background: radial-gradient(circle, var(--sage) 0%, transparent 70%);
  opacity: 0.4;
  animation: drift2 28s ease-in-out infinite alternate;
}
.glow--3 {
  width: 600px; height: 600px;
  bottom: -200px; left: 30%;
  background: radial-gradient(circle, var(--sage-2) 0%, transparent 70%);
  opacity: 0.5;
  animation: drift3 26s ease-in-out infinite alternate;
}
@keyframes drift1 { from { transform: translate(0,0) scale(1); } to { transform: translate(80px,60px) scale(1.1); } }
@keyframes drift2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-60px,80px) scale(1.15); } }
@keyframes drift3 { from { transform: translate(0,0) scale(1); } to { transform: translate(50px,-50px) scale(1.08); } }

/* ---------- 3. Topbar（共享顶部条） ---------- */
.topbar {
  position: relative;
  z-index: 5;
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid rgba(122, 143, 106, 0.15);
}
.topbar__brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  border: none;
}
.brand-cn {
  font-family: var(--zh);
  font-size: 18px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.05em;
}
.brand-en {
  font-family: var(--en);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
}
.topbar__nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.topbar__nav a {
  font-family: var(--zh);
  font-size: 14px;
  color: var(--ink-2);
  border: none;
  position: relative;
  letter-spacing: 0.1em;
  padding: 4px 0;
}
.topbar__nav a:hover {
  color: var(--forest);
}
.topbar__nav a.is-active {
  color: var(--forest);
  font-weight: 500;
}
.topbar__nav a.is-active::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--olive);
  border-radius: 50%;
}
.topbar__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.topbar__meta .dot { width: 5px; height: 5px; background: var(--olive); border-radius: 50%; }
.topbar__meta .sep { color: var(--sage); }

/* ---------- 4. Footer（共享） ---------- */
.footer {
  max-width: var(--max);
  margin: 60px auto 0;
  padding: 50px var(--gutter) 60px;
  border-top: 1px dashed rgba(122, 143, 106, 0.3);
  position: relative;
  z-index: 2;
}
.footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: baseline;
  justify-content: center;
  font-family: var(--zh);
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: 0.1em;
}
.footer__row--small {
  margin-top: 8px;
  font-size: 11.5px;
  color: var(--ink-3);
  font-style: italic;
  font-family: var(--en);
  letter-spacing: 0.05em;
}
.footer__sep { color: var(--sage); }

/* ---------- 5. Page Nav（页间跳转） ---------- */
.page-nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px var(--gutter) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  border-top: 1px dashed rgba(122, 143, 106, 0.3);
}
.page-nav a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--zh);
  font-size: 14px;
  color: var(--forest);
  border: none;
  letter-spacing: 0.1em;
  padding: 8px 0;
  transition: gap 0.3s ease;
}
.page-nav a:hover { gap: 16px; border: none; }
.page-nav__arrow {
  font-family: var(--en);
  font-size: 18px;
  color: var(--olive);
}

/* ---------- 6. 通用 Page（about/work/videos/photos 共用） ---------- */
.page {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px var(--gutter) 80px;
}
.page-hero {
  padding: 40px 0 60px;
  border-bottom: 1px solid rgba(122, 143, 106, 0.2);
  margin-bottom: 60px;
}
.page-hero__num {
  display: inline-block;
  font-family: var(--en);
  font-style: italic;
  font-size: 16px;
  color: var(--olive);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.page-hero__title {
  font-family: var(--zh);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 30px;
}
.page-hero__title .cn {
  display: block;
  font-size: clamp(48px, 6vw, 80px);
  color: var(--forest);
  letter-spacing: 0.02em;
}
.page-hero__title .en {
  display: block;
  font-family: var(--en);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 30px);
  color: var(--ink-3);
  letter-spacing: 0.05em;
  margin-top: 6px;
}
.page-hero__lead {
  font-family: var(--zh);
  font-size: 18px;
  line-height: 1.85;
  color: var(--ink);
  max-width: 640px;
  font-weight: 400;
}
.page-hero__lead em {
  font-family: var(--zh);
  font-style: normal;
  font-weight: 500;
  color: var(--forest);
  background: linear-gradient(transparent 72%, var(--sage-2) 72%);
  padding: 0 3px;
}

/* ---------- 7. INDEX（目录页） ---------- */
.cover {
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px var(--gutter) 160px;
  position: relative;
  z-index: 2;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* —— 中央作品集封面 · 立体感 + hover 浮动放大 —— */
.cover__art-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: min(52vh, 500px);
  width: 100%;
}
.cover__art-link {
  position: relative;
  z-index: 2;
  display: block;
  height: 100%;
  width: auto;
  color: inherit;
  text-decoration: none;
  border-bottom: 0;
  line-height: 0;
  transform: translateY(-10px);
}
.cover__art-link:hover { border-bottom: 0; }

/* 后面那张 · 透明图层做变换 · img 只管原尺寸 */
.cover__art-back-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: inherit;
  text-decoration: none;
  border-bottom: 0;
  line-height: 0;
  display: block;
  pointer-events: none;  /* 整体不接收 click，让封面集露出区能穿透到下层 */
}
.cover__art-back-link:hover { border-bottom: 0; }
/* photo-collage 像素区自己接收 click，仍跳 photos.html */
.cover__art-back-link .cover__art { pointer-events: auto; }
.cover__art-back-wrap {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  height: 600px;
  width: 480px;
  transform: translate(-50%, -50%) rotate(5deg) translate(240px, 70px);
  transform-origin: center center;
  pointer-events: none;
}

/* 视频作品：放在拍摄作品下面图层（z=0）· 跳 videos.html */
.cover__art-videos {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  height: 650px;
  width: 520px;
  transform: translate(-50%, -50%) rotate(-5deg) translate(540px, -40px);
  transform-origin: center center;
  pointer-events: auto;
  display: block;
  color: inherit;
  text-decoration: none;
  border-bottom: 0;
  line-height: 0;
}
.cover__art-videos:hover { border-bottom: 0; }
.cover__art-videos > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 22px 42px rgba(45, 59, 42, 0.30))
          drop-shadow(0 6px 10px rgba(45, 59, 42, 0.16));
  box-shadow: none;
  border-radius: 0;
  pointer-events: auto;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
              filter 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: scale(1) rotate(0deg);
}
.cover__art-videos.is-hover > img {
  transform: scale(1.04) rotate(1.5deg);
  filter: drop-shadow(0 26px 48px rgba(45, 59, 42, 0.34))
          drop-shadow(0 7px 12px rgba(45, 59, 42, 0.20));
}

/* 封面集：最底层（z-index 0），向右偏移 + 反向倾斜，露出边角 · 跳 covers.html */
.cover__art-cover {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  height: 525px;
  width: 420px;
  transform: translate(-50%, -50%) rotate(-5deg) translate(-490px, -78px);
  transform-origin: center center;
  pointer-events: auto;
  display: block;
  color: inherit;
  text-decoration: none;
  border-bottom: 0;
  line-height: 0;
}
.cover__art-cover:hover { border-bottom: 0; }

/* 个人经历：紧挨封面集右下方，反向倾斜 · 跳 about.html */
.cover__art-experience {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  height: 588px;
  width: 470px;
  transform: translate(-50%, -50%) rotate(5deg) translate(-215px, 130px);
  transform-origin: center center;
  pointer-events: auto;
  display: block;
  color: inherit;
  text-decoration: none;
  border-bottom: 0;
  line-height: 0;
}
.cover__art-experience:hover { border-bottom: 0; }
.cover__art-experience > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 22px 42px rgba(45, 59, 42, 0.30))
          drop-shadow(0 6px 10px rgba(45, 59, 42, 0.16));
  box-shadow: none;
  border-radius: 0;
  pointer-events: auto;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
              filter 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: scale(1) rotate(0deg);
}
.cover__art-experience.is-hover > img {
  transform: scale(1.04) rotate(-1.5deg);
  filter: drop-shadow(0 26px 48px rgba(45, 59, 42, 0.34))
          drop-shadow(0 7px 12px rgba(45, 59, 42, 0.20));
}
.cover__art-cover > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 22px 42px rgba(45, 59, 42, 0.30))
          drop-shadow(0 6px 10px rgba(45, 59, 42, 0.16));
  box-shadow: none;
  border-radius: 0;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
              filter 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: scale(1) rotate(0deg);
}
/* hover 封面集：放大 + 倾斜角从 -3° 减弱到 -1.5°（JS 加 .is-hover） */
.cover__art-cover.is-hover > img {
  transform: scale(1.04) rotate(1.5deg);
  filter: drop-shadow(0 26px 48px rgba(45, 59, 42, 0.34))
          drop-shadow(0 7px 12px rgba(45, 59, 42, 0.20));
}
.cover__art-back-wrap > .cover__art--back {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  transform: scale(1) translate(0, 0);
  box-shadow: none;
  border-radius: 0;
  cursor: default;
  pointer-events: auto;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cover__art-back-wrap > .cover__art--back:hover {
  transform: scale(1.04) translateY(-12px) rotate(2deg);
  box-shadow: none;
  cursor: pointer;
}

.cover__art {
  height: 100%;
  width: auto;
  max-width: min(82vw, 320px);
  display: block;
  border-radius: 4px;
  box-shadow:
    0 30px 60px -18px rgba(45, 59, 42, 0.42),
    0 14px 28px -10px rgba(45, 59, 42, 0.22),
    0 4px 10px -2px rgba(45, 59, 42, 0.14),
    0 1px 2px rgba(45, 59, 42, 0.08);
  transform: rotate(-3.2deg);
  transition:
    transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  will-change: transform, box-shadow;
}
.cover__art:hover {
  transform: rotate(-1.5deg) translateY(-10px) scale(1.025);
  box-shadow:
    0 44px 88px -20px rgba(45, 59, 42, 0.5),
    0 22px 44px -12px rgba(45, 59, 42, 0.28),
    0 8px 18px -4px rgba(45, 59, 42, 0.18),
    0 2px 4px rgba(45, 59, 42, 0.1);
}
.cover__topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--sage);
  border-bottom: 1px solid var(--sage);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 60px;
}
.cover__topline .right {
  font-family: var(--en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--sage);
  text-transform: none;
}

/* —— 作品集大字区（第一眼） —— */
.cover__hero {
  text-align: center;
  padding: 80px 0 60px;
  position: relative;
}
.cover__hero-cn {
  font-family: var(--zh);
  font-weight: 500;
  font-size: clamp(80px, 12vw, 160px);
  color: var(--sage);
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: 0 2px 0 rgba(106, 141, 115, 0.15);
  position: relative;
  display: inline-block;
}
/* 手写笔触装饰（左侧小绿点）*/
.cover__hero-en {
  font-family: var(--en);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 32px);
  color: var(--ink-2);
  letter-spacing: 0.6em;  /* 字间距很宽 */
  text-transform: uppercase;
  margin-bottom: 50px;
  padding-left: 0.6em;  /* 补偿最后一个字的间距 */
}

.cover__verse {
  font-family: var(--en);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.cover__verse em {
  font-family: var(--en);
  font-style: italic;
  color: var(--ink-3);
}

/* 手绘曲线装饰 */
.cover__curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}


/* —— 背景大字 Portfolio (装饰水印) —— */
.cover__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--hand);
  font-weight: 500;
  font-size: clamp(180px, 28vw, 460px);
  color: rgba(106, 141, 115, 0.1);
  letter-spacing: -0.01em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* —— 名字区（下滑后才看到） —— */
.cover__intro {
  text-align: center;
  padding: 40px 0;
}
.cover__name {
  font-family: var(--zh);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.cover__name-en {
  display: block;
  font-family: var(--en);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--ink-2);
  letter-spacing: 0.2em;
  margin-top: 6px;
}
.cover__tag {
  font-family: var(--zh);
  font-size: 15px;
  color: var(--ink-2);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  align-items: baseline;
  letter-spacing: 0.15em;
  margin-bottom: 30px;
}
.cover__tag .slash {
  color: var(--sage);
  font-family: var(--en);
  font-style: italic;
}
.cover__keywords {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}
.cover__keywords span {
  padding: 4px 12px;
  border: 1px solid rgba(106, 141, 115, 0.4);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}
.cover__keywords span:nth-child(odd) {
  border-color: var(--sage);
  color: var(--sage);
}

/* 滚动提示 */
.cover__scroll {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-family: var(--en);
  font-style: italic;
  font-size: 14px;
  color: var(--sage);
  border: none;
  letter-spacing: 0.1em;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ---------- 8. FILES（文件汇总式目录） ---------- */
.files {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px var(--gutter) 100px;
  position: relative;
  z-index: 2;
}
.files__heading {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 60px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(106, 141, 115, 0.3);
}
.files__num {
  font-family: "Special Elite", var(--mono);
  font-size: 14px;
  color: var(--sage);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.files__cn {
  font-family: var(--zh);
  font-size: 14px;
  color: var(--forest);
  font-weight: 500;
  letter-spacing: 0.4em;
}
.files__line {
  flex: 1;
  height: 1px;
  background: rgba(106, 141, 115, 0.2);
}
.files__hint {
  font-family: "Special Elite", var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
}

.files__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* —— 单个文件夹 —— */
.folder {
  position: relative;
  transition-delay: calc(var(--i) * 90ms);
}
.folder__link {
  display: block;
  border: none;
  color: inherit;
  position: relative;
  text-decoration: none;
}
.folder__tab {
  background: linear-gradient(180deg, #4F6852 0%, #2D3B2A 100%);
  color: #F4F2E9;
  padding: 12px 24px 14px;
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  font-family: "Special Elite", var(--mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  border-radius: 4px 4px 0 0;
  box-shadow: 0 2px 0 rgba(45, 59, 42, 0.3);
  margin-left: 24px;
  border-bottom: 2px solid #B5784A;
}
.folder__num {
  font-size: 14px;
  color: #B5C99A;
  font-weight: 400;
}
.folder__label {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.25em;
}
.folder__body {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.04) 0%, transparent 50%),
    #E8DDC0;
  border: 1px solid #C8BFA0;
  border-top: none;
  padding: 40px 32px 50px;
  min-height: 240px;
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.4),
    0 8px 20px rgba(60, 50, 30, 0.1);
  border-radius: 0 4px 4px 4px;
  overflow: visible;
}
.folder__body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.06'/></svg>");
  pointer-events: none;
  border-radius: 0 4px 4px 4px;
}
.folder__clip {
  position: absolute;
  top: 32px;
  right: 18px;
  z-index: 5;
  transform: rotate(8deg);
  filter: drop-shadow(1px 2px 1px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s ease;
}
.folder__link:hover .folder__clip {
  transform: rotate(0deg) scale(1.1);
}
.folder__hint-text {
  position: absolute;
  bottom: -32px;
  right: 0;
  font-family: "Special Elite", var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.folder__link:hover .folder__hint-text {
  opacity: 1;
}

/* —— 纸张 —— */
.paper {
  position: absolute;
  background: #FAF8F0;
  border: 1px solid #D4C9A8;
  padding: 14px 16px;
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.05),
    0 4px 10px rgba(60, 50, 30, 0.12);
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.5s ease, box-shadow 0.4s ease, z-index 0s 0.2s;
  z-index: 1;
  min-width: 100px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.04'/></svg>");
}
.paper::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: rgba(106, 141, 115, 0.1);
}
.paper:nth-child(1) { top: 28px; left: 28px; }
.paper:nth-child(2) { top: 22px; right: 32px; }
.paper:nth-child(3) { bottom: 28px; left: 50%; transform: translateX(-50%) rotate(var(--rot, 0deg)); }
.folder__link:hover .paper {
  z-index: 3;
}
.folder__link:hover .paper:nth-child(1) { transform: translate(-12px, -8px) rotate(calc(var(--rot, 0deg) - 4deg)); }
.folder__link:hover .paper:nth-child(2) { transform: translate(12px, -6px) rotate(calc(var(--rot, 0deg) + 4deg)); }
.folder__link:hover .paper:nth-child(3) { transform: translate(-50%, 12px) rotate(calc(var(--rot, 0deg) - 2deg)); z-index: 3; }

/* —— 纸张类型 —— */
.paper--hand {
  font-family: var(--hand);
  font-size: 17px;
  line-height: 1.5;
  color: var(--forest);
  padding: 16px 18px;
  min-width: 140px;
}
.paper--hand .paper__line { display: block; }

.paper--data {
  padding: 16px 18px;
  text-align: center;
  min-width: 130px;
}
.paper--data .paper__big {
  display: block;
  font-family: var(--zh);
  font-size: 22px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.paper--data .paper__sub {
  display: block;
  font-family: var(--en);
  font-style: italic;
  font-size: 13px;
  color: var(--sage);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.paper--data .paper__meta {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  padding-top: 6px;
  border-top: 1px dashed rgba(106, 141, 115, 0.3);
}

.paper--stamp {
  width: 60px; height: 60px;
  min-width: 60px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(181, 120, 74, 0.08);
  border: 2px solid #B5784A;
  border-radius: 50%;
  font-family: var(--zh);
}
.paper--stamp .paper__stamp-text {
  font-size: 26px;
  font-weight: 500;
  color: #B5784A;
  font-style: italic;
}

.paper--list {
  padding: 10px 14px;
  min-width: 150px;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.paper--list .paper__year {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
}
.paper--list .paper__role {
  font-family: var(--zh);
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.paper--list .paper__co {
  font-family: var(--en);
  font-style: italic;
  font-size: 11px;
  color: var(--ink-2);
}

.paper--filmstrip {
  padding: 18px 14px 14px;
  min-width: 110px;
  text-align: center;
}
.filmstrip-mini {
  height: 8px;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 4px;
  margin-bottom: 8px;
}
.filmstrip-mini span {
  width: 3px; height: 3px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 0.5px;
}
.paper--filmstrip .paper__name {
  display: block;
  font-family: var(--zh);
  font-size: 15px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.paper--filmstrip .paper__count {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
}

.paper--photo {
  width: 70px; height: 90px;
  min-width: 70px;
  padding: 4px 4px 16px;
  background: #FAF8F0;
}
.paper--photo svg {
  display: block;
  width: 100%; height: calc(100% - 12px);
}

/* ---------- 9. ABOUT 页面 ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 920px;
  margin-bottom: 60px;
}
.about-col p {
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink);
}
.about-col p em {
  font-family: var(--zh);
  font-style: normal;
  font-weight: 500;
  color: var(--forest);
  background: linear-gradient(transparent 72%, var(--sage-2) 72%);
  padding: 0 2px;
}
.quick-facts {
  margin: 60px 0 50px;
  max-width: 1100px;
}
.quick-facts__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(106, 141, 115, 0.3);
}
.quick-facts__num {
  font-family: "Special Elite", var(--mono);
  font-size: 16px;
  color: var(--sage);
  letter-spacing: 0.1em;
}
.quick-facts__label {
  font-family: "Special Elite", var(--mono);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.quick-facts__line {
  flex: 1;
  height: 1px;
  background: rgba(106, 141, 115, 0.2);
}
.quick-facts__cn {
  font-family: var(--zh);
  font-size: 14px;
  color: var(--forest);
  font-weight: 500;
  letter-spacing: 0.4em;
}
.quick-facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.qf-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(232, 221, 192, 0.3) 100%),
    #FAF8F0;
  border: 1px solid #D4C9A8;
  padding: 24px 20px;
  position: relative;
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(60, 50, 30, 0.08);
  min-height: 200px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.05'/></svg>");
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.qf-card:hover {
  transform: translateY(-3px) rotate(-0.5deg);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.05),
    0 12px 24px rgba(60, 50, 30, 0.12);
}
.qf-card::before {
  content: "";
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 4px;
  background: rgba(106, 141, 115, 0.25);
  border-radius: 2px;
}
.qf-card__tag {
  position: absolute;
  top: 16px; left: 16px;
  font-family: "Special Elite", var(--mono);
  font-size: 9px;
  color: var(--sage);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.6);
  padding: 2px 8px;
  border: 1px solid rgba(106, 141, 115, 0.3);
  border-radius: 2px;
}
.qf-card__body {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.qf-card__label {
  font-family: "Special Elite", var(--mono);
  font-size: 9px;
  color: var(--ink-3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
}
.qf-card__label:first-child { margin-top: 0; }
.qf-card__value {
  font-family: var(--zh);
  font-size: 16px;
  color: var(--forest);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: -4px;
}
.qf-card__value em {
  font-family: var(--en);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--ink-2);
  margin-left: 4px;
}
.qf-card--hand .qf-card__body {
  justify-content: center;
  height: calc(100% - 24px);
}
.qf-card__hand {
  font-family: var(--hand);
  font-size: 20px;
  color: var(--forest);
  line-height: 1.5;
  margin-bottom: 12px;
}
.qf-card__hand-en {
  font-family: var(--en);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
}
.qf-card__hand-en em {
  font-family: var(--en);
  color: var(--ink-3);
}
.qf-card--type .qf-card__line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.05em;
  border-bottom: 1px dashed rgba(106, 141, 115, 0.2);
  padding-bottom: 4px;
  margin-bottom: 4px;
}
.qf-card__k {
  font-family: var(--zh);
  font-size: 11px;
  color: var(--sage);
  background: rgba(106, 141, 115, 0.1);
  padding: 1px 6px;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}
.qf-skills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.qf-skills li {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-2);
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(106, 141, 115, 0.3);
  letter-spacing: 0.05em;
}

/* —— 文件夹点击"打开飞出"动画 —— */
.folder--open .folder__body {
  animation: folderOpen 0.7s ease-out forwards;
}
.folder--open .paper {
  animation: paperFly 0.7s ease-out forwards;
}
.folder--open .paper:nth-child(1) { animation-delay: 0s; }
.folder--open .paper:nth-child(2) { animation-delay: 0.1s; }
.folder--open .paper:nth-child(3) { animation-delay: 0.2s; }
.folder--open .folder__tab {
  animation: tabRise 0.7s ease-out forwards;
}
@keyframes folderOpen {
  0% { transform: perspective(600px) rotateX(0deg); }
  100% { transform: perspective(600px) rotateX(-15deg); }
}
@keyframes paperFly {
  0% { transform: rotate(var(--rot, 0deg)) translate(0, 0) scale(1); }
  100% { transform: rotate(var(--rot, 0deg)) translate(0, -60px) scale(1.1); opacity: 0.8; }
}
@keyframes tabRise {
  0% { transform: translateY(0); }
  100% { transform: translateY(-20px); }
}
.seasonal {
  font-family: var(--zh);
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: 0.5em;
  display: flex;
  gap: 14px;
  align-items: center;
  font-weight: 400;
}
.seasonal .dot-sep {
  color: var(--sage);
  font-family: var(--en);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0;
}

/* ---------- 9.5. Info Block（技能/荣誉/证书） ---------- */
.section-sub {
  font-family: var(--zh);
  font-size: 13px;
  color: var(--olive);
  letter-spacing: 0.5em;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 30px;
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px dashed rgba(122, 143, 106, 0.3);
  max-width: 200px;
}
.section-sub--alt {
  margin-top: 80px;
}
.info-block {
  margin-top: 50px;
  max-width: 860px;
}
.info-block__title {
  font-family: var(--zh);
  font-size: 20px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 22px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 14px;
}
.info-block__title::before {
  content: "";
  display: inline-block;
  width: 4px; height: 18px;
  background: var(--olive);
  border-radius: 1px;
}
.skill-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.skill-chips li {
  font-family: var(--zh);
  font-size: 14px;
  color: var(--ink-2);
  padding: 7px 18px;
  border: 1px solid rgba(122, 143, 106, 0.3);
  background: rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.skill-chips li:hover {
  background: var(--sage-2);
  border-color: var(--olive);
  color: var(--forest);
}
.honor-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.honor-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(122, 143, 106, 0.2);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.honor-list li:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--olive);
}
.honor-list__num {
  font-family: var(--en);
  font-style: italic;
  font-size: 24px;
  font-weight: 300;
  color: var(--rust);
  line-height: 1;
  padding-top: 2px;
}
.honor-list strong {
  display: block;
  font-family: var(--zh);
  font-size: 15.5px;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}
.honor-list span {
  display: inline-block;
  font-family: var(--zh);
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: 0.05em;
  padding: 2px 10px;
  border: 1px solid var(--olive);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
}
.cert-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cert-list li {
  font-family: var(--en);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-2);
  padding: 10px 22px;
  border: 1px solid var(--olive);
  background: rgba(183, 197, 160, 0.1);
  border-radius: 2px;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 38px;
}
.cert-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--olive);
  font-style: normal;
  font-weight: 500;
}
.timeline--single {
  margin-top: 0;
}

/* ---------- 10. WORK Timeline（沿用 v2 风格） ---------- */
.timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 70px;
  max-width: 860px;
}
.timeline__item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
}
.timeline__item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 124px; bottom: -36px;
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--olive), transparent);
  opacity: 0.4;
}
.timeline__date {
  font-family: var(--en);
  font-style: italic;
  font-size: 15px;
  color: var(--olive);
  padding-top: 4px;
  letter-spacing: 0.05em;
}
.timeline__body h3 {
  font-family: var(--zh);
  font-size: 22px;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.timeline__body p {
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--ink);
  margin-bottom: 16px;
  max-width: 620px;
}
.timeline__body p em {
  font-family: var(--zh);
  font-style: normal;
  font-weight: 500;
  color: var(--forest);
  background: linear-gradient(transparent 72%, var(--sage-2) 72%);
  padding: 0 2px;
}
.tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}
.tags li {
  font-family: var(--en);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: 0.05em;
}
.tags li::before {
  content: "·";
  color: var(--sage);
  margin-right: 8px;
}
.tags li:first-child::before { content: ""; margin-right: 0; }
.now {
  position: absolute;
  top: -4px; right: 0;
  font-family: var(--hand);
  font-size: 17px;
  color: var(--olive);
  transform: rotate(3deg);
}

/* ---------- 11. VIDEOS 页面 ---------- */

/* —— 艺术感视频分类目录 —— */
.videos-toc {
  margin-top: 50px;
  padding: 32px 0 28px;
  border-top: 1px solid var(--forest);
  border-bottom: 1px solid var(--forest);
  position: relative;
}
.videos-toc::before,
.videos-toc::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  background: var(--sage-2);
  border: 1px solid var(--forest);
  border-radius: 50%;
}
.videos-toc::before { top: -4px; }
.videos-toc::after  { bottom: -4px; }
.videos-toc__label {
  display: block;
  text-align: center;
  font-family: var(--en);
  font-style: italic;
  font-size: 12px;
  color: var(--olive);
  letter-spacing: 0.4em;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.videos-toc__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0;
  align-items: stretch;
}
.videos-toc__list li {
  text-align: center;
  position: relative;
}
.videos-toc__list li:not(.videos-toc__divider) {
  border-right: 1px dashed rgba(122, 143, 106, 0.3);
}
.videos-toc__list li:last-child:not(.videos-toc__divider) {
  border-right: none;
}
.videos-toc__list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 4px;
  border: none;
  color: var(--ink-2);
  transition: all 0.4s ease;
  position: relative;
}
.videos-toc__list a:hover {
  color: var(--forest);
  background: rgba(255, 255, 255, 0.4);
  border: none;
}
.videos-toc__list a:hover .v-num {
  color: var(--rust);
  transform: scale(1.1);
}
.videos-toc__list a:hover .v-name {
  letter-spacing: 0.3em;
}
.v-num {
  font-family: var(--en);
  font-style: italic;
  font-size: 22px;
  font-weight: 300;
  color: var(--olive);
  line-height: 1;
  transition: all 0.4s ease;
  display: block;
}
.v-name {
  font-family: var(--zh);
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0.15em;
  font-weight: 500;
  transition: all 0.4s ease;
  display: block;
  white-space: nowrap;
}
.videos-toc__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px dashed rgba(122, 143, 106, 0.3);
}
.videos-toc__divider span {
  font-family: var(--en);
  font-style: italic;
  font-size: 14px;
  color: var(--rust);
  letter-spacing: 0.5em;
}

/* 照片页面的 toc 保持原状但用同款 */
.photos-toc {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px dashed rgba(122, 143, 106, 0.3);
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}
.photos-toc a {
  font-family: var(--zh);
  font-size: 13px;
  color: var(--ink-2);
  padding: 4px 14px;
  border: 1px solid rgba(122, 143, 106, 0.3);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.photos-toc a:hover {
  background: var(--sage-2);
  color: var(--forest);
  border-color: var(--olive);
}

.cat {
  margin-bottom: 100px;
  padding-top: 30px;
  scroll-margin-top: 80px;
}
.cat__head {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(122, 143, 106, 0.25);
}
.cat__num {
  font-family: var(--en);
  font-style: italic;
  font-size: 56px;
  font-weight: 300;
  color: var(--forest);
  line-height: 0.9;
}
.cat__title {
  font-family: var(--zh);
  font-size: 36px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.cat__en {
  font-family: var(--en);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.cat__en em { font-family: var(--en); color: var(--ink-3); }
.cat__desc {
  font-family: var(--zh);
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-2);
  max-width: 580px;
}
.cat__desc em {
  font-family: var(--zh);
  font-style: normal;
  font-weight: 500;
  color: var(--forest);
}

.vlist {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.vitem {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
  padding: 16px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(122, 143, 106, 0.15);
  border-radius: 4px;
  border-bottom: 1px solid rgba(122, 143, 106, 0.15);
  transition: all 0.4s ease;
}
.vitem:hover {
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--olive);
  transform: translateX(4px);
  border-bottom-color: var(--olive);
}

.vitem__cover {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 100%);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vitem__cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.vitem__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.15'/></svg>");
  pointer-events: none;
  z-index: 1;
}

/* —— 胶片孔 —— */
.filmstrip {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 14px;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 8px;
  z-index: 4;
}
.filmstrip span {
  width: 6px; height: 6px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.4);
}
/* 底部胶片孔 (镜像) */
.vitem__cover::before {
  /* 保持原有渐变 */
}
.filmstrip--bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  top: auto;
  height: 14px;
  background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 4;
}

.vitem__content {
  position: absolute;
  bottom: 28px;
  left: 18px;
  right: 18px;
  z-index: 3;
  text-align: left;
}
.vitem__cat {
  display: block;
  font-family: var(--mono);
  font-size: 9px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 3px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.vitem__title {
  font-family: var(--zh);
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.08em;
  line-height: 1.3;
  display: block;
}
.vitem__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--forest);
  padding-left: 3px;
  z-index: 5;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}
.vitem:hover .vitem__play {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
}
.vitem__dur {
  position: absolute;
  bottom: 24px; right: 14px;
  font-family: var(--mono);
  font-size: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 1px;
  z-index: 3;
}

.vitem__meta {
  padding: 8px 0;
}
.vitem__date {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.vitem__meta h3 {
  font-family: var(--zh);
  font-size: 19px;
  font-weight: 500;
  color: var(--forest);
  line-height: 1.4;
  margin: 8px 0 10px;
  letter-spacing: 0.02em;
}
.vitem__meta p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.vitem__tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--olive);
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid var(--olive);
  display: inline-block;
  border-radius: 2px;
}
.vitem__platform {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--mono);
  font-size: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 1.5px;
  z-index: 3;
}

/* —— 摄像作品/广告 特殊样式 —— */
.vitem--film {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(232, 232, 218, 0.4) 100%);
  border: 1px solid rgba(122, 143, 106, 0.3);
  position: relative;
}
.vitem--film::before {
  content: "Film";
  position: absolute;
  top: -8px; left: 24px;
  font-family: var(--en);
  font-style: italic;
  font-size: 12px;
  color: var(--rust);
  background: var(--paper);
  padding: 0 8px;
  letter-spacing: 0.1em;
}
.vitem__cover--film {
  aspect-ratio: 16/9;
}
.vitem__play--film {
  width: 44px; height: 44px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.95);
}
.vitem__award {
  position: absolute;
  bottom: 10px; left: 12px;
  font-family: var(--zh);
  font-size: 11px;
  color: #fff;
  background: var(--rust);
  padding: 3px 10px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  z-index: 3;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(181, 120, 74, 0.3);
}
.cat--film .cat__title {
  font-family: var(--serif, var(--zh));
  font-style: italic;
  color: var(--forest);
  letter-spacing: 0.1em;
}
.cat--film .cat__head {
  border-bottom-color: rgba(181, 120, 74, 0.3);
}
.cat--film .cat__num {
  color: var(--rust);
  font-style: italic;
}

/* —— 获奖作品 special album —— */
.album--featured .album__title {
  font-family: var(--zh);
  letter-spacing: 0.15em;
}
.album--featured .album__en em {
  color: var(--rust);
}
.photo--featured .photo__cover {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.photo__cover--light {
  position: relative;
  padding: 0;
}
.photo__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.photo--featured .photo__num,
.photo--featured .photo__title {
  position: absolute;
  z-index: 3;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.photo--featured .photo__num {
  top: 24px; left: 24px;
}
.photo--featured .photo__title {
  bottom: 24px; left: 24px;
  font-size: 24px;
  font-style: italic;
  font-family: var(--zh);
  font-weight: 400;
}

/* ---------- 11.5 MOKUP（杂志剪贴卡片） ---------- */
.mokup {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(232, 221, 192, 0.3) 100%),
    #F5EDD6;
  border: 1px solid #C8BFA0;
  border-radius: 2px;
  padding: 36px 40px 32px;
  margin-bottom: 50px;
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.4),
    0 8px 22px rgba(60, 50, 30, 0.08);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.05'/></svg>");
  scroll-margin-top: 80px;
}
.mokup::before {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 50px; height: 6px;
  background: rgba(106, 141, 115, 0.25);
  border-radius: 3px;
}
.mokup__head {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 10px 20px;
  align-items: center;
  padding-bottom: 22px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(106, 141, 115, 0.3);
  position: relative;
}
.mokup__type {
  grid-row: 1;
  grid-column: 1 / -1;
  justify-self: start;
  font-family: "Special Elite", var(--mono);
  font-size: 11px;
  color: var(--sage);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.5);
  padding: 4px 10px;
  border: 1px solid var(--sage);
  align-self: start;
  margin: 0;
}
.mokup__title {
  grid-row: 2;
  grid-column: 1;
  font-family: var(--zh);
  font-weight: 500;
  font-size: clamp(24px, 2.8vw, 36px);
  color: var(--forest);
  letter-spacing: 0.1em;
  line-height: 1.1;
  align-self: center;
  margin: 0;
}
.mokup__sub {
  grid-row: 3;
  grid-column: 1 / -1;
  font-family: "Special Elite", var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0;
  padding-left: 4px;
}
.mokup__num {
  grid-row: 1;
  font-family: var(--en);
  font-style: italic;
  font-size: 36px;
  color: var(--rust);
  font-weight: 300;
  text-align: right;
  line-height: 1;
}

/* —— Board（2 列布局：主视频 + 边纸片堆） —— */
.mokup__board {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 30px;
  align-items: start;
  position: relative;
}
.mokup__board--double {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}
.mokup__board--double .mokup__main:first-child { grid-row: 1; grid-column: 1; }
.mokup__board--double .mokup__main:nth-child(2) { grid-row: 1; grid-column: 2; }
.mokup__board--double .mokup__stickies--bottom { grid-row: 2; grid-column: 1 / -1; }
.mokup__covers--full { grid-column: 1 / -1; margin-top: 20px; }
.mokup__covers--filmwall { margin-top: 32px; }
.mokup__covers--filmwall .mokup__cover { aspect-ratio: 4/3; }

.mokup__main {
  display: block;
  text-decoration: none;
  position: relative;
  transition: transform 0.4s ease;
}
.mokup__main:hover {
  transform: translateY(-3px) rotate(-0.3deg);
}

.mokup__stickies {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}
.mokup__stickies--bottom {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed rgba(106, 141, 115, 0.3);
}

/* —— 便签 / 小纸片 —— */
.sticky {
  position: relative;
  padding: 14px 16px;
  font-family: var(--zh);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(106, 141, 115, 0.25);
  box-shadow: 0 2px 8px rgba(60, 50, 30, 0.1);
  transition: transform 0.3s ease;
}
.sticky:hover {
  transform: translateY(-2px) rotate(0.5deg);
}
.sticky__tag {
  display: block;
  font-family: "Special Elite", var(--mono);
  font-size: 10px;
  color: var(--sage);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.sticky__hand {
  display: block;
  font-family: var(--hand);
  font-size: 16px;
  color: var(--forest);
  line-height: 1.4;
}

.sticky--tape {
  background: rgba(255, 250, 220, 0.7);
  border: 1px solid rgba(181, 120, 74, 0.2);
  position: relative;
}
.sticky--tape::before {
  content: "";
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%) rotate(-1deg);
  width: 60px; height: 12px;
  background: rgba(255, 235, 180, 0.7);
  border: 1px dashed rgba(181, 120, 74, 0.4);
}
.sticky--tape-dark {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(181, 120, 74, 0.3);
}
.sticky--tape-dark::before {
  background: rgba(181, 120, 74, 0.4);
  border-color: rgba(255, 235, 180, 0.4);
}
.sticky--tape-dark .sticky__tag { color: var(--rust); }
.sticky--tape-dark .sticky__hand { color: #E8DDC0; }

/* —— 📎 回形针便签 —— */
.sticky--paperclip {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(106, 141, 115, 0.3);
  padding: 22px 14px 12px;
  position: relative;
  text-align: center;
}
.sticky--paperclip::before {
  content: "";
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 24px; height: 50px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 50'><path d='M12 4 C 5 4, 5 14, 12 18 C 19 22, 19 36, 12 40 C 5 44, 5 32, 12 28' fill='none' stroke='%238B8E7A' stroke-width='1.8' stroke-linecap='round'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.15));
}
.sticky--paperclip-dark {
  background: rgba(20, 18, 14, 0.6);
  border-color: rgba(181, 120, 74, 0.3);
}
.sticky--paperclip-dark::before {
  filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.4)) brightness(1.4);
}

/* —— ✏️ 标签纸（打字机条形） —— */
.sticky--label {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--olive);
  padding: 6px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Special Elite", var(--mono);
  font-size: 11px;
  color: var(--forest);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  align-self: flex-start;
  box-shadow: 0 2px 6px rgba(60, 50, 30, 0.1);
}
.sticky--label::before {
  /* 圆角小孔 */
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.15);
  margin-right: 4px;
}
.sticky--label::after {
  /* 右侧装饰线 */
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--olive) 0%, transparent 100%);
  min-width: 30px;
}
.sticky--label-dark {
  background: rgba(0, 0, 0, 0.5);
  color: var(--rust);
  border-color: var(--rust);
}
.sticky--label-dark::before {
  background: var(--paper);
}

.sticky--clip {
  position: relative;
  padding: 18px 14px 12px;
  background: rgba(255, 255, 255, 0.7);
}
.sticky--clip::before {
  content: "";
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 24px;
  background: linear-gradient(180deg, #6A6A6A 0%, #4A4A4A 100%);
  border-radius: 2px 2px 0 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.sticky--clip::after {
  content: "";
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 4px;
  background: #888;
  border-radius: 2px 2px 0 0;
}
.sticky--clip-dark::before { background: linear-gradient(180deg, #8A6A4A 0%, #5A4A2A 100%); }
.sticky--clip-dark { background: rgba(0, 0, 0, 0.3); }
.sticky--clip-dark .sticky__label { color: var(--rust); }

.sticky__label {
  display: block;
  font-family: "Special Elite", var(--mono);
  font-size: 14px;
  color: var(--forest);
  letter-spacing: 0.15em;
  text-align: center;
  font-weight: 500;
}
.sticky__sub {
  display: block;
  font-family: var(--zh);
  font-size: 11px;
  color: var(--ink-3);
  text-align: center;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

.sticky--note {
  padding: 14px 16px;
  background: rgba(232, 199, 184, 0.3);
  border: 1px solid rgba(181, 120, 74, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sticky--note-rose {
  background: rgba(232, 199, 184, 0.4);
  border-color: rgba(181, 120, 74, 0.4);
}
.sticky--note-rust {
  background: rgba(181, 120, 74, 0.15);
  border-color: var(--rust);
}
.sticky__cn {
  font-family: "Special Elite", var(--mono);
  font-size: 10px;
  color: var(--sage);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.sticky__big {
  font-family: var(--serif, var(--zh));
  font-size: 28px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.05em;
  line-height: 1;
}
.sticky__small {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* —— 胶片卡 —— */
.filmcard {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--c1, #6A8D73) 0%, var(--c2, #B5C99A) 100%);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(60, 50, 30, 0.18);
  border: 4px solid #FAF8F0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
/* —— 真实封面版本（背景图为图片） —— */
.filmcard--img {
  background-image: var(--cover);
  background-size: cover;
  background-position: center;
  background-color: #2D3B2A;
}
.filmcard--img::before {
  /* 保留高光 但为图片降低明度对比 */
  background-image:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.3) 0%, transparent 60%),
    linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
}
.filmcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.filmcard::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.12'/></svg>");
  pointer-events: none;
}
.mokup__main:hover .filmcard {
  transform: translateY(-3px) rotate(-0.4deg);
  box-shadow: 0 10px 24px rgba(60, 50, 30, 0.22);
}
.filmcard__strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 14px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 8px;
  z-index: 4;
}
.filmcard__strip span {
  width: 6px; height: 6px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.filmcard__strip--bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  top: auto;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}
.filmcard__center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.filmcard__play {
  width: 50px; height: 50px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--forest);
  padding-left: 3px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}
.mokup__main:hover .filmcard__play {
  transform: scale(1.1);
  background: #fff;
}
/* —— 多封面 grid（专辑） —— */
.mokup__covers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed rgba(122, 143, 106, 0.3);
}
.mokup__cover {
  position: relative;
  aspect-ratio: 3/4;
  background-image: var(--cover);
  background-size: cover;
  background-position: center;
  background-color: #2D3B2A;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}
.mokup__cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}
.mokup__cover:hover {
  transform: translateY(-3px) rotate(-0.5deg);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}
.mokup__cover-num {
  position: absolute;
  top: 6px; left: 6px;
  font-family: "Special Elite", var(--mono);
  font-size: 8px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 2px 5px;
  letter-spacing: 0.15em;
  z-index: 2;
}
.mokup__cover-title {
  position: absolute;
  bottom: 4px; left: 6px; right: 6px;
  font-family: var(--zh);
  font-size: 10px;
  color: #fff;
  letter-spacing: 0.05em;
  z-index: 2;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.filmcard__cat {
  display: block;
  font-family: "Special Elite", var(--mono);
  font-size: 9px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 3px;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.filmcard__name {
  display: block;
  font-family: var(--zh);
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.08em;
  line-height: 1.3;
}
.filmcard__award {
  position: absolute;
  bottom: 24px;
  right: 12px;
  z-index: 4;
  background: var(--rust);
  color: #fff;
  font-family: var(--zh);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(181, 120, 74, 0.4);
}

/* —— 摄像作品变体（深色） —— */
.mokup--film {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.04) 0%, transparent 50%),
    #2A2620;
  border-color: #1A1814;
  color: #E8DDC0;
}
.mokup--film::before {
  background: rgba(181, 120, 74, 0.4);
}
.mokup--film .mokup__head {
  border-bottom-color: rgba(181, 120, 74, 0.3);
}
.mokup--film .mokup__type {
  color: var(--rust);
  border-color: var(--rust);
  background: rgba(181, 120, 74, 0.1);
}
.mokup--film .mokup__title {
  color: #F4F2E9;
  font-family: var(--zh);
}
.mokup--film .mokup__sub {
  color: #8A867B;
}
.mokup--film .mokup__num {
  color: var(--rust);
}

/* —— 各分类色调变体（更复杂多变） —— */
.mokup--sage {
  background:
    linear-gradient(135deg, rgba(181, 201, 154, 0.3) 0%, transparent 50%),
    linear-gradient(45deg, #EEF2DD 0%, #E5EAD5 100%);
  border-color: #B5C99A;
}
.mokup--sage::before { background: rgba(106, 141, 115, 0.4); }

.mokup--yellow {
  background:
    linear-gradient(135deg, rgba(232, 199, 184, 0.3) 0%, transparent 50%),
    linear-gradient(45deg, #F5EAD6 0%, #EFE3C8 100%);
  border-color: #D4B896;
}
.mokup--yellow::before { background: rgba(181, 120, 74, 0.4); }
.mokup--yellow .mokup__type {
  color: #B5784A;
  border-color: #B5784A;
  background: rgba(255, 250, 220, 0.5);
}
.mokup--yellow .mokup__title { color: #6B4A2A; }

.mokup--rose {
  background:
    linear-gradient(135deg, rgba(232, 199, 184, 0.4) 0%, transparent 50%),
    linear-gradient(45deg, #F5E1D5 0%, #EFD5C6 100%);
  border-color: #D4A98A;
}
.mokup--rose::before { background: rgba(181, 120, 74, 0.5); }
.mokup--rose .mokup__type {
  color: #B5784A;
  border-color: #B5784A;
  background: rgba(232, 199, 184, 0.4);
}
.mokup--rose .mokup__title { color: #6B4A2A; }

.mokup--warm {
  background:
    linear-gradient(135deg, rgba(255, 220, 180, 0.4) 0%, rgba(181, 201, 154, 0.3) 100%),
    linear-gradient(45deg, #F2E6CC 0%, #E5D5B5 100%);
  border-color: #C8A878;
}
.mokup--warm::before { background: rgba(181, 120, 74, 0.5); }
.mokup--warm .mokup__type {
  color: #B5784A;
  border-color: #B5784A;
  background: rgba(255, 240, 220, 0.5);
}

/* ---------- 11.6 FILM WALL（摄像作品·电影海报墙，与主页一致的淺色 + 柔光） ---------- */
.film-wall {
  background:
    radial-gradient(ellipse at top, rgba(106, 141, 115, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, #F4F2E9 0%, #EAE7D6 100%);
  border: 1px solid rgba(106, 141, 115, 0.3);
  border-radius: 4px;
  padding: 60px 50px 70px;
  margin: 60px 0 50px;
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.4),
    0 12px 30px rgba(45, 59, 42, 0.1);
  scroll-margin-top: 80px;
  color: var(--ink);
}
.film-wall::before {
  content: "";
  position: absolute;
  top: 24px; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 4px;
  background: rgba(181, 120, 74, 0.6);
  border-radius: 2px;
}
.film-wall__head {
  text-align: center;
  margin-bottom: 50px;
}
.film-wall__num {
  display: inline-block;
  font-family: "Special Elite", var(--mono);
  font-size: 12px;
  color: var(--rust);
  letter-spacing: 0.3em;
  margin-bottom: 16px;
  padding: 4px 12px;
  border: 1px solid var(--rust);
}
.film-wall__title {
  font-family: var(--zh);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
  line-height: 1.1;
}
.film-wall__sub {
  font-family: "Special Elite", var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.film-wall__line {
  font-family: var(--zh);
  font-size: 16px;
  color: var(--ink-2);
  letter-spacing: 0.05em;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* —— Feature 大海报 —— */
.poster--feature {
  background: linear-gradient(135deg, var(--pc1) 0%, var(--pc2) 100%);
  border: 4px solid #FAF8F0;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: block;
  margin-bottom: 36px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(181, 120, 74, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.poster--feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
  pointer-events: none;
}
.poster--feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.15'/></svg>");
  pointer-events: none;
}
.poster--feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6);
}
.poster__strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 18px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 14px;
  z-index: 4;
}
.poster__strip span {
  width: 8px; height: 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.poster__strip--bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  top: auto;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.poster__body {
  position: relative;
  z-index: 3;
  padding: 80px 60px 50px;
  min-height: 460px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: center;
}
.poster__left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.poster__cat {
  font-family: "Special Elite", var(--mono);
  font-size: 11px;
  color: var(--rust);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(181, 120, 74, 0.15);
  border: 1px solid var(--rust);
  align-self: flex-start;
}
.poster__name {
  font-family: var(--zh);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  color: #F4F2E9;
  letter-spacing: 0.15em;
  line-height: 1.1;
  margin: 6px 0;
}
.poster__en {
  font-family: var(--en);
  font-style: italic;
  font-size: 18px;
  color: #E8DDC0;
  letter-spacing: 0.05em;
  font-weight: 300;
}
.poster__year {
  font-family: "Special Elite", var(--mono);
  font-size: 13px;
  color: #B5C99A;
  letter-spacing: 0.2em;
  margin-top: 4px;
}
.poster__desc {
  font-family: var(--zh);
  font-size: 15px;
  color: #E8DDC0;
  line-height: 1.8;
  letter-spacing: 0.04em;
  max-width: 540px;
  border-left: 2px solid var(--rust);
  padding-left: 14px;
  margin-top: 8px;
}
.poster__desc em {
  font-family: var(--zh);
  font-style: normal;
  font-weight: 500;
  color: #F4F2E9;
  background: linear-gradient(transparent 75%, rgba(181, 120, 74, 0.3) 75%);
  padding: 0 4px;
}
.poster__meta {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.poster__role {
  font-family: "Special Elite", var(--mono);
  font-size: 11px;
  color: #C8C0A8;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.poster__play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 12px 22px;
  background: var(--rust);
  color: #fff;
  font-family: var(--zh);
  font-size: 14px;
  letter-spacing: 0.2em;
  border: none;
  align-self: flex-start;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(181, 120, 74, 0.35);
}
.poster__play:hover {
  background: #C68A5A;
  border: none;
  transform: translateX(4px);
}
.poster__play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 10px;
  padding-left: 2px;
}
.poster__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
}
.poster__award {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.poster__award-num {
  font-family: var(--en);
  font-style: italic;
  font-size: 80px;
  color: #F4F2E9;
  line-height: 1;
  font-weight: 300;
}
.poster__award-line {
  width: 60px; height: 1px;
  background: var(--rust);
}
.poster__award-name {
  font-family: "Special Elite", var(--mono);
  font-size: 12px;
  color: #B5C99A;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.poster__award-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.poster__award-item {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-family: "Special Elite", var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #C8C0A8;
  text-transform: uppercase;
}
.poster__award-tag {
  color: var(--rust);
  font-size: 10px;
  min-width: 40px;
  text-align: right;
}
.poster__award-text {
  color: #E8DDC0;
  font-family: var(--zh);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: none;
}

/* —— 海报网格（小海报） —— */
.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.poster-grid .poster {
  background: linear-gradient(135deg, var(--pc1) 0%, var(--pc2) 100%);
  border: 3px solid #FAF8F0;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  aspect-ratio: 2/3;
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.poster-grid .poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 75% 80%, rgba(0, 0, 0, 0.35) 0%, transparent 50%);
  pointer-events: none;
}
.poster-grid .poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.12'/></svg>");
  pointer-events: none;
  mix-blend-mode: overlay;
}
.poster-grid .poster:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(181, 120, 74, 0.3);
}
.poster__poster {
  position: absolute;
  inset: 0;
  z-index: 3;
  padding: 30px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.poster__num {
  font-family: "Special Elite", var(--mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.2em;
  align-self: flex-end;
}
.poster__genre {
  font-family: "Special Elite", var(--mono);
  font-size: 10px;
  color: var(--rust);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.3);
  padding: 3px 8px;
  border: 1px solid var(--rust);
  align-self: center;
  margin-top: 30px;
}
.poster__title {
  font-family: var(--zh);
  font-size: 32px;
  font-weight: 500;
  color: #F4F2E9;
  letter-spacing: 0.15em;
  line-height: 1.1;
  margin-top: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.poster__sub-en {
  font-family: var(--en);
  font-style: italic;
  font-size: 13px;
  color: #C8C0A8;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.poster__rating {
  font-family: "Special Elite", var(--mono);
  font-size: 11px;
  color: var(--rust);
  letter-spacing: 0.15em;
  margin-top: 14px;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--rust);
}
.poster__runtime {
  font-family: "Special Elite", var(--mono);
  font-size: 11px;
  color: #C8C0A8;
  letter-spacing: 0.2em;
  margin-top: 10px;
}
.poster__bottom {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
}
.poster__role-tag {
  font-family: var(--zh);
  font-size: 12px;
  color: #E8DDC0;
  letter-spacing: 0.15em;
}

/* ---------- 12. PHOTOS 页面（错位网格） ---------- */
.page--gallery {
  padding-top: 40px;
}
.page-hero--dark {
  text-align: center;
  margin-bottom: 80px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(106, 141, 115, 0.2);
}
.page-hero--dark .page-hero__num {
  color: var(--rust);
  font-size: 14px;
  display: inline-block;
  margin-bottom: 20px;
}
.page-hero--dark .page-hero__title .cn {
  color: var(--forest);
}

/* —— 错位网格（gallery） —— */
.gallery {
  margin-top: 30px;
}
.gallery__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(106, 141, 115, 0.3);
}
.gallery__num {
  font-family: "Special Elite", var(--mono);
  font-size: 11px;
  color: var(--sage);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: rgba(106, 141, 115, 0.1);
  padding: 4px 10px;
  border: 1px solid rgba(106, 141, 115, 0.3);
}
.gallery__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--sage) 0%, transparent 100%);
  opacity: 0.3;
}
.gallery__count {
  font-family: "Special Elite", var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gallery__set {
  margin-bottom: 80px;
}
.set__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(106, 141, 115, 0.3);
}
.set__num {
  font-family: "Special Elite", var(--mono);
  font-size: 11px;
  color: var(--rust);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: rgba(181, 120, 74, 0.08);
  border: 1px solid rgba(181, 120, 74, 0.3);
}
.set__title {
  font-family: var(--zh);
  font-size: 28px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.1em;
  line-height: 1;
}
.set__en {
  font-family: var(--en);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
}

/* ============================================
   Photos Page · 3D Gradient Carousel
   与主页一致的淺色背景 + 原图画幅
   ============================================ */
.page--carousel3d {
  background: transparent;
  min-height: 100vh;
  color: var(--ink);
  padding-top: 0;
}
body.page-photos {
  background: var(--paper);
  color: var(--ink);
}
.page--carousel3d .page-hero--dark .page-hero__num,
.page--carousel3d .page-hero--dark .page-hero__title .cn { color: var(--forest); }
.page--carousel3d .page-hero--dark .page-hero__lead {
  color: var(--ink-2);
}
.page--carousel3d .page-hero--dark .page-hero__lead em {
  color: var(--rust);
  font-style: italic;
  font-family: var(--en);
}

.gallery3d {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px var(--gutter) 80px;
  position: relative;
}

/* —— 套装标题（人像 / 风光） —— */
.gallery3d__set-head {
  text-align: left;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px dashed rgba(122, 143, 106, 0.3);
  position: relative;
}
.gallery3d__set-cat {
  display: inline-block;
  font-family: "Special Elite", var(--mono);
  font-size: 11px;
  color: var(--rust);
  letter-spacing: 0.3em;
  margin-bottom: 16px;
  padding: 4px 12px;
  border: 1px solid var(--rust);
}
.gallery3d__set-title {
  font-family: var(--zh);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.1em;
  margin: 0 0 10px;
  line-height: 1.2;
}
.gallery3d__set-line {
  display: block;
  width: 50px;
  height: 2px;
  background: var(--rust);
  margin: 0 0 10px;
}
.gallery3d__set-sub {
  font-family: var(--en);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.15em;
  margin: 0;
}

/* —— 顶部信息条 —— */
.gallery3d__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(122, 143, 106, 0.3);
}
.gallery3d__num {
  font-family: "Special Elite", var(--mono);
  font-size: 11px;
  color: var(--rust);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.gallery3d__num em {
  font-style: normal;
  color: var(--ink);
  font-weight: 500;
}
.gallery3d__progress {
  height: 2px;
  background: rgba(122, 143, 106, 0.2);
  position: relative;
  overflow: hidden;
}
.gallery3d__progress-bar {
  position: absolute;
  inset: 0;
  width: 12.5%;
  background: linear-gradient(90deg, var(--rust), var(--sage-2));
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery3d__hint {
  font-family: var(--en);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.05em;
}

/* —— 3D 舞台 —— */
.gallery3d__stage {
  position: relative;
  height: 560px;
  perspective: 1500px;
  perspective-origin: 50% 50%;
  margin-bottom: 40px;
  user-select: none;
  cursor: grab;
}
.gallery3d__stage:active { cursor: grabbing; }

.gallery3d__track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.card3d {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--w, 320px);
  height: var(--h, 420px);
  margin-left: calc(var(--w, 320px) / -2);
  margin-top: calc(var(--h, 420px) / -2);
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.5s ease,
              filter 0.5s ease;
  cursor: pointer;
}
.card3d__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c1, #6A8D73) 0%, var(--c2, #2D3B2A) 100%);
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 16px 40px -10px rgba(45, 59, 42, 0.35),
    0 8px 20px -8px rgba(45, 59, 42, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.card3d__bg--img {
  background-image: var(--cover);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #2D3B2A;
  border: none;
  box-shadow:
    0 25px 50px -12px rgba(45, 59, 42, 0.45),
    0 12px 24px -8px rgba(45, 59, 42, 0.35),
    0 0 0 1px rgba(45, 59, 42, 0.08);
}
.card3d__bg--img .card3d__svg { display: none; }
.card3d__bg--img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
  pointer-events: none;
}
.card3d__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.card3d__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.18'/></svg>");
  mix-blend-mode: overlay;
  pointer-events: none;
  opacity: 0.7;
}
.card3d__meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 24px;
  z-index: 3;
  background: linear-gradient(0deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.card3d__num {
  font-family: "Special Elite", var(--mono);
  font-size: 12px;
  color: var(--rust);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.card3d__meta h3 {
  font-family: var(--zh);
  font-size: 22px;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: 0.08em;
  line-height: 1.15;
}
.card3d__meta p {
  font-family: var(--en);
  font-style: italic;
  font-size: 13px;
  color: rgba(244, 242, 233, 0.7);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* —— 导航按钮 —— */
.gallery3d__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border: 1px solid rgba(122, 143, 106, 0.4);
  background: rgba(244, 242, 233, 0.7);
  backdrop-filter: blur(10px);
  color: var(--forest);
  font-family: var(--en);
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  border-radius: 50%;
  z-index: 20;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  padding-bottom: 4px;
}
.gallery3d__nav:hover {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--paper);
  transform: translateY(-50%) scale(1.05);
}
.gallery3d__nav--prev { left: 30px; }
.gallery3d__nav--next { right: 30px; }

/* —— 信息区 —— */
.gallery3d__info {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  padding: 40px 0 36px;
  border-top: 1px dashed rgba(122, 143, 106, 0.3);
  border-bottom: 1px dashed rgba(122, 143, 106, 0.3);
  margin-bottom: 30px;
}
.gallery3d__info-left { display: flex; flex-direction: column; gap: 10px; }
.gallery3d__info-cat {
  font-family: "Special Elite", var(--mono);
  font-size: 11px;
  color: var(--rust);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.gallery3d__info-title {
  font-family: var(--zh);
  font-size: 36px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.08em;
  line-height: 1.1;
  margin: 0;
}
.gallery3d__info-where {
  font-family: var(--en);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-2);
  letter-spacing: 0.05em;
  margin: 0;
}
.gallery3d__info-desc {
  font-family: var(--zh);
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-2);
  letter-spacing: 0.05em;
  max-width: 560px;
}

/* —— 缩略图指示器 —— */
.gallery3d__thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.thumb3d {
  width: 56px;
  height: 70px;
  border-radius: 4px;
  border: 1px solid rgba(122, 143, 106, 0.3);
  cursor: pointer;
  background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 100%);
  position: relative;
  overflow: hidden;
  opacity: 0.5;
  transition: all 0.3s ease;
  padding: 0;
}
.thumb3d--img {
  background-image: var(--cover);
  background-size: cover;
  background-position: center;
  background-color: #E8E2D0;
}
.thumb3d::after {
  content: attr(data-num);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Special Elite", var(--mono);
  font-size: 10px;
  color: var(--paper);
  background: rgba(0, 0, 0, 0.35);
  letter-spacing: 0.1em;
}
.thumb3d:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}
.thumb3d.is-active {
  opacity: 1;
  border-color: var(--rust);
  box-shadow: 0 6px 16px rgba(181, 120, 74, 0.3);
  transform: translateY(-3px);
}

/* ============================================
   Video Section · 大视频上传说明
   ============================================ */
.video-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px var(--gutter) 60px;
  scroll-margin-top: 80px;
}
.video-section__head {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px dashed rgba(122, 143, 106, 0.3);
}
.video-section__num {
  display: inline-block;
  font-family: "Special Elite", var(--mono);
  font-size: 12px;
  color: var(--rust);
  letter-spacing: 0.3em;
  padding: 4px 14px;
  border: 1px solid var(--rust);
  margin-bottom: 16px;
}
.video-section__title {
  font-family: var(--zh);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.12em;
  margin: 0 0 12px;
}
.video-section__sub {
  font-family: var(--zh);
  font-size: 15px;
  color: var(--ink-2);
  letter-spacing: 0.05em;
}
.video-section__board {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}
.video-section__demo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.video-section__player {
  border: 1px solid rgba(122, 143, 106, 0.4);
  background: #1A1814;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(45, 59, 42, 0.15);
  position: relative;
}
.video-section__player::before {
  content: "DEMO";
  position: absolute;
  top: 12px; right: 14px;
  font-family: "Special Elite", var(--mono);
  font-size: 10px;
  color: var(--rust);
  letter-spacing: 0.3em;
  z-index: 1;
  background: rgba(244, 242, 233, 0.95);
  padding: 2px 8px;
  border: 1px solid var(--rust);
}
.video-section__caption {
  font-family: var(--zh);
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.7;
  letter-spacing: 0.03em;
  padding: 16px;
  background: rgba(106, 141, 115, 0.08);
  border-left: 3px solid var(--rust);
}
.video-section__caption code {
  font-family: var(--mono);
  font-size: 12px;
  background: rgba(45, 59, 42, 0.1);
  padding: 1px 6px;
  color: var(--forest);
}
.video-section__plans {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.video-plan {
  padding: 20px 22px;
  background: var(--paper);
  border: 1px solid rgba(122, 143, 106, 0.25);
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}
.video-plan:hover {
  border-color: var(--rust);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 59, 42, 0.1);
}
.video-plan__num {
  position: absolute;
  top: 18px; right: 20px;
  font-family: var(--en);
  font-style: italic;
  font-size: 28px;
  color: var(--rust);
  line-height: 1;
  opacity: 0.5;
}
.video-plan__title {
  font-family: var(--zh);
  font-size: 17px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.05em;
  margin: 0 0 8px;
  padding-right: 30px;
}
.video-plan__desc {
  font-family: var(--zh);
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.video-plan__desc code {
  font-family: var(--mono);
  font-size: 11px;
  background: rgba(45, 59, 42, 0.08);
  padding: 1px 5px;
  color: var(--rust);
}
.video-plan__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.video-plan__list li {
  font-family: "Special Elite", var(--mono);
  font-size: 11px;
  color: var(--ink-2);
  letter-spacing: 0.05em;
  padding-left: 14px;
  position: relative;
}
.video-plan__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--rust);
}
.video-section__note {
  margin-top: 40px;
  padding: 24px 28px;
  background: rgba(106, 141, 115, 0.1);
  border: 1px dashed rgba(106, 141, 115, 0.4);
  border-radius: 4px;
}
.video-section__note-label {
  display: inline-block;
  font-family: "Special Elite", var(--mono);
  font-size: 11px;
  color: var(--rust);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.video-section__note p {
  font-family: var(--zh);
  font-size: 14px;
  color: var(--ink);
  line-height: 1.8;
  margin: 0;
  letter-spacing: 0.03em;
}
.video-section__note em {
  color: var(--rust);
  font-style: normal;
  font-family: var(--en);
  font-weight: 500;
}

/* ============================================
   Outfit Preview · hover 播放、3 个竖屏横排
   ============================================ */
.outfit-previews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 24px auto 0;
  max-width: 540px;
}
.outfit-preview {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  background: #1A1814;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 12px 30px -8px rgba(45, 59, 42, 0.25);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.outfit-preview:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -8px rgba(45, 59, 42, 0.4);
}
.outfit-preview video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #1A1814;
}
.outfit-preview__hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Special Elite", var(--mono);
  font-size: 9px;
  color: var(--paper);
  letter-spacing: 0.2em;
  background: rgba(0, 0, 0, 0.55);
  padding: 5px 12px;
  border-radius: 2px;
  z-index: 3;
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.outfit-preview:hover .outfit-preview__hint { opacity: 0.9; }

/* ============================================
   Covers Page · supah 风格 hover-expand 网格
   ============================================ */
.covers-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px var(--gutter) 80px;
}
.covers-grid__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(122, 143, 106, 0.3);
}
.covers-grid__label {
  font-family: "Special Elite", var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.covers-grid__count {
  font-family: var(--en);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-2);
}
.covers-grid__board {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  perspective: 1400px;
}

/* —— 卡片：默认等大，hover 不做任何变化 —— */
.cover-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  background: #1A1814;
  border: none;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transform: none;
  filter: none;
  opacity: 1;
  transition: none;
  z-index: 1;
}
.cover-card__img {
  position: absolute;
  inset: 0;
  background-image: var(--cover);
  background-size: cover;
  background-position: center;
  background-color: #2D3B2A;
}
.cover-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.15'/></svg>");
  mix-blend-mode: overlay;
  pointer-events: none;
}
.cover-card__meta {
  position: absolute;
  inset: auto 0 0;
  padding: 12px 14px 14px;
  z-index: 3;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
}
.cover-card__cat {
  font-family: "Special Elite", var(--mono);
  font-size: 9px;
  color: var(--rust);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.cover-card__title {
  font-family: var(--zh);
  font-size: 14px;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.cover-card__year {
  font-family: var(--en);
  font-style: italic;
  font-size: 11px;
  color: rgba(244, 242, 233, 0.6);
  letter-spacing: 0.05em;
}

/* —— hover 状态：什么都不变（全部取消） —— */
.cover-card:hover { z-index: 2; }
.covers-grid__board:hover .cover-card:not(:hover) { /* no-op */ }
/* 鼠标扫过后不要出现任何字 */
.cover-card__meta { display: none; }

/* —— 套装统计 —— */
.covers-grid__legend {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px dashed rgba(122, 143, 106, 0.3);
}
.covers-grid__legend-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.covers-grid__legend-num {
  font-family: var(--en);
  font-size: 28px;
  font-weight: 500;
  color: var(--rust);
  font-style: italic;
  line-height: 1;
}
.covers-grid__legend-label {
  font-family: "Special Elite", var(--mono);
  font-size: 10px;
  color: var(--ink-2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* —— 模态大图（点击后不模糊背景） —— */
.cover-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(15, 13, 10, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.cover-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.cover-modal__close {
  position: absolute;
  top: 30px; right: 30px;
  width: 48px; height: 48px;
  border: 1px solid rgba(244, 242, 233, 0.3);
  background: transparent;
  color: var(--paper);
  font-size: 28px;
  font-family: var(--en);
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 2;
}
.cover-modal__close:hover {
  background: var(--rust);
  border-color: var(--rust);
  transform: rotate(90deg);
}
.cover-modal__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 480px;
  padding: 0 20px;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.cover-modal.is-open .cover-modal__inner {
  transform: scale(1) translateY(0);
}
.cover-modal__img {
  max-width: 100%;
  max-height: 75vh;
  border: 4px solid #FAF8F0;
  border-radius: 4px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(181, 120, 74, 0.3);
}
.cover-modal__meta {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cover-modal__cat {
  font-family: "Special Elite", var(--mono);
  font-size: 11px;
  color: var(--rust);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.cover-modal__title {
  font-family: var(--zh);
  font-size: 28px;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: 0.1em;
  margin: 0;
}
.cover-modal__year {
  font-family: var(--en);
  font-style: italic;
  font-size: 14px;
  color: rgba(244, 242, 233, 0.5);
  letter-spacing: 0.05em;
}

/* ---------- 13. Reveal 动画 ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 14. 响应式 ---------- */
@media (max-width: 960px) {
  .topbar { grid-template-columns: 1fr auto; }
  .topbar__nav { grid-column: 1 / -1; justify-content: flex-start; gap: 18px; padding-top: 12px; }
  .cover__main { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .cover__name { text-align: center; }
  .cover__tag { justify-content: center; }
  .cover__seal { transform: rotate(-3deg) scale(0.85); }
  .files__grid { grid-template-columns: 1fr; gap: 40px; }
  .toc__link { grid-template-columns: 80px 1fr 50px 30px; gap: 20px; padding: 28px 8px; }
  .toc__num-big { font-size: 36px; }
  .toc__title-cn { font-size: 22px; }
  .toc__icon { display: none; }
  .cat__head, .album__head { grid-template-columns: 60px 1fr; gap: 16px; }
  .cat__num, .album__num { font-size: 40px; }
  .cat__title, .album__title { font-size: 28px; }
  .album__count { grid-column: 2; padding-top: 0; padding-bottom: 0; }
  .vitem { grid-template-columns: 1fr; gap: 18px; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .pgrid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; }
  .gphoto--feature { grid-column: span 4; grid-row: span 2; }
  .gphoto--wide { grid-column: span 4; }
  .gphoto--tall { grid-column: span 2; }
  .gallery3d__info { grid-template-columns: 1fr; gap: 30px; }
  .gallery3d__info-title { font-size: 28px; }
  .gallery3d__stage { height: 480px; }
  .card3d { width: 280px; height: 380px; margin-left: -140px; margin-top: -190px; }
  .gallery3d__nav--prev { left: 14px; }
  .gallery3d__nav--next { right: 14px; }
  .gallery3d__nav { width: 46px; height: 46px; font-size: 26px; }
  .card3d__num { font-size: 11px; }
  .videos-toc__list { grid-template-columns: repeat(4, 1fr); }
  .videos-toc__list li:nth-child(4n) { border-right: none; }
  .videos-toc__divider { display: none; }
  .quick-facts__grid { grid-template-columns: repeat(2, 1fr); }
  .mokup__board { grid-template-columns: 1fr; }
  .mokup__board--double { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --gutter: 22px; }
  .topbar { padding: 18px var(--gutter); }
  .topbar__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 11px;
  }
  .topbar__nav a {
    font-size: 11px;
    flex: 0 0 calc(33.333% - 8px);
    text-align: center;
  }
  .topbar__nav a.is-active::after { bottom: -4px; }
  .topbar__meta { display: none; }
  .page, .cover, .toc { padding-left: var(--gutter); padding-right: var(--gutter); }
  .page-hero__title .cn { font-size: 48px; }
  .cover__title .name-cn { font-size: 80px; }
  .cover__topline { font-size: 10px; gap: 10px; }
  .videos-toc__list { grid-template-columns: repeat(2, 1fr); }
  .videos-toc__list li { border-right: 1px dashed rgba(122, 143, 106, 0.3) !important; }
  .videos-toc__list li:nth-child(2n) { border-right: none !important; }
  .quick-facts__grid { grid-template-columns: 1fr; }
  .toc__link { grid-template-columns: 1fr; gap: 12px; padding: 24px 4px; }
  .toc__num-cell { flex-direction: row; align-items: baseline; gap: 12px; }
  .toc__num-big { font-size: 32px; }
  .toc__title-cn { font-size: 20px; }
  .toc__arrow { display: none; }
  .toc__seasonal { flex-wrap: wrap; letter-spacing: 0.3em; }
  .videos-toc a, .photos-toc a { font-size: 12px; padding: 3px 10px; }

  /* —— 视频网格移动端 —— 全部改成 2 列；横屏视频单列堆叠（沙漠旅行/独处DAY）—— */
  .video-grid--cols3,
  .video-grid--cols4,
  .video-grid--cols5,
  .video-grid--cols6 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .video-grid--cols7,
  .video-grid--cols8 { grid-template-columns: repeat(2, 1fr); }
  .video-grid--landscape,
  .video-grid--cols2.video-grid--landscape { grid-template-columns: 1fr; gap: 14px; }
  .video-card--landscape { max-width: 100%; aspect-ratio: 16 / 9; }
  .video-grid--solo-landscape .video-card--landscape { max-width: 100%; }
  .cat__num, .album__num { font-size: 32px; }
  .cat__title, .album__title { font-size: 24px; }
  .pgrid--3, .pgrid--2 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 110px; gap: 6px; }
  .gphoto--feature { grid-column: span 3; grid-row: span 2; }
  .gphoto--wide { grid-column: span 3; }
  .gphoto--tall { grid-column: span 2; grid-row: span 2; }
  .set__head { flex-wrap: wrap; }
  .set__title { font-size: 22px; }
  .gallery3d__head { grid-template-columns: 1fr; gap: 12px; text-align: center; }
  .gallery3d__hint { display: none; }
  .gallery3d__stage { height: 400px; }
  /* 卡片尺寸按 JS 算的源比例 · contain 模式无黑边、无裁剪 */
  .card3d__bg--img { background-size: contain; background-color: transparent; }
  .gallery3d__info-title { font-size: 24px; }
  .gallery3d__info-desc { font-size: 14px; }
  .thumb3d { width: 38px; height: 48px; }
  .covers-grid__board { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .covers-grid__legend { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .video-section__board { grid-template-columns: 1fr; }
  .page-nav { flex-direction: column; gap: 16px; padding: 24px var(--gutter) 0; }
  .glow--1, .glow--2 { opacity: 0.4; }
  .quick-facts dl.quick-facts__contact { margin-top: 16px; padding-top: 16px; border-top: 1px dashed rgba(122, 143, 106, 0.3); }

  /* —— 移动端 · 首页 cover 5 张卡：单列堆叠 · 履历卡放最上 —— */
  .cover { padding: 30px var(--gutter) 50px; min-height: 0; }
  .cover__art-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    height: auto;
    width: 100%;
    margin-top: 16px;
  }
  /* 重置所有绝对定位 / transform · 改成相对位置单列 */
  .cover__art-cover,
  .cover__art-experience,
  .cover__art-videos,
  .cover__art-link,
  .cover__art-back-link {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    inset: auto;
    transform: none !important;
  }
  /* 履历卡 · 放最上 · 缩小很多（不抢眼）· 左移 100px · 右倾 10° */
  .cover__art-link {
    order: -1;
    width: 55%;
    max-width: 200px;
    height: auto;
    aspect-ratio: 1164 / 2383;
    margin: 0 auto;
    z-index: 5;
    transform: translateX(-100px) rotate(10deg) !important;
  }
  .cover__art-link > img { width: 100%; height: 100%; object-fit: contain; }
  /* 视频作品 · 上移 50px · 右移 10px（累计 75px）*/
  .cover__art-videos {
    width: 88%;
    max-width: 340px;
    height: auto;
    aspect-ratio: 4 / 5;
    margin: -240px auto 0;
    z-index: 6;
    transform: translateX(75px) rotate(-3deg) !important;
  }
  /* 封面设计 · 左倾 · 左移 60px（累计） */
  .cover__art-cover {
    width: 75%;
    max-width: 300px;
    height: auto;
    aspect-ratio: 4 / 5;
    margin: -80px auto 0;
    z-index: 3;
    transform: translateX(-60px) rotate(-5deg) !important;
  }
  /* 个人经历 · 叠在封面设计上面 · 更大 · 右移 40px · 再放大 */
  .cover__art-experience {
    width: 88%;
    max-width: 340px;
    height: auto;
    aspect-ratio: 4 / 5;
    margin: -80px auto 0;
    z-index: 4;
    transform: translateX(40px) rotate(3deg) !important;
  }
  /* 摄影作品 · 放大 · 上移 40px（累计 -170px）· 左移 20px · 倾斜往右 */
  .cover__art-back-link {
    width: 92%;
    max-width: 360px;
    height: auto;
    aspect-ratio: 4 / 5;
    margin: -170px auto 0;
    z-index: 2;
    transform: translateX(-20px) rotate(-3deg) !important;
  }
  .cover__art-cover > img,
  .cover__art-experience > img,
  .cover__art-videos > img { width: 100%; height: 100%; object-fit: contain; }
  .cover__art-back-wrap {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 100%;
    transform: none;
  }
  .cover__art--back { width: 100%; height: 100%; }
  /* 移动端禁用 hover 缩放（用 filter 替代）*/
  .cover__art-cover.is-hover > img,
  .cover__art-experience.is-hover > img,
  .cover__art-videos.is-hover > img,
  .cover__art--back:hover { transform: none; }
}

/* ---------- 12. VIDEOS · 视频网格（横向 3 列 + 原画幅 + hover 播放） ---------- */
.video-grid {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
}
.video-grid--cols3 { grid-template-columns: repeat(3, 1fr); max-width: 540px; margin-left: auto; margin-right: auto; }
.video-grid--cols4 { grid-template-columns: repeat(4, 1fr); max-width: 714px; margin-left: auto; margin-right: auto; }
.video-grid--cols5 { grid-template-columns: repeat(5, 1fr); }
.video-grid--cols6 { grid-template-columns: repeat(6, 1fr); }
.video-grid--cols7 { grid-template-columns: repeat(7, 1fr); }
.video-grid--cols8 { grid-template-columns: repeat(8, 1fr); }
/* 横屏 grid：在竖屏 grid 下面，加一点顶部间距；列数自适应；整体居中 */
.video-grid--landscape {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 22px;
  max-width: 920px;
  justify-content: center;
}
.video-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #1A1814;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 22px -10px rgba(45, 59, 42, 0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -8px rgba(45, 59, 42, 0.45);
}
.video-card--portrait {
  aspect-ratio: 9 / 16;     /* 竖屏：跟 outfit-preview 一致 */
}
.video-card--landscape {
  display: block;
  background: #0E0D0A;
  max-width: 380px;
  margin: 0 auto;
  padding: 0;
  aspect-ratio: 16 / 9;     /* 父容器固定 16:9，保证占位可见 */
  min-height: 200px;
}
.video-card--landscape video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;       /* 视频原比例显示，不裁剪 */
  display: block;
}
.video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 占位封面：默认不显示视频首帧，hover 时透出视频 */
.video-card--placeholder .video-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(106, 141, 115, 0.18) 0 18px,
      rgba(106, 141, 115, 0.32) 18px 36px
    ),
    #1A1814;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #E8DDC0;
  font-family: "Special Elite", var(--mono);
  letter-spacing: 0.2em;
  text-align: center;
  padding: 14px;
  transition: opacity 0.3s ease;
}
.video-card--placeholder .video-placeholder__icon {
  font-size: 28px;
  opacity: 0.7;
}
.video-card--placeholder .video-placeholder__txt {
  font-size: 11px;
  color: rgba(232, 221, 192, 0.7);
}
.video-card--placeholder:hover .video-placeholder {
  opacity: 0;
  pointer-events: none;
}

/* ---------- 13. VIDEOS · 小标题（caption） + figure ---------- */
.video-grid--with-caption .video-card-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.video-card-figure .video-card {
  display: block;
}
.video-card__caption {
  display: block;
  text-align: center;
  font-family: var(--zh);
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.05em;
  padding: 4px 0 0;
  border-top: 1px dashed rgba(106, 141, 115, 0.25);
  margin-top: 2px;
}

/* ---------- 14. VIDEOS · landscape 占位可见性 ---------- */
/* 没 src 时 video 元素默认 placeholder 高度很低，加 min-height 让卡片始终可见 */
.video-card--landscape video {
  background-color: #0E0D0A;
}
/* 当 <video> 没有 src 时（lazy load 未触发），用 ::before 显示占位图标 */
.video-card--landscape:not(:has(video[src]))::before,
.video-card--landscape video:not([src]) {
  content: "▶";
}
.video-card--landscape video:not([src]) {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(232, 221, 192, 0.4);
  font-size: 36px;
}

/* ---------- 15. outfit + caption 配套 ---------- */
.outfit-previews--with-caption {
  grid-template-columns: repeat(3, 1fr);
  display: grid;
  margin-top: 24px;
}
.outfit-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.outfit-figure .video-card__caption {
  text-align: center;
}

/* ---------- 16. cols5 / cols6 共享等大卡片宽度（让卡片跟 outfit 同尺寸） ---------- */

/* ---------- 17. cols2 landscape 横屏视频（vlog 横屏两段） ---------- */
.video-grid--cols2 { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin-left: auto; margin-right: auto; }
.video-grid--landscape.video-grid--cols2 {
  margin-top: 22px;
}
.video-grid--landscape.video-grid--cols2 .video-card--landscape {
  max-width: 320px;
}

/* ---------- 18. 海报封面图（《她们》使用真实图片） ---------- */
.poster[style*="background-image"] {
  background-blend-mode: normal;
}
.poster[style*="background-image"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 2;
  pointer-events: none;
}
.poster[style*="background-image"] .poster__poster {
  z-index: 4;
}
.poster[style*="background-image"] .poster__strip,
.poster[style*="background-image"] .poster__strip--bottom {
  z-index: 3;
}

/* ---------- 19. 单个横屏视频（v-corporate 邀请函） ---------- */
.video-grid--solo-landscape {
  grid-template-columns: minmax(0, 380px);
  max-width: 380px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

/* —— 短片海报 QR 覆盖链接 —— */
.poster__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-indent: -9999px;
  overflow: hidden;
}
.poster__play {
  position: relative;
  z-index: 2;
}

/* —— v2 修复: z-index 提到 .poster__poster 之上 —— */
.poster__link {
  z-index: 5;
  background: transparent;
  text-decoration: none;
}

/* —— covers: HOVER 下方小字 —— */
.covers-grid__hint {
  display: block;
  margin: 8px 0 0;
  font-family: var(--zh);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  opacity: 0.7;
}

/* —— photos: 进度条改绿色 —— */
.gallery3d__progress-bar {
  background: linear-gradient(90deg, var(--sage-2), var(--forest)) !important;
}

/* —— photos: 目录到 人像/风格 间隔缩短 —— */
.page-hero {
  padding-bottom: 28px !important;
}
.gallery3d {
  margin-top: 20px !important;
  padding-top: 20px !important;
}

/* =====================================================================
   首页 Hero · Tintory 版式 (米色调)
   仅作用于 body.page-index--hero,其他页面不受影响
   ===================================================================== */

body.page-index--hero {
  background: var(--paper);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

/* —— 顶栏 (米底 + 沙绿边) —— */
.topbar--hero {
  border-bottom: 1px solid var(--sage);
  padding: 22px var(--gutter);
  max-width: 100%;
  background: transparent;
  position: relative;
  z-index: 10;
}
.topbar--hero .topbar__brand--hero .brand-en {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--rust);
  text-transform: uppercase;
}
.topbar--hero .topbar__nav--hero a {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--ink);
  text-transform: uppercase;
  margin-left: 36px;
  transition: color 0.25s;
}
.topbar--hero .topbar__nav--hero a:hover {
  color: var(--rust);
}
.topbar--hero .topbar__nav--hero a.is-active {
  color: var(--rust);
  position: relative;
}
.topbar--hero .topbar__nav--hero a.is-active::after {
  display: none;
}

/* —— Hero 主区 —— */
.hero {
  position: relative;
  padding: 60px var(--gutter) 80px;
  max-width: 100%;
  overflow: hidden;
}
.hero__inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  min-height: 80vh;
}

/* —— 左侧大标题 (沙绿大字 + 赭石副标) —— */
.hero__title {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--zh);
  font-weight: 700;
  line-height: 0.95;
  color: var(--sage);
  text-shadow: 0 2px 0 rgba(45, 59, 42, 0.08);
  max-width: 50%;
  padding-top: 40px;
}
.hero__title-zh {
  display: block;
  font-size: clamp(80px, 13vw, 200px);
  letter-spacing: -0.02em;
}
.hero__title-en {
  display: block;
  font-family: var(--en);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(40px, 6vw, 90px);
  color: var(--rust);
  letter-spacing: 0.02em;
  margin-top: -8px;
}

/* —— 右侧卡片堆 —— */
.hero__stack {
  position: absolute;
  top: 0;
  right: 0;
  width: 560px;
  height: 580px;
  z-index: 1;
}

.file-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  min-height: 230px;
  padding: 18px 18px 16px;
  background: var(--paper-2);
  color: var(--ink);
  border: 1px dashed rgba(106, 141, 115, 0.4);
  border-radius: 2px;
  box-shadow:
    0 2px 4px rgba(45, 59, 42, 0.08),
    0 10px 24px rgba(45, 59, 42, 0.12);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transform: translate(var(--x, 0), var(--y, 0)) rotate(var(--rot, 0deg));
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
              box-shadow 0.4s,
              z-index 0s;
  font-family: var(--zh);
  cursor: pointer;
}
.file-card:nth-child(1) { z-index: 5; }
.file-card:nth-child(2) { z-index: 4; }
.file-card:nth-child(3) { z-index: 3; }
.file-card:nth-child(4) { z-index: 2; }
.file-card:nth-child(5) { z-index: 1; }

.file-card:hover {
  transform: translate(var(--x, 0), calc(var(--y, 0) - 8px)) rotate(0deg) scale(1.04);
  box-shadow:
    0 4px 8px rgba(45, 59, 42, 0.12),
    0 20px 40px rgba(45, 59, 42, 0.18);
  z-index: 10 !important;
}

.file-card__tag {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  color: var(--rust);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.file-card__title {
  font-family: var(--zh);
  font-size: 24px;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.1;
  margin: 0 0 10px;
  letter-spacing: 0.05em;
}
.file-card__desc {
  font-family: var(--zh);
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.55;
  margin: 0 0 auto;
  flex: 1;
}
.file-card__cta {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--sage);
  letter-spacing: 0.15em;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(45, 59, 42, 0.18);
  text-transform: uppercase;
}

/* —— 底部介绍文字 —— */
.hero__bio {
  position: relative;
  z-index: 2;
  max-width: 460px;
  margin: 80px 0 0;
  font-family: var(--zh);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--ink-2);
  letter-spacing: 0.05em;
}

/* —— 底部 footer (米底 + 沙绿边) —— */
.footer--hero {
  border-top: 1px solid var(--sage);
  padding: 26px var(--gutter);
  max-width: 100%;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.footer--hero .footer__col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer--hero .footer__col--right span {
  letter-spacing: 0.3em;
}
.footer--hero .footer__sig {
  color: var(--rust);
  font-weight: 500;
  letter-spacing: 0.3em;
}
.footer--hero .footer__sub {
  color: var(--ink-3);
  font-size: 10px;
}

/* —— 响应式 —— */
@media (max-width: 980px) {
  .hero__inner { min-height: auto; }
  .hero__title { max-width: 100%; }
  .hero__stack {
    position: relative;
    width: 100%;
    height: 460px;
    margin-top: 40px;
  }
  .hero__bio { margin-top: 40px; max-width: 100%; }
}
@media (max-width: 560px) {
  .topbar--hero { padding: 16px 20px; }
  .topbar--hero .topbar__nav--hero a { margin-left: 18px; font-size: 10px; }
  .hero { padding: 40px 20px 60px; }
  .hero__stack { height: 420px; }
  .file-card { width: 180px; min-height: 200px; padding: 14px; }
  .file-card__title { font-size: 20px; }
  .footer--hero { flex-direction: column; gap: 12px; }
}

/* (蝴蝶光标样式已删除) */
