/* ========== Project detail page ========== */
.project {
  padding-left: var(--rail-w);
}
.project__head {
  padding: 70px 60px 30px 280px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.project__case {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 14px;
}
.project__title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
}
.project__sub {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--text-dim);
}
.project__back {
  position: absolute;
  top: 76px;
  left: 60px;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--text-dim);
  transition: color .25s;
}
.project__back:hover { color: var(--accent); }

/* ========== Sidebar TOC ========== */
.toc {
  position: fixed;
  top: 50%;
  left: calc(var(--rail-w) + 24px);
  transform: translateY(-50%);
  z-index: 40;
  width: 200px;
  max-height: 80vh;
  overflow-y: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 14px 0;
  scrollbar-width: thin;
}
.toc::-webkit-scrollbar { width: 0; }
.toc__title {
  font-size: 9px;
  color: var(--text-faint);
  letter-spacing: 0.3em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.toc ol { list-style: none; }
.toc__item {
  display: block;
  padding: 7px 12px 7px 14px;
  color: var(--text-dim);
  border-left: 1px solid var(--border);
  cursor: pointer;
  transition: color .25s, border-color .25s, padding .3s;
  position: relative;
}
.toc__item.lvl-2 { padding-left: 28px; font-size: 10px; color: var(--text-faint); }
.toc__item.is-active {
  color: var(--accent);
  border-left-color: var(--accent);
  padding-left: 18px;
}
.toc__item.lvl-2.is-active { padding-left: 32px; }
.toc__item .num { color: var(--accent); margin-right: 8px; }

/* ========== Sections (each section is full-page tall) ========== */
.project__sections {
  margin-left: 240px;
}
.psec {
  min-height: 100vh;
  padding: 80px 80px;
  position: relative;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.psec__head {
  display: flex; align-items: baseline; gap: 18px;
  margin-bottom: 36px;
}
.psec__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
}
.psec__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 400;
  line-height: 1.05;
}
.psec__lead {
  max-width: 700px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 30px;
}

/* === Cover === */
.psec--cover {
  align-items: center;
  text-align: center;
  justify-content: center;
}
.psec--cover .psec__title {
  font-size: clamp(32px, 4.8vw, 72px);
}
.psec--cover .cover-frame {
  margin-top: 40px;
  width: min(80vw, 1100px);
  aspect-ratio: 16/9;
  position: relative;
}
.cover-frame .ph {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.08), transparent 60%),
    repeating-linear-gradient(135deg, #1c1c1c 0 8px, #131313 8px 16px);
  filter: grayscale(0.6);
}

/* === Background text === */
.psec--text { padding: 100px 80px; }
.psec--text .psec__body {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  max-width: 1200px;
}
.psec--text .meta-col {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  line-height: 2;
}
.psec--text .meta-col .lab { color: var(--accent); display: block; margin-bottom: 4px; }
.psec--text .meta-col .item { margin-bottom: 18px; }
.psec--text .text-col p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 22px;
}
.psec--text .text-col p:first-child::first-letter {
  font-family: var(--font-serif);
  font-size: 64px;
  float: left;
  line-height: 0.9;
  margin: 6px 12px 0 0;
  color: var(--accent);
}

/* === Hero image === */
.psec--hero { padding: 0; }
.psec--hero .hero-img {
  flex: 1;
  margin: 60px 80px 60px;
  position: relative;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(230,57,70,0.05), transparent 60%),
    repeating-linear-gradient(45deg, #1a1a1a 0 8px, #0e0e0e 8px 16px);
  border: 1px solid var(--border);
}
.psec--hero .psec__head { padding: 60px 80px 0; margin-bottom: 0; }

/* === No-header variant: any psec can be headless (only image / only text) === */
.psec--noheader .psec__head { display: none; }
.psec--noheader.psec--hero .hero-img { margin: 80px; }
.psec--noheader.psec--cover { padding: 80px; }
.psec--noheader.psec--slider { padding-top: 80px; }
.psec--noheader.psec--specs { padding-top: 80px; }

/* ========== FULL (沉浸式详情) — 70vw 居中 + 统一画布 ========== */
.project.p-full {
  padding: 0;                    /* 大图顶部贴 topbar，topbar 半透明罩 */
  width: 70vw;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--project-bg, #ec7e3b);  /* 整个详情页统一画布色（默认橙） */
}
.project.p-full .toc { display: none !important; }
.project.p-full .project__head { display: none; }
.project.p-full .project__sections { margin-left: 0; }
.project.p-full .psec__head { display: none; }
.project.p-full .psec__lead { display: none; }
.project.p-full .spec-title { display: none; }
.project.p-full .spec-cap { display: none; }
.project.p-full .multitall__col::before { display: none; }
.project.p-full .psec--text { display: none; }

/* 可选的小标题 + 文案（页面上方，靠近图，居左）— psec 加 .has-head 启用 */
.project.p-full .psec.has-head .psec__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 0 0 6px;             /* 紧贴图片，不留大空 */
  margin: 0;
  text-align: left;
}
.project.p-full .psec.has-head .psec__head .psec__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(0, 0, 0, 0.45);
  flex: 0 0 auto;
}
.project.p-full .psec.has-head .psec__head .psec__title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.88);
  letter-spacing: 0;
  line-height: 1.3;
  margin: 0;
}
.project.p-full .psec.has-head .psec__lead {
  display: block;
  padding: 0;
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.55);
  max-width: 60ch;
  text-align: left;
}

/* 统一：每页 100vh、无分隔线、透明（让 main 画布色透出） */
.project.p-full .psec {
  height: 100vh;
  min-height: 100vh;
  border: none !important;
  background: transparent;       /* 透明 → main 的画布色统一透出 */
  padding: 0;                    /* 默认无 padding，每种模块自己控制 */
}
.project.p-full .site-foot {
  background: transparent;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* === 大图模块（cover / hero-image）：占满整页，覆盖底色，四边无留白 === */
.project.p-full .psec--cover,
.project.p-full .psec--hero {
  padding: 0;
}
.project.p-full .psec--cover .cover-frame,
.project.p-full .psec--hero .hero-img {
  width: 100%;
  height: 100%;
  margin: 0;
  aspect-ratio: auto;
  flex: 1;
}
.project.p-full .psec--cover .cover-frame .ph {
  width: 100%;
  height: 100%;
}
/* 大图角落十字标记隐藏（避免画框感） */
.project.p-full .psec--cover .cover-frame > span,
.project.p-full .psec--hero .hero-img > span {
  display: none;
}

/* === 小图模块（slider / specs / multitall）：四周留白 40px，顶部多 60px 让出 topbar === */
.project.p-full .psec--slider,
.project.p-full .psec--specs,
.project.p-full .psec--multitall {
  padding: 100px 40px 40px 40px;  /* 上 100 (含 topbar 60) / 下 40 / 左右 40 */
  display: flex;
  flex-direction: column;
}
.project.p-full .psec--slider .slider-shell {
  flex: 1;                     /* 撑满剩余空间，去掉上下大块空白 */
  padding: 0;                  /* 父级已处理边距 */
  gap: 16px;
  align-items: stretch;
}
.project.p-full .psec--specs .specs-grid {
  flex: 1;
  gap: 16px;
}
.project.p-full .psec--multitall .multitall {
  flex: 1;
  padding: 0;
  height: auto;
  gap: 16px;
}

/* slider 内容居中（少图时不再贴左偏右；多图时正常滚动） */
.project.p-full .slider-shell {
  justify-content: center;
}
.project.p-full .slider-shell::before,
.project.p-full .slider-shell::after {
  content: '';
  flex: 0 0 0;
  margin: auto;
}

/* slide-item 高度撑满 shell，宽度按 layout 比例 */
.project.p-full .slide-item {
  height: 100%;
  width: auto;
  flex: 0 0 auto;
}
.project.p-full .slide-item.size-1x1 { aspect-ratio: 1 / 1; }
.project.p-full .slide-item.size-2x1 { aspect-ratio: 1 / 2; }   /* 2 行 1 列 → 高>宽 */
.project.p-full .slide-item.size-3x1 { aspect-ratio: 1 / 3; }
.project.p-full .slide-item.size-1x2 { aspect-ratio: 2 / 1; }   /* 1 行 2 列 → 宽>高 */
.project.p-full .slide-item.size-2x2 { aspect-ratio: 1 / 1; }

/* N×N 卡内子格 gap 8px，无内 padding（让图贴边对齐） */
.project.p-full .slide-item.size-2x1,
.project.p-full .slide-item.size-3x1,
.project.p-full .slide-item.size-1x2,
.project.p-full .slide-item.size-2x2 {
  gap: 8px;
  padding: 0;
}

/* spec-card 撑满高度，内部 canvas flex 1 占满 */
.project.p-full .spec-card {
  display: flex;
  flex-direction: column;
}
.project.p-full .spec-card .spec-canvas {
  flex: 1;
  height: auto;
}

/* === 全部图 / 卡片去除边框 === */
.project.p-full .slide-item,
.project.p-full .spec-card,
.project.p-full .multitall__col,
.project.p-full .cover-frame,
.project.p-full .psec--hero .hero-img,
.project.p-full .ph,
.project.p-full .spec-canvas {
  border: none !important;
  outline: none;
}
/* 卡片本身不再涂深色面板 — 让 .ph 占满 */
.project.p-full .slide-item,
.project.p-full .spec-card {
  background: transparent;
  padding: 0;
}
.project.p-full .slide-item__cap { display: none; }

/* 真实图片保持原有比例：放到最大、居中、不变形（卡片内多余区域为底色） */
.project.p-full .ph,
.project.p-full .spec-canvas,
.project.p-full .cover-frame .ph,
.project.p-full .psec--hero .hero-img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
}

/* multitall 自动滚动（每列不同节奏，类似老虎机） */
.project.p-full .multitall__col {
  overflow: hidden;       /* 取消用户滚动，改自动 */
}
.project.p-full .multitall__strip {
  height: 200%;           /* 内容 = 容器 2 倍，translateY -50% 无缝循环 */
  animation: stripAuto var(--strip-dur, 32s) linear infinite;
}
.project.p-full .multitall__col:nth-child(1) .multitall__strip { --strip-dur: 28s; animation-delay: 0s; }
.project.p-full .multitall__col:nth-child(2) .multitall__strip { --strip-dur: 38s; animation-delay: -7s; }
.project.p-full .multitall__col:nth-child(3) .multitall__strip { --strip-dur: 32s; animation-delay: -3s; }
.project.p-full .multitall__col:nth-child(4) .multitall__strip { --strip-dur: 44s; animation-delay: -12s; }
.project.p-full .multitall__col:nth-child(5) .multitall__strip { --strip-dur: 36s; animation-delay: -5s; }

@keyframes stripAuto {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

/* 顶部 fixed bar（详情模式） */
.p-full__topbar {
  position: fixed;
  top: 0; left: var(--rail-w); right: 0;
  height: 60px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 70;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
}
.p-full__topbar .left { display: flex; align-items: center; gap: 16px; }
.p-full__topbar .case { color: var(--accent); }
.p-full__topbar .title {
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0;
  color: var(--text);
}
.p-full__topbar .nav-mini {
  display: flex; gap: 14px;
  font-size: 10px;
  color: var(--text-dim);
}
.p-full__topbar .nav-mini .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--text-faint);
  transition: background .3s;
  cursor: pointer;
}
.p-full__topbar .nav-mini .dot.is-active { background: var(--accent); }
.p-full__topbar .close {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 8px 16px;
  letter-spacing: 0.22em;
  transition: all .25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.p-full__topbar .close:hover { background: var(--accent); color: #fff; }

/* 详情页底部翻页提示 */
.p-full__navbar {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}
.p-full__navbar button {
  width: 38px; height: 38px;
  border: 1px solid var(--border-strong);
  color: var(--text-dim);
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(6px);
  transition: all .25s;
}
.p-full__navbar button:hover { color: var(--accent); border-color: var(--accent); }

/* 模块右上角小编号（详情模式） */
.psec__corner-num {
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent);
  z-index: 5;
  opacity: 0;
  display: none;
}
.project.p-full .psec__corner-num { display: block; opacity: 0.6; }
.project.p-full .psec:hover .psec__corner-num { opacity: 1; }

/* === Slider sections (IP / Posters / Other ref) === */
.psec--slider { padding: 80px 0; }
.psec--slider .psec__head { padding: 0 80px; }
.psec--slider .slider-shell {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 0 80px 20px;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
}
.psec--slider .slider-shell::-webkit-scrollbar { height: 4px; }
.psec--slider .slider-shell::-webkit-scrollbar-thumb { background: var(--accent); }
.slide-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  position: relative;
  background: #161616;
  border: 1px solid var(--border);
}
.slide-item .ph {
  background:
    repeating-linear-gradient(135deg, #1f1f1f 0 6px, #141414 6px 12px);
}
.slide-item__cap {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  padding: 10px 12px;
  border-top: 1px solid var(--border);
}
/* layouts: rows × cols within a single slide group */
.slide-item.size-1x1 { width: 60vh; height: 60vh; }
.slide-item.size-2x1 { width: 60vh; height: 60vh; display: grid; grid-template-rows: 1fr 1fr; gap: 4px; padding: 4px; }
.slide-item.size-3x1 { width: 60vh; height: 60vh; display: grid; grid-template-rows: 1fr 1fr 1fr; gap: 4px; padding: 4px; }
.slide-item.size-1x2 { width: 90vh; height: 60vh; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px; }
.slide-item.size-2x2 { width: 60vh; height: 60vh; display: grid; grid-template: 1fr 1fr / 1fr 1fr; gap: 4px; padding: 4px; }

/* === Design specs (multi-column poster style) === */
.psec--specs { padding: 80px; }
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.spec-card {
  background: var(--panel-solid);
  border: 1px solid var(--border);
  padding: 26px;
  position: relative;
}
.spec-card .spec-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 14px;
}
.spec-card .spec-canvas {
  height: 320px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.06), transparent 60%),
    repeating-linear-gradient(45deg, #181818 0 6px, #111 6px 12px);
}
.spec-card .spec-cap {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

/* === Multi-column tall vertical scroll === */
.psec--multitall { padding: 0; }
.psec--multitall .psec__head { padding: 60px 80px 30px; }
.multitall {
  flex: 1;
  display: flex;
  gap: 14px;
  padding: 0 80px 60px;
  height: calc(100vh - 200px);
  align-items: stretch;
}
.multitall__col {
  flex: 1;
  overflow-y: auto;
  background: #0e0e0e;
  border: 1px solid var(--border);
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-line) transparent;
}
.multitall__col::-webkit-scrollbar { width: 3px; }
.multitall__col::-webkit-scrollbar-thumb { background: var(--accent-line); }
.multitall__col::before {
  content: attr(data-col);
  position: sticky;
  display: block;
  top: 0;
  padding: 10px 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent);
  background: linear-gradient(180deg, #0e0e0e 70%, transparent);
  z-index: 2;
}
.multitall__strip {
  width: 100%;
  height: 240%;
  background:
    repeating-linear-gradient(0deg, #1a1a1a 0 18px, #131313 18px 36px),
    radial-gradient(ellipse at 50% 30%, rgba(230,57,70,0.1), transparent 50%);
  background-blend-mode: overlay;
  position: relative;
}
.multitall__strip::after {
  content: '';
  position: absolute; inset: 12px;
  border: 1px dashed rgba(255,255,255,0.06);
}

@media (max-width: 1100px) {
  .toc { display: none; }
  .project__sections { margin-left: 0; }
  .project__head { padding: 60px 30px 30px; }
  .project__back { left: 30px; top: 70px; }
  .psec { padding: 60px 30px; min-height: auto; }
  .psec--text .psec__body { grid-template-columns: 1fr; gap: 24px; }
  .psec--specs { padding: 60px 30px; }
  .specs-grid { grid-template-columns: 1fr; }
  .multitall { padding: 0 20px 40px; }
}

/* ============================================================ */
/* ===== 项目页 v2：动态模板渲染（简介 + 详情 通用 sections） ===== */
/* ============================================================ */

/* ---- 简介页：一栏垂直堆叠（无动效） ---- */
.p-intro__blocks-v2 {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 900px;
  margin: 50px 0;
}
.p-intro__blocks-v2 > .psec {
  margin: 0;
  padding: 0;
  min-height: 0;
  height: auto;
  background: transparent;
  border: none;
}
.p-intro__blocks-v2 .psec--single-img img,
.p-intro__blocks-v2 .psec--gallery img {
  width: 100%;
  height: auto;
  display: block;
}
.p-intro__blocks-v2 .psec--gallery {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.p-intro__blocks-v2 .psec--text-v2 h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin-bottom: 14px;
  color: var(--text);
  position: relative;
  padding-bottom: 12px;
}
.p-intro__blocks-v2 .psec--text-v2 h2::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 36px; height: 2px;
  background: var(--accent);
}
.p-intro__blocks-v2 .psec--text-v2 .text-body p {
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 16px;
  color: var(--text);
}

.p-intro__cta-wrap {
  margin: 40px 0 80px;
  text-align: center;
}

/* ---- 详情页 v2：4 种排版（70vw 橙画布连续） ---- */
.project.p-full > .project__sections {
  display: flex;
  flex-direction: column;
}

/* 1) 大图：无留白 */
.project.p-full .psec--single-img.is-full {
  padding: 0;
  margin: 0;
  height: auto;
  min-height: 0;
}
.project.p-full .psec--single-img.is-full img {
  display: block;
  width: 100%;
  height: auto;
}

/* 2) 多图横滑 strip — N×N 网格分页，多余横滑下一页 */
.project.p-full .psec--strip-v2 {
  padding: 100px 40px 40px;
  overflow: hidden;
  height: auto;
  min-height: 0;
}
.project.p-full .strip-pages {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  height: var(--page-h, 80vh);
  scrollbar-width: thin;
  scrollbar-color: var(--accent-line) transparent;
  padding-bottom: 6px;
}
.project.p-full .strip-pages::-webkit-scrollbar { height: 4px; }
.project.p-full .strip-pages::-webkit-scrollbar-thumb { background: var(--accent-line); }
.project.p-full .strip-page {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: repeat(var(--rows, 1), 1fr);
  grid-template-columns: repeat(var(--cols, 1), 1fr);
  gap: 16px;
  height: 100%;
  min-width: 100%;
}
.project.p-full .strip-cell {
  background: rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.project.p-full .strip-cell img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* 简介页 strip 也支持 N×N（不过简介页通常用 gallery，这里兜底） */
.p-intro__blocks-v2 .strip-pages {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.p-intro__blocks-v2 .strip-page {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: repeat(var(--rows, 1), 1fr);
  grid-template-columns: repeat(var(--cols, 1), 1fr);
  gap: 12px;
  aspect-ratio: 16/9;
}

/* 3) 多列竖滚（自动老虎机） */
.project.p-full .psec--multitall-v2 {
  padding: 100px 40px 40px;
  height: 100vh;
  overflow: hidden;
  min-height: 0;
}
.project.p-full .multitall-v2 {
  display: flex;
  gap: 16px;
  height: 100%;
  width: 100%;
}
.project.p-full .multitall-v2__col {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.project.p-full .multitall-v2__strip {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: multitallScrollV2 var(--strip-dur, 32s) linear infinite;
  will-change: transform;
}
.project.p-full .multitall-v2__strip img {
  display: block;
  width: 100%;
  height: auto;
}
@keyframes multitallScrollV2 {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

/* 4) 文字模块 */
.project.p-full .psec--text-v2 {
  padding: 100px 40px 40px;
  text-align: left;
  height: auto;
  min-height: 0;
}
.project.p-full .psec--text-v2 h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
  color: var(--text);
}
.project.p-full .psec--text-v2 .text-body p {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 65ch;
  color: var(--text);
}

/* 简介页 main padding（去掉原 grid layout 的 padding） */
.p-intro {
  padding: 60px 60px 100px;
}

/* 项目页：禁用全站 body 暗角 / 扫描线，让画布纯色 */
body[data-page="project-detail"]::before,
body[data-page="project-detail"]::after,
body[data-page="project-intro"]::before,
body[data-page="project-intro"]::after {
  display: none !important;
}
@media (max-width: 720px) {
  .p-intro { padding: 40px 18px 60px; }
  .project.p-full .psec--strip-v2,
  .project.p-full .psec--multitall-v2,
  .project.p-full .psec--text-v2 { padding: 80px 18px 30px; }
}
