
:root {
  --bg-main: #f5efe3;
  --bg-soft: #fbf7ef;
  --ink-900: #1f2730;
  --ink-700: #3b4551;
  --ink-500: #5d6876;
  --line: #d9c9ad;

  --accent-gold: #d39a46;
  --accent-red: #b54539;
  --accent-teal: #236975;
  --accent-clay: #8f5d46;

  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 14px;

  --shadow-soft: 0 14px 34px rgba(37, 45, 56, 0.14);
  --shadow-card: 0 20px 45px rgba(44, 53, 65, 0.16);

  --header-height: 82px;
  --container-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Serif SC", "Songti SC", "Source Han Serif SC", serif;
  color: var(--ink-900);
  background:
    linear-gradient(180deg, #f7f2e8 0%, #f5efe3 45%, #f3ebde 100%);
  line-height: 1.7;
  opacity: 0;
  transition: opacity 0.7s ease;
}

/* 页面加载后淡入 */
body.page-ready {
  opacity: 1;
}


body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 15%, rgba(218, 175, 111, 0.15), transparent 34%),
    radial-gradient(circle at 92% 22%, rgba(35, 101, 114, 0.12), transparent 30%),
    radial-gradient(circle at 28% 86%, rgba(174, 77, 60, 0.1), transparent 28%);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  display: block;
}

code {
  font-family: "Manrope", "SFMono-Regular", Consolas, monospace;
  font-size: 0.92em;
  background: rgba(34, 58, 74, 0.08);
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
}

/* =========================
   2) 通用布局组件
   ========================= */
.container {
  width: min(var(--container-width), calc(100% - 3rem));
  margin-inline: auto;
}

.page-main {
  padding-top: var(--header-height);
  min-height: calc(100vh - var(--header-height));
}

.section {
  padding: 5.2rem 0;
  position: relative;
}

/* 离屏内容延迟渲染，减少滚动时的主线程压力（支持浏览器自动生效） */
@supports (content-visibility: auto) {
  .section,
  .sub-hero,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 760px;
  }

  .entry-card,
  .workshop-card,
  .product-card,
  .doc-card {
    content-visibility: auto;
    contain-intrinsic-size: 1px 360px;
  }
}

.section-title {
  margin: 0 0 1rem;
  font-family: "ZCOOL XiaoWei", "Noto Serif SC", serif;
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.section-note {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.98rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  color: rgba(255, 241, 213, 0.9);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

/* =========================
   3) 顶部导航
   ========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  border-bottom: 1px solid transparent;
  background: rgba(245, 239, 227, 0.46);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

body.perf-full .site-header {
  backdrop-filter: blur(7px);
}

.site-header.is-scrolled {
  background: rgba(247, 242, 233, 0.93);
  border-color: rgba(130, 104, 77, 0.18);
  box-shadow: 0 10px 24px rgba(35, 44, 56, 0.12);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}

.brand-logo-img {
  width: clamp(168px, 16vw, 280px);
  max-height: calc(var(--header-height) - 20px);
  height: auto;
  display: block;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.08));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a {
  position: relative;
  font-size: 0.97rem;
  color: #314150;
  font-weight: 500;
  padding: 0.36rem 0.15rem;
  transition: color 0.28s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-gold), var(--accent-teal));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #192938;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

/* 移动端菜单按钮 */
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(60, 74, 91, 0.25);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.38);
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #304155;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   4) 按钮组件
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.78rem 1.45rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff6e7;
  background: linear-gradient(100deg, #a94638, #cb8f44 52%, #1f6471);
  box-shadow: 0 12px 28px rgba(55, 63, 78, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 16px 30px rgba(55, 63, 78, 0.34);
}

.btn-outline {
  border-color: rgba(255, 237, 199, 0.52);
  color: #fff0d2;
  background: rgba(255, 255, 255, 0.08);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* =========================
   5) 首页 Hero 轮播
   ========================= */
.hero-section {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
}

.hero-slider {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  contain: layout paint;
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(1.015);
  pointer-events: none;
  will-change: opacity, transform;
  backface-visibility: hidden;
  transition:
    opacity 0.5s ease,
    transform 0.56s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero-slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.hero-surface {
  position: absolute;
  inset: 0;
  background: var(--hero-bg);
  transform: translateZ(0);
  will-change: opacity;
  backface-visibility: hidden;
}

/* 遮罩用于提升文字可读性 */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(20, 24, 31, 0.75), rgba(20, 24, 31, 0.2) 58%, rgba(20, 24, 31, 0.62)),
    linear-gradient(180deg, rgba(18, 24, 31, 0.12), rgba(18, 24, 31, 0.56));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #f8ebd0;
  max-width: 740px;
  padding: 5rem 0 6.2rem;
}

.hero-kicker {
  margin: 0 0 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.83rem;
  color: rgba(255, 234, 193, 0.9);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.hero-title,
.hero-subtitle {
  margin: 0;
  font-family: "ZCOOL XiaoWei", "Noto Serif SC", serif;
  line-height: 1.2;
  letter-spacing: 0.03em;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.hero-title span {
  display: block;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(0.86rem, 1.2vw, 1.02rem);
  letter-spacing: 0.18em;
  margin-top: 0.35rem;
  text-transform: uppercase;
  color: rgba(255, 236, 194, 0.86);
}

.hero-subtitle {
  font-size: clamp(1.95rem, 4vw, 3.2rem);
}

.hero-slogan {
  margin: 1.1rem 0 1.7rem;
  max-width: 62ch;
  color: rgba(255, 238, 210, 0.9);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
}

.hero-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.65rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.7rem;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 231, 182, 0.55);
  border-radius: 999px;
  background: rgba(17, 24, 33, 0.3);
  color: #f8e4b5;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.26s ease, background 0.26s ease;
}

.hero-arrow:hover {
  transform: translateY(-2px);
  background: rgba(17, 24, 33, 0.52);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 232, 194, 0.42);
  cursor: pointer;
  padding: 0;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
  width: 26px;
  background: linear-gradient(90deg, #f3d193, #d19145);
}

/* =========================
   6) 首页下半部分
   ========================= */
.intro-panel {
  background: rgba(255, 250, 241, 0.74);
  border: 1px solid rgba(142, 111, 78, 0.18);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.intro-panel p {
  margin: 0;
  color: var(--ink-700);
}

.video-panel {
  --video-zoom: 1;
  --copy-scale: 1;
  --video-tilt-x: 0deg;
  --video-tilt-y: 0deg;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.7rem;
  align-items: stretch;
  perspective: 900px;
}

.video-copy {
  background: rgba(255, 248, 235, 0.8);
  border: 1px solid rgba(140, 111, 78, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-soft);
  transform-origin: center left;
  transform: scale(var(--copy-scale));
  will-change: transform, opacity;
  transition: transform 0.32s ease, box-shadow 0.32s ease, opacity 0.32s ease;
}

.video-copy p {
  margin: 0 0 1.25rem;
  color: var(--ink-700);
}

.video-frame-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(133, 107, 75, 0.26);
  background: #2b3745;
  transform-origin: center right;
  transform:
    rotateX(var(--video-tilt-x))
    rotateY(var(--video-tilt-y))
    scale(var(--video-zoom));
  transform-style: preserve-3d;
  backface-visibility: hidden;
  contain: paint;
  will-change: transform, box-shadow, border-color;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.video-frame-wrap::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 220, 161, 0.52), rgba(255, 220, 161, 0.08) 32%, transparent 58%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 1;
}

.video-frame-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 236, 205, 0.2), rgba(255, 236, 205, 0) 38%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 1;
}

.promo-video {
  width: 100%;
  min-height: 320px;
  background:
    linear-gradient(120deg, #283746, #6e4a41 45%, #c08b49);
}

/* 首页视频区 hover 联动：
   鼠标进入右侧视频时，右侧放大，左侧文案同步缩小。 */
@media (hover: hover) and (pointer: fine) {
  .page-home .video-panel.is-video-emphasis {
    --video-zoom: 1.08;
    --copy-scale: 0.9;
  }

  .page-home .video-panel.is-video-emphasis .video-frame-wrap {
    border-color: rgba(242, 212, 163, 0.42);
    box-shadow: 0 28px 46px rgba(35, 44, 57, 0.34);
  }

  .page-home .video-panel.is-video-emphasis .video-copy {
    opacity: 0.9;
    box-shadow: 0 10px 24px rgba(44, 54, 66, 0.12);
  }

  .page-home .video-panel.is-video-emphasis .video-frame-wrap::before,
  .page-home .video-panel.is-video-emphasis .video-frame-wrap::after {
    opacity: 1;
  }
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  perspective: 1200px;
}

.entry-card {
  --entry-tilt-x: 0deg;
  --entry-tilt-y: 0deg;
  --entry-scale: 1;
  --entry-lift: 0px;
  --entry-glow-x: 50%;
  --entry-glow-y: 50%;
  position: relative;
  border: 1px solid rgba(130, 103, 70, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 249, 238, 0.78);
  padding: 1.3rem 1.2rem 1.25rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transform:
    translateY(var(--entry-lift))
    rotateX(var(--entry-tilt-x))
    rotateY(var(--entry-tilt-y))
    scale(var(--entry-scale));
  transform-style: preserve-3d;
  transform-origin: center;
  will-change: transform, box-shadow, border-color;
  transition:
    transform 0.22s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.entry-card::before {
  content: "";
  position: absolute;
  top: -38px;
  right: -28px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(180, 74, 57, 0.22), rgba(218, 162, 84, 0.2), rgba(34, 104, 117, 0.2));
  z-index: 0;
}

.entry-card::after {
  content: "";
  position: absolute;
  inset: -22%;
  border-radius: inherit;
  background:
    radial-gradient(
      circle at var(--entry-glow-x) var(--entry-glow-y),
      rgba(255, 236, 198, 0.54),
      rgba(255, 236, 198, 0.1) 30%,
      transparent 55%
    );
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.22s ease;
}

.entry-card h3,
.entry-card p,
.entry-card .entry-index {
  position: relative;
  z-index: 1;
  transform: translateZ(20px);
}

@media (hover: hover) and (pointer: fine) {
  .entry-card:hover,
  .entry-card.is-entry-emphasis {
    --entry-scale: 1.03;
    --entry-lift: -7px;
    border-color: rgba(102, 70, 43, 0.35);
    box-shadow: 0 20px 34px rgba(49, 58, 72, 0.2);
  }

  .entry-card:hover::after,
  .entry-card.is-entry-emphasis::after {
    opacity: 1;
  }
}

.entry-index {
  position: relative;
  z-index: 1;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: rgba(39, 61, 83, 0.75);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.entry-card h3 {
  margin: 0.6rem 0 0.45rem;
  font-size: 1.15rem;
  font-family: "ZCOOL XiaoWei", "Noto Serif SC", serif;
}

.entry-card p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.94rem;
}

/* =========================
   7) 子页面头图
   ========================= */
.sub-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sub-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--sub-bg);
  transform: scale(1.03);
}

.sub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(23, 28, 36, 0.76), rgba(23, 28, 36, 0.2) 55%, rgba(23, 28, 36, 0.62));
}

.sub-hero-content {
  position: relative;
  z-index: 1;
  color: #f6e8c9;
  max-width: 760px;
  padding: 3.8rem 0;
}

.sub-hero-content h1 {
  margin: 0;
  font-family: "ZCOOL XiaoWei", "Noto Serif SC", serif;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.18;
}

.sub-hero-content p {
  margin: 0.95rem 0 0;
  color: rgba(251, 236, 201, 0.9);
}

/* =========================
   8) 工坊页面
   ========================= */
.section-header {
  margin-bottom: 1.25rem;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.workshop-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(123, 98, 68, 0.2);
  background: rgba(255, 250, 241, 0.82);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.workshop-card:hover {
  border-color: rgba(93, 73, 51, 0.35);
  box-shadow: 0 18px 30px rgba(43, 54, 68, 0.17);
}

.workshop-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: 56px 38px 1fr 24px;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1rem 0.95rem;
  text-align: left;
  cursor: pointer;
}

.workshop-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(66, 49, 34, 0.28);
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: #fff6e4;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* 辅助图形：通过两个斜条表达“海报辅助图形”概念 */
.workshop-aux {
  position: relative;
  width: 30px;
  height: 30px;
}

.workshop-aux::before,
.workshop-aux::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--secondary));
}

.workshop-aux::before {
  width: 30px;
  height: 8px;
  top: 4px;
  left: 0;
  transform: rotate(38deg);
}

.workshop-aux::after {
  width: 24px;
  height: 8px;
  bottom: 4px;
  right: 0;
  transform: rotate(-38deg);
}

.workshop-text strong {
  display: block;
  font-size: 1.04rem;
  font-family: "ZCOOL XiaoWei", "Noto Serif SC", serif;
  color: #232f3b;
}

.workshop-text small {
  display: block;
  color: var(--ink-500);
  font-size: 0.86rem;
  margin-top: 0.15rem;
}

.workshop-action {
  color: #314254;
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.workshop-card.is-open .workshop-action {
  transform: rotate(45deg);
}

.workshop-panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.5s ease, opacity 0.4s ease, padding 0.4s ease;
  border-top: 1px solid transparent;
}

.workshop-card.is-open .workshop-panel {
  max-height: 520px;
  opacity: 1;
  padding: 0.95rem 1rem 1rem;
  border-top-color: rgba(124, 98, 68, 0.18);
}

.workshop-intro {
  margin: 0;
  font-size: 0.93rem;
  color: var(--ink-700);
}

.workshop-inheritor {
  margin: 0.7rem 0 0;
  font-size: 0.92rem;
  color: #2a3f55;
}

.work-gallery {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.work-item {
  margin: 0;
}

.work-thumb {
  height: 86px;
  border-radius: 12px;
  border: 1px solid rgba(255, 251, 244, 0.35);
  box-shadow: inset 0 0 0 1px rgba(44, 50, 61, 0.08);
}

.work-item figcaption {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--ink-500);
  line-height: 1.35;
}

.empty-tip {
  margin: 0;
  background: rgba(255, 248, 234, 0.84);
  border: 1px dashed rgba(117, 93, 66, 0.38);
  border-radius: var(--radius-md);
  padding: 1rem;
  color: var(--ink-700);
}

/* =========================
   9) 产品页面
   ========================= */
.product-card {
  border: 1px solid rgba(130, 103, 73, 0.19);
  background: rgba(255, 249, 238, 0.82);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.45rem;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 1.4rem;
}

.product-info p {
  margin: 0;
  color: var(--ink-700);
}

.product-meta {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.product-meta li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.92rem;
  color: #34475c;
}

.product-meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--accent-red), var(--accent-gold));
}

.product-gallery {
  border: 1px solid rgba(124, 98, 68, 0.24);
  border-radius: 16px;
  padding: 0.85rem;
  background: rgba(255, 252, 246, 0.85);
}

.product-main {
  height: 300px;
  border-radius: 13px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(245, 241, 232, 0.2);
}

.product-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(22, 29, 38, 0.16), rgba(22, 29, 38, 0.03));
}

.main-label {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  z-index: 1;
  font-size: 0.8rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  letter-spacing: 0.03em;
  color: #f9eed9;
  background: rgba(20, 28, 38, 0.42);
  border: 1px solid rgba(250, 233, 195, 0.26);
  border-radius: 999px;
  padding: 0.25rem 0.58rem;
}

.product-thumbs {
  margin-top: 0.68rem;
  display: flex;
  gap: 0.55rem;
}

.thumb {
  flex: 1;
  height: 64px;
  border: 1px solid rgba(78, 61, 44, 0.2);
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.23s ease, box-shadow 0.23s ease, border-color 0.23s ease;
}

.thumb:hover {
  transform: translateY(-2px);
}

.thumb.is-active {
  border-color: rgba(63, 46, 31, 0.56);
  box-shadow: 0 8px 16px rgba(43, 51, 65, 0.2);
}

/* 产品色板：主图与缩略图共用这些类 */
.tone-cup-1 {
  background: linear-gradient(135deg, #5d3f34, #ab6a47 54%, #dcb683);
}

.tone-cup-2 {
  background: linear-gradient(145deg, #6c5248, #9f6f53 52%, #d6a86f);
}

.tone-cup-3 {
  background: linear-gradient(140deg, #403239, #7e5a57 50%, #cd9350);
}

.tone-calendar-1 {
  background: linear-gradient(128deg, #25415a, #3d6f87 52%, #d4a265);
}

.tone-calendar-2 {
  background: linear-gradient(135deg, #1f5866, #3f7f7b 52%, #e0bc8b);
}

.tone-calendar-3 {
  background: linear-gradient(140deg, #354b6a, #5f738d 48%, #c99a5f);
}

.tone-diy-1 {
  background: linear-gradient(132deg, #68443f, #a25646 45%, #dcac67);
}

.tone-diy-2 {
  background: linear-gradient(138deg, #6a3f4f, #9e5060 52%, #d8b17d);
}

.tone-diy-3 {
  background: linear-gradient(136deg, #2c5967, #3c7d8a 52%, #cf9c55);
}

.product-card-calendar {
  grid-template-columns: 0.88fr 1.12fr;
  align-items: stretch;
}

.product-card-cup {
  grid-template-columns: 1.12fr 0.88fr;
  align-items: stretch;
}

.product-card-cup .product-info {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: stretch;
  gap: 0.95rem;
  min-height: 0;
}

.product-card-cup .section-title {
  margin-bottom: 0;
}

.product-card-calendar .product-info {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: stretch;
  gap: 0.95rem;
  min-height: 0;
}

.product-card-calendar .section-title {
  margin-bottom: 0;
}

.calendar-side-stack {
  display: grid;
  gap: 0.78rem;
}

.calendar-showcase {
  border: 1px solid rgba(124, 98, 68, 0.24);
  border-radius: 16px;
  padding: 0.72rem;
  background: rgba(255, 252, 246, 0.88);
}

.calendar-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: start;
}

.calendar-shot {
  margin: 0;
  position: relative;
  border-radius: 13px;
  border: 1px solid rgba(120, 95, 66, 0.16);
  background: rgba(255, 255, 255, 0.86);
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(43, 52, 64, 0.08);
}

.calendar-shot-media {
  width: 100%;
  background:
    linear-gradient(180deg, rgba(248, 245, 236, 0.92), rgba(242, 238, 227, 0.92));
  line-height: 0;
}

.ratio-wide {
  aspect-ratio: 16 / 9;
}

.ratio-landscape {
  aspect-ratio: 4 / 3;
}

.ratio-portrait {
  aspect-ratio: 3 / 4;
}

.ratio-square {
  aspect-ratio: 1 / 1;
}

.ratio-tall {
  aspect-ratio: 3 / 4;
}

.calendar-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  background: #f1eee6;
  color: transparent;
  font-size: 0;
}

.calendar-shot figcaption {
  margin: 0;
  position: absolute;
  left: 0.55rem;
  bottom: 0.55rem;
  z-index: 1;
  padding: 0.22rem 0.48rem;
  border-radius: 999px;
  font-size: 0.78rem;
  line-height: 1.2;
  color: #f9f2e6;
  font-family: "Manrope", "Segoe UI", sans-serif;
  letter-spacing: 0.02em;
  background: rgba(26, 34, 45, 0.56);
  border: 1px solid rgba(255, 240, 213, 0.24);
}

.calendar-shot--hero,
.calendar-shot--wide {
  grid-column: 1 / -1;
}

.product-card-calendar--poster .product-info {
  grid-template-rows: auto auto;
  align-content: start;
}

.calendar-side-stack--calendar-poster {
  grid-template-columns: 1fr;
  gap: 0.62rem;
  align-content: start;
}

.calendar-side-stack--calendar-poster .calendar-shot,
.calendar-side-stack--calendar-poster .calendar-shot .calendar-shot-media {
  height: auto;
}

.calendar-side-stack--calendar-poster .calendar-shot:first-child {
  box-shadow: 0 14px 30px rgba(43, 52, 64, 0.12);
}

.calendar-showcase--calendar-poster {
  padding: 0.62rem;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(248, 243, 232, 0.9));
}

.calendar-gallery-grid--calendar-poster {
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  grid-auto-flow: dense;
  gap: 0.62rem;
  align-items: start;
}

.calendar-gallery-grid--calendar-poster .calendar-shot,
.calendar-gallery-grid--calendar-poster .calendar-shot .calendar-shot-media {
  height: auto;
}

.calendar-shot--poster-hero {
  grid-column: 1 / -1;
  grid-row: 1;
  box-shadow: 0 16px 34px rgba(40, 48, 60, 0.14);
}

.calendar-shot--poster-hero figcaption {
  font-size: 0.84rem;
  padding: 0.28rem 0.56rem;
  background: rgba(24, 33, 43, 0.66);
}

.calendar-shot--poster-tall {
  grid-column: 1;
  grid-row: 2 / 4;
  align-self: start;
}

.calendar-shot--poster-scene {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
}

.calendar-shot--poster-collage {
  grid-column: 2;
  grid-row: 3;
  align-self: start;
}

.cup-side-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 0.72rem;
  height: 100%;
  min-height: 0;
}

.cup-side-stack .calendar-shot:first-child {
  grid-column: 1 / -1;
  grid-row: 1;
}

.cup-side-stack .calendar-shot:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
}

.cup-side-stack .calendar-shot:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.cup-side-stack .calendar-shot:nth-child(4) {
  grid-column: 1 / -1;
  grid-row: 3;
}

.cup-side-stack .calendar-shot {
  height: 100%;
  min-height: 0;
}

.cup-side-stack .calendar-shot .calendar-shot-media {
  height: 100%;
  aspect-ratio: auto;
}

.consult-panel {
  border: 1px solid rgba(123, 96, 66, 0.22);
  background: rgba(255, 251, 242, 0.85);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.7rem;
}

.consult-panel p {
  margin: 0;
  color: var(--ink-700);
}

.consult-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}


.page-products .btn-outline {
  color: #2f455f;
  border-color: rgba(53, 78, 96, 0.32);
  background: rgba(255, 255, 255, 0.66);
}

.page-products .btn-outline:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* =========================
   10) 关于页面
   ========================= */
.story-wrap {
  border: 1px solid rgba(124, 97, 67, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 249, 239, 0.83);
  box-shadow: var(--shadow-soft);
  padding: 1.7rem;
}

.story-timeline {
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: grid;
  gap: 0.95rem;
}

.story-timeline::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-red), var(--accent-gold), var(--accent-teal));
}

.story-timeline li {
  position: relative;
  margin-left: 1.75rem;
  border: 1px solid rgba(124, 97, 67, 0.2);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  background: rgba(255, 253, 248, 0.82);
}

.story-timeline li::before {
  content: "";
  position: absolute;
  left: -1.6rem;
  top: 0.95rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(130deg, var(--accent-red), var(--accent-gold));
  box-shadow: 0 0 0 4px rgba(241, 226, 196, 0.95);
}

.story-year {
  display: inline-block;
  font-size: 0.8rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  letter-spacing: 0.07em;
  color: #5d6f86;
  text-transform: uppercase;
}

.story-timeline h3 {
  margin: 0.3rem 0 0.35rem;
  font-size: 1.08rem;
  font-family: "ZCOOL XiaoWei", "Noto Serif SC", serif;
  color: #283546;
}

.story-timeline p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.92rem;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.vision-card {
  border: 1px solid rgba(124, 97, 67, 0.2);
  background: rgba(255, 250, 242, 0.82);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.5rem;
}

.vision-card p {
  margin: 0;
  color: var(--ink-700);
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.doc-card {
  position: relative;
  border: 1px solid rgba(124, 97, 67, 0.2);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 252, 246, 0.84);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.doc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 32px rgba(46, 54, 67, 0.22);
  border-color: rgba(94, 70, 45, 0.42);
}

.doc-card:focus-visible {
  outline: 2px solid rgba(27, 83, 105, 0.72);
  outline-offset: 2px;
}

.doc-poster {
  height: 190px;
  position: relative;
  overflow: hidden;
}

.doc-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.doc-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.doc-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 0.24s ease;
  z-index: 1;
}

.doc-card.is-preview-playing .doc-preview {
  opacity: 1;
}

body.modal-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 520;
  display: none;
}

.video-modal.is-open {
  display: block;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 26, 0.66);
}

body.perf-full .video-modal-backdrop {
  backdrop-filter: blur(3px);
}

.video-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 1.6rem));
  margin: 4.5rem auto 0;
  padding: 0.95rem 0.95rem 0.75rem;
  border: 1px solid rgba(188, 151, 102, 0.45);
  border-radius: 16px;
  background: rgba(22, 30, 40, 0.94);
  box-shadow: 0 28px 58px rgba(17, 23, 33, 0.56);
}

.video-modal-dialog h3 {
  margin: 0.2rem 0.2rem 0.65rem;
  color: #f9e4bf;
  font-family: "ZCOOL XiaoWei", "Noto Serif SC", serif;
  font-size: 1.25rem;
}

.video-modal-close {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(241, 218, 175, 0.36);
  border-radius: 999px;
  background: rgba(12, 18, 26, 0.5);
  color: #f4dfb8;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

#docModalPlayer {
  width: 100%;
  max-height: min(72vh, 620px);
  border-radius: 12px;
  background: #111924;
  border: 1px solid rgba(233, 209, 164, 0.2);
}

.video-modal-tip {
  margin: 0.62rem 0.2rem 0.2rem;
  color: rgba(239, 224, 194, 0.88);
  font-size: 0.88rem;
}

.video-modal-tip a {
  color: #f7cc7a;
  text-decoration: underline;
}

.doc-card h3 {
  margin: 0.65rem 0.75rem 0.2rem;
  font-size: 0.94rem;
  line-height: 1.45;
  min-height: 4.1em;
  font-family: "ZCOOL XiaoWei", "Noto Serif SC", serif;
  color: #2c3b4c;
}

.doc-card p {
  margin: 0 0.75rem 0.85rem;
  color: var(--ink-500);
  font-size: 0.84rem;
  line-height: 1.45;
}

.doc-tone-1 {
  background: linear-gradient(138deg, #583a32, #9f5d4a 50%, #e2b178);
}

.doc-tone-2 {
  background: linear-gradient(132deg, #8e4f4f, #c46d4f 50%, #e3bf86);
}

.doc-tone-3 {
  background: linear-gradient(130deg, #28495f, #3c7586 50%, #cf9a56);
}

.doc-tone-4 {
  background: linear-gradient(130deg, #3c5268, #647689 52%, #cda167);
}

.doc-tone-5 {
  background: linear-gradient(135deg, #6d493f, #a45f45 48%, #d19c52);
}

.doc-tone-6 {
  background: linear-gradient(130deg, #59484f, #8f5f6b 50%, #d4a46e);
}

.contact-panel {
  border: 1px solid rgba(124, 97, 67, 0.2);
  background: rgba(255, 251, 243, 0.84);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.2rem;
}

.contact-grid p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.95rem;
}

/* =========================
   11) 页脚
   ========================= */
.site-footer {
  margin-top: 1.6rem;
  background:
    linear-gradient(120deg, #232f39, #2a3842 54%, #3c4738);
  color: rgba(244, 233, 207, 0.92);
  border-top: 1px solid rgba(255, 219, 165, 0.2);
}

.footer-grid {
  padding: 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.site-footer h3 {
  margin: 0 0 0.4rem;
  font-family: "ZCOOL XiaoWei", "Noto Serif SC", serif;
  font-size: 1.15rem;
}

.site-footer p {
  margin: 0.2rem 0;
  color: rgba(246, 236, 211, 0.86);
  font-size: 0.9rem;
}

/* =========================
   12) 全站落叶特效
   ========================= */
.leaf-layer {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 120;
}

.leaf {
  position: absolute;
  top: -16vh;
  left: var(--start-x, 50vw);
  width: var(--leaf-size, 11px);
  height: calc(var(--leaf-size, 11px) * 0.72);
  border-radius: 78% 12% 78% 12%;
  opacity: var(--leaf-opacity, 0.55);
  transform: rotate(var(--leaf-rotate, 0deg));
  background: linear-gradient(130deg, rgba(255, 240, 209, 0.92), var(--leaf-color, #d39045) 45%, rgba(88, 54, 30, 0.92));
  will-change: transform, opacity;
  animation: leafFall var(--fall-duration, 26s) linear var(--fall-delay, 0s) infinite;
}

.leaf::after {
  content: "";
  position: absolute;
  width: 38%;
  height: 1px;
  left: 44%;
  top: 52%;
  background: rgba(67, 45, 28, 0.45);
  transform: rotate(-35deg);
  transform-origin: left center;
}

/* =========================
   13) 动画
   ========================= */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.986);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes heroDrift {
  from {
    filter: saturate(1) contrast(1);
  }
  to {
    filter: saturate(1.08) contrast(1.04);
  }
}

@keyframes leafFall {
  0% {
    transform: translate3d(0, -14vh, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: var(--leaf-opacity, 0.55);
  }
  25% {
    transform: translate3d(var(--drift-x, 24px), 24vh, 0) rotate(70deg);
  }
  50% {
    transform: translate3d(calc(var(--drift-x, 24px) * -0.65), 54vh, 0) rotate(180deg);
  }
  75% {
    transform: translate3d(calc(var(--drift-x, 24px) * 0.5), 82vh, 0) rotate(280deg);
  }
  100% {
    transform: translate3d(calc(var(--drift-x, 24px) * -0.2), 114vh, 0) rotate(360deg);
    opacity: 0;
  }
}

/* =========================
   14) 性能档位降级
   ========================= */
body.perf-lite .leaf-layer {
  display: none !important;
}

body.perf-lite .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

body.perf-lite .hero-slide,
body.perf-lite .hero-slide.is-active {
  transform: none;
  transition: opacity 0.24s linear;
}

body.perf-lite .video-panel {
  perspective: none;
}

body.perf-lite .video-frame-wrap,
body.perf-lite .entry-card {
  transform: none !important;
}

body.perf-lite .site-header {
  transition: background 0.2s linear, border-color 0.2s linear;
}

body.perf-balanced .leaf {
  opacity: calc(var(--leaf-opacity, 0.55) * 0.78);
}

body.is-scrolling .leaf {
  animation-play-state: paused;
}

/* =========================
   15) 响应式
   ========================= */
@media (min-width: 1240px) {
  .workshop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .doc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .brand-logo-img {
    width: clamp(150px, 38vw, 220px);
    max-height: calc(var(--header-height) - 22px);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(var(--header-height) - 8px);
    right: 1.1rem;
    width: min(76vw, 320px);
    padding: 0.75rem;
    border: 1px solid rgba(107, 84, 59, 0.22);
    border-radius: 14px;
    background: rgba(251, 246, 236, 0.97);
    box-shadow: 0 18px 28px rgba(36, 47, 61, 0.18);
    display: grid;
    gap: 0.15rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    display: block;
    padding: 0.55rem 0.4rem;
    border-radius: 8px;
  }

  .site-nav a:hover {
    background: rgba(213, 178, 116, 0.18);
  }

  .site-nav a::after {
    display: none;
  }

  .hero-controls {
    justify-content: flex-start;
  }

  .video-panel,
  .product-card,
  .vision-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .workshop-grid {
    grid-template-columns: 1fr;
  }

  .calendar-side-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card-cup {
    align-items: start;
  }

  .product-card-cup .product-info {
    order: -1;
    grid-template-rows: auto auto;
  }

  .product-card-calendar--poster .product-info {
    grid-template-rows: auto auto;
  }

  .calendar-side-stack--calendar-poster {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
  }

  .calendar-gallery-grid--calendar-poster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    height: auto;
  }

  .cup-side-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .cup-side-stack .calendar-shot:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .cup-side-stack .calendar-shot:nth-child(2),
  .cup-side-stack .calendar-shot:nth-child(3),
  .cup-side-stack .calendar-shot:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .calendar-side-stack--calendar-poster .calendar-shot,
  .calendar-side-stack--calendar-poster .calendar-shot .calendar-shot-media,
  .calendar-gallery-grid--calendar-poster .calendar-shot,
  .calendar-gallery-grid--calendar-poster .calendar-shot .calendar-shot-media,
  .cup-side-stack .calendar-shot,
  .cup-side-stack .calendar-shot .calendar-shot-media {
    height: auto;
  }

  .calendar-shot--poster-hero,
  .calendar-shot--poster-tall,
  .calendar-shot--poster-scene,
  .calendar-shot--poster-collage {
    grid-column: auto;
    grid-row: auto;
  }

  .calendar-shot--poster-hero {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(var(--container-width), calc(100% - 1.4rem));
  }

  .section {
    padding: 3.8rem 0;
  }

  .hero-slider {
    min-height: calc(88vh - var(--header-height));
  }

  .hero-content {
    padding: 4.2rem 0 5.8rem;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-subtitle {
    font-size: clamp(1.55rem, 7vw, 2.5rem);
  }

  .intro-panel,
  .video-copy,
  .product-card,
  .consult-panel,
  .story-wrap,
  .vision-card,
  .contact-panel {
    padding: 1.2rem;
  }

  .entry-grid,
  .doc-grid {
    grid-template-columns: 1fr;
  }

  .work-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-main {
    height: 240px;
  }

  .calendar-gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .calendar-side-stack {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .calendar-side-stack--calendar-poster,
  .calendar-gallery-grid--calendar-poster {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 0.72rem;
    height: auto;
  }

  .calendar-shot--hero,
  .calendar-shot--wide {
    grid-column: auto;
  }

  .calendar-shot--poster-tall,
  .calendar-shot--poster-scene,
  .calendar-shot--poster-collage {
    grid-column: auto;
    grid-row: auto;
  }

  .calendar-shot figcaption {
    font-size: 0.74rem;
    padding: 0.2rem 0.42rem;
    left: 0.48rem;
    bottom: 0.48rem;
  }

  .doc-poster {
    height: 180px;
  }

  .video-modal-dialog {
    margin-top: 3.6rem;
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .poster-lightbox-backdrop,
  .poster-workshop-chip-tooltip__inner {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@supports not (color: color-mix(in srgb, red, white)) {
  .poster-stage-cta {
    background:
      radial-gradient(circle at 18% 18%, rgba(207, 181, 150, 0.2) 0%, transparent 48%),
      radial-gradient(circle at 88% 76%, rgba(145, 173, 196, 0.16) 0%, transparent 44%),
      linear-gradient(145deg, rgba(255, 252, 245, 0.96), rgba(248, 242, 231, 0.92));
  }

  .poster-stage-cta::before {
    background: radial-gradient(circle, rgba(206, 176, 141, 0.34), transparent 70%);
  }

  .poster-stage-cta-progress {
    background:
      radial-gradient(circle at center, rgba(255, 252, 246, 0.95) 58%, transparent 59%),
      conic-gradient(var(--accent) var(--checkin-progress), rgba(104, 122, 139, 0.14) 0);
  }

  .poster-stage-detail-badge {
    background: linear-gradient(120deg, var(--accent), var(--secondary));
  }

  .poster-checkin-btn {
    background: linear-gradient(120deg, var(--accent), var(--secondary));
  }

  .poster-checkin-spark {
    background: linear-gradient(140deg, rgba(255, 248, 230, 0.95), var(--secondary));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transform: none;
    transition: opacity 0.25s linear;
  }

  .hero-slide.is-active {
    transform: none;
  }

  .leaf-layer {
    display: none;
  }

  .entry-card {
    transform: none !important;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .entry-card::after {
    display: none;
  }
}



/* =========================
   工坊页海报实验展墙（新版）
   ========================= */
.workshop-grid--poster {
  display: block;
}

.poster-showcase {
  position: relative;
  border: 1px solid rgba(118, 94, 66, 0.18);
  border-radius: calc(var(--radius-lg) + 6px);
  background:
    radial-gradient(circle at 12% 18%, rgba(214, 156, 84, 0.13), transparent 38%),
    radial-gradient(circle at 88% 14%, rgba(36, 110, 124, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 251, 243, 0.92), rgba(249, 243, 231, 0.9));
  box-shadow: 0 26px 56px rgba(39, 47, 59, 0.14);
  overflow: hidden;
  contain: layout paint;
}

.poster-showcase::before,
.poster-showcase::after {
  content: "";
  position: absolute;
  pointer-events: none;
  filter: blur(12px);
  opacity: 0.55;
}

.poster-showcase::before {
  width: 260px;
  height: 260px;
  top: -70px;
  left: -50px;
  background: radial-gradient(circle, rgba(213, 154, 77, 0.28), transparent 68%);
}

.poster-showcase::after {
  width: 320px;
  height: 320px;
  right: -80px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(35, 107, 121, 0.24), transparent 70%);
}

.poster-showcase-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  padding: 0.9rem;
  align-items: start;
  contain: layout paint;
}

.poster-stage {
  position: relative;
  top: auto;
  align-self: start;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-rows: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  --accent: #b45b42;
  --secondary: #d9b36f;
  contain: layout paint;
  perspective: 1200px;
}

.poster-stage-media {
  grid-column: 1;
  grid-row: 1 / 3;
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  border-radius: 20px;
  overflow: hidden;
  text-align: left;
  aspect-ratio: 3 / 4;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(247, 241, 230, 0.88));
  box-shadow:
    0 18px 36px rgba(40, 49, 62, 0.15),
    inset 0 0 0 1px rgba(255, 245, 221, 0.45);
  isolation: isolate;
  transform: translateZ(0);
  transform-origin: 56% 50%;
  transition: transform 0.42s cubic-bezier(0.22, 0.84, 0.3, 1), box-shadow 0.32s ease, border-color 0.24s ease;
  contain: layout paint;
}

.poster-stage-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 38%), rgba(255, 255, 255, 0.24), transparent 46%),
    linear-gradient(180deg, rgba(19, 25, 35, 0.08), rgba(19, 25, 35, 0.24));
  z-index: 2;
  pointer-events: none;
}

.poster-stage-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #ece7da;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.poster-stage-media:hover .poster-stage-image,
.poster-stage-media:focus-visible .poster-stage-image {
  transform: scale(1.024);
  filter: saturate(1.05) contrast(1.02);
}

.poster-stage-shine {
  position: absolute;
  inset: -20%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(108deg, transparent 32%, rgba(255, 255, 255, 0.18) 48%, transparent 62%);
  transform: translateX(-48%);
  animation: posterStageShine 5.8s ease-in-out infinite;
}

.poster-stage-scan {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 8px;
  mix-blend-mode: soft-light;
  opacity: 0.65;
}

.poster-stage-corner {
  position: absolute;
  z-index: 4;
  width: 20px;
  height: 20px;
  border-color: rgba(255, 246, 224, 0.82);
  border-style: solid;
  pointer-events: none;
  opacity: 0.85;
}

.poster-stage-corner--tl {
  top: 0.9rem;
  left: 0.9rem;
  border-width: 2px 0 0 2px;
}

.poster-stage-corner--br {
  right: 0.9rem;
  bottom: 0.9rem;
  border-width: 0 2px 2px 0;
}

.poster-stage-label {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #f9f1e2;
  padding: 0.3rem 0.62rem;
  border-radius: 999px;
  background: rgba(18, 24, 33, 0.56);
  border: 1px solid rgba(255, 241, 214, 0.22);
}

.poster-stage-empty {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 3.25rem;
  z-index: 5;
  margin: 0;
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #243545;
  background: rgba(255, 252, 244, 0.9);
  border: 1px solid rgba(123, 98, 68, 0.18);
  box-shadow: 0 8px 18px rgba(40, 48, 61, 0.08);
}

.poster-stage-media.is-missing .poster-stage-image,
.poster-lightbox-media.is-missing .poster-lightbox-image {
  opacity: 0;
}

.poster-stage-panel {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  border-radius: 18px;
  border: 1px solid rgba(117, 93, 66, 0.16);
  background: rgba(255, 251, 244, 0.84);
  box-shadow: 0 14px 28px rgba(38, 47, 59, 0.08);
  padding: 0.95rem;
  display: grid;
  align-content: start;
  contain: layout paint;
}

.poster-stage-cta {
  --checkin-progress: 0%;
  grid-column: 2;
  grid-row: 2;
  align-self: stretch;
  position: relative;
  min-height: 0;
  border-radius: 18px;
  border: 1px solid rgba(118, 94, 66, 0.16);
  background:
    radial-gradient(circle at 18% 18%, color-mix(in srgb, var(--secondary) 30%, white) 0%, transparent 48%),
    radial-gradient(circle at 88% 76%, color-mix(in srgb, var(--accent) 22%, white) 0%, transparent 44%),
    linear-gradient(145deg, rgba(255, 252, 245, 0.96), rgba(248, 242, 231, 0.92));
  box-shadow:
    0 16px 30px rgba(39, 48, 60, 0.08),
    inset 0 0 0 1px rgba(255, 251, 241, 0.28);
  padding: 0.9rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  isolation: isolate;
  contain: layout paint;
}

.poster-stage-cta::before,
.poster-stage-cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.poster-stage-cta::before {
  inset: auto auto -18px -18px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background:
    radial-gradient(circle, color-mix(in srgb, var(--secondary) 42%, white), transparent 70%);
  opacity: 0.28;
  filter: blur(5px);
}

.poster-stage-cta::after {
  inset: 12px 12px auto auto;
  width: 92px;
  height: 92px;
  border-radius: 18px;
  border: 1px dashed rgba(103, 84, 61, 0.12);
  transform: rotate(12deg);
  opacity: 0.65;
}

.poster-stage-cta > * {
  position: relative;
  z-index: 1;
}

.poster-stage-cta-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.poster-stage-cta-orbit span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  opacity: 0.55;
  filter: blur(0.2px);
  animation: posterCheckinOrbit 7.4s linear infinite;
}

.poster-stage-cta-orbit span:nth-child(1) {
  top: 26%;
  left: 8%;
  animation-duration: 7.4s;
}

.poster-stage-cta-orbit span:nth-child(2) {
  top: 62%;
  right: 14%;
  width: 8px;
  height: 8px;
  animation-duration: 9.2s;
  animation-direction: reverse;
}

.poster-stage-cta-orbit span:nth-child(3) {
  top: 16%;
  right: 28%;
  width: 6px;
  height: 6px;
  animation-duration: 6.1s;
}

.poster-stage-cta-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  align-items: start;
}

.poster-stage-cta-head-copy {
  min-width: 0;
}

.poster-stage-cta-kicker {
  margin: 0;
  color: #607286;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.poster-stage-cta-title {
  margin: 0.25rem 0 0;
  color: #1d2d3a;
  font-family: "ZCOOL XiaoWei", "Noto Serif SC", serif;
  font-size: 1.02rem;
  line-height: 1.2;
}

.poster-stage-cta-progress {
  --ring-size: 62px;
  width: var(--ring-size);
  height: var(--ring-size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #263747;
  background:
    radial-gradient(circle at center, rgba(255, 252, 246, 0.95) 58%, transparent 59%),
    conic-gradient(color-mix(in srgb, var(--accent) 50%, var(--secondary)) var(--checkin-progress), rgba(104, 122, 139, 0.14) 0);
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 231, 0.42),
    0 10px 18px rgba(40, 49, 61, 0.08);
  border: 1px solid rgba(119, 95, 67, 0.1);
  text-align: center;
}

.poster-stage-cta-progress-value {
  display: block;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1;
  font-size: 1rem;
}

.poster-stage-cta-progress-total {
  display: block;
  margin-top: 0.08rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.62rem;
  color: #65788c;
  line-height: 1;
}

.poster-stage-cta-copy {
  margin: 0;
  color: #475b70;
  font-size: 0.87rem;
  line-height: 1.45;
}

.poster-stage-cta-now {
  display: grid;
  gap: 0.12rem;
  padding: 0.45rem 0.55rem;
  border-radius: 12px;
  border: 1px solid rgba(118, 94, 66, 0.12);
  background: rgba(255, 255, 255, 0.54);
}

.poster-stage-cta-now-label {
  color: #6a7d90;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.poster-stage-cta-now strong {
  color: #1f3041;
  font-size: 0.92rem;
  line-height: 1.25;
  font-family: "ZCOOL XiaoWei", "Noto Serif SC", serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.poster-stage.is-detail-open .poster-stage-media {
  transform: translate3d(0, 0, 0) scale(0.945) rotateY(-8deg) rotateZ(-0.55deg);
  box-shadow:
    0 14px 28px rgba(40, 49, 62, 0.14),
    0 0 0 1px rgba(255, 247, 228, 0.18) inset;
}

.poster-stage.is-detail-opening .poster-stage-media {
  animation: posterStageCardFlip 520ms cubic-bezier(0.2, 0.9, 0.25, 1) both;
}

.poster-stage-detail[hidden] {
  display: none !important;
}

.poster-stage-detail {
  position: relative;
  display: grid;
  gap: 0.55rem;
  margin-top: 0.08rem;
  border-radius: 14px;
  border: 1px solid rgba(117, 93, 66, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 249, 238, 0.92));
  box-shadow: 0 10px 20px rgba(38, 47, 59, 0.08);
  padding: 0.68rem;
  opacity: 0;
  transform: translateY(10px) scale(0.985) rotateX(-6deg);
  transform-origin: top center;
  contain: layout paint;
}

.poster-stage-detail::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(91, 109, 129, 0.05) 0 1px, transparent 1px 100%);
  background-size: 100% 1.65rem;
  opacity: 0.24;
}

.poster-stage-detail > * {
  position: relative;
  z-index: 1;
}

.poster-stage-detail.is-entering {
  animation: posterStageDetailReveal 520ms cubic-bezier(0.22, 0.84, 0.3, 1) both;
}

.poster-stage-detail.is-visible {
  opacity: 1;
  transform: none;
}

.poster-stage-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.poster-stage-detail-badge {
  display: inline-flex;
  align-items: center;
  height: 1.55rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #f7f0de;
  background: linear-gradient(120deg, color-mix(in srgb, var(--accent) 84%, #2e2530), color-mix(in srgb, var(--secondary) 78%, #2a5260));
  box-shadow: 0 8px 14px rgba(42, 50, 62, 0.14);
}

.poster-stage-detail-meta {
  color: #607286;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.72rem;
  white-space: nowrap;
}

.poster-stage-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.42rem;
}

.poster-stage-detail-item {
  display: grid;
  gap: 0.22rem;
  padding: 0.38rem 0.45rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(118, 94, 66, 0.1);
}

.poster-stage-detail-item[hidden] {
  display: none;
}

.poster-stage-detail-key {
  color: #6b7d90;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

.poster-stage-detail-value {
  color: #243646;
  font-size: 0.84rem;
  line-height: 1.45;
  word-break: break-word;
}

.poster-stage-detail-value--tokens {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
}

.poster-stage-detail-token {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 0.18rem 0.42rem;
  border-radius: 999px;
  border: 1px solid rgba(114, 91, 64, 0.14);
  background: rgba(255, 255, 255, 0.78);
  color: #31465b;
  font-size: 0.74rem;
  line-height: 1.25;
  font-family: inherit;
  cursor: help;
  white-space: nowrap;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

button.poster-stage-detail-token {
  appearance: none;
  -webkit-appearance: none;
}

.poster-stage-detail-token:hover,
.poster-stage-detail-token:focus-visible {
  border-color: rgba(148, 105, 60, 0.32);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 14px rgba(39, 48, 60, 0.08);
  transform: translateY(-1px);
}

.poster-stage-detail-token:focus-visible {
  outline: 2px solid rgba(191, 151, 95, 0.32);
  outline-offset: 2px;
}

.poster-workshop-chip-tooltip {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 880;
  width: min(360px, calc(100vw - 20px));
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 6px, 0) scale(0.985);
  transition: opacity 0.18s ease, transform 0.2s ease;
}

.poster-workshop-chip-tooltip.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.poster-workshop-chip-tooltip__inner {
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(117, 93, 66, 0.14);
  background:
    radial-gradient(circle at 15% 12%, rgba(231, 205, 153, 0.15), transparent 42%),
    radial-gradient(circle at 88% 86%, rgba(115, 143, 169, 0.14), transparent 44%),
    rgba(255, 252, 246, 0.97);
  box-shadow:
    0 18px 34px rgba(35, 45, 58, 0.18),
    0 0 0 1px rgba(255, 247, 232, 0.36) inset;
  padding: 0.72rem 0.78rem;
  backdrop-filter: blur(8px);
}

.poster-workshop-chip-tooltip__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 28%);
}

.poster-workshop-chip-tooltip__title {
  margin: 0 0 0.5rem;
  color: #213243;
  font-family: "ZCOOL XiaoWei", "Noto Serif SC", serif;
  font-size: 0.95rem;
  line-height: 1.25;
}

.poster-workshop-chip-tooltip__list {
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.poster-workshop-chip-tooltip__row {
  display: grid;
  gap: 0.14rem;
  padding: 0.34rem 0.42rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(118, 94, 66, 0.08);
}

.poster-workshop-chip-tooltip__row dt {
  margin: 0;
  color: #64778b;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.05em;
}

.poster-workshop-chip-tooltip__row dd {
  margin: 0;
  color: #243646;
  font-size: 0.8rem;
  line-height: 1.35;
  word-break: break-word;
}

.poster-stage-cta.is-detail-open {
  align-self: start;
}

.poster-stage-cta:not(.is-detail-open) .poster-checkin-btn {
  margin-top: auto;
}

.poster-stage-cta.is-detail-open .poster-checkin-btn {
  margin-top: 0.05rem;
}

.poster-checkin-btn {
  position: relative;
  border: 0;
  width: 100%;
  margin-top: 0.2rem;
  border-radius: 14px;
  padding: 0.65rem 0.75rem;
  text-align: left;
  cursor: pointer;
  color: #fff8ec;
  background:
    linear-gradient(120deg, color-mix(in srgb, var(--accent) 82%, #3f2b24), color-mix(in srgb, var(--secondary) 72%, #205364));
  box-shadow:
    0 14px 24px rgba(35, 45, 58, 0.18),
    inset 0 0 0 1px rgba(255, 240, 207, 0.16);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.6rem;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  transition: transform 0.18s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.poster-checkin-btn:hover,
.poster-checkin-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    0 18px 28px rgba(35, 45, 58, 0.22),
    inset 0 0 0 1px rgba(255, 240, 207, 0.2);
  filter: saturate(1.05);
}

.poster-checkin-btn:focus-visible {
  outline: 2px solid rgba(255, 236, 193, 0.55);
  outline-offset: 2px;
}

.poster-checkin-btn-ripple {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 50%, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.16) 48%, transparent 62%);
  transform: translateX(-35%);
  animation: posterCheckinSweep 6.2s ease-in-out infinite;
}

.poster-checkin-btn-core,
.poster-checkin-btn-mark {
  position: relative;
  z-index: 1;
}

.poster-checkin-btn-core {
  display: grid;
  gap: 0.14rem;
  min-width: 0;
}

.poster-checkin-btn-text {
  display: block;
  font-family: "ZCOOL XiaoWei", "Noto Serif SC", serif;
  font-size: 1rem;
  line-height: 1.2;
}

.poster-checkin-btn-sub {
  display: block;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.76rem;
  line-height: 1.2;
  color: rgba(255, 244, 221, 0.9);
}

.poster-checkin-btn-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.76rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 245, 225, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 247, 0.06);
}

.poster-checkin-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  min-height: 1.7rem;
}

.poster-checkin-stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.2rem;
  height: 1.65rem;
  padding: 0 0.55rem;
  border-radius: 999px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #5f7387;
  background: rgba(255, 255, 255, 0.72);
  border: 1px dashed rgba(102, 84, 65, 0.2);
  transform-origin: center;
}

.poster-checkin-hint {
  margin: 0;
  color: #5c7084;
  font-size: 0.78rem;
  line-height: 1.25;
  text-align: right;
}

.poster-stage-cta.is-checked .poster-checkin-stamp {
  color: #f6f0e3;
  border-style: solid;
  border-color: rgba(255, 243, 213, 0.2);
  background: linear-gradient(120deg, rgba(38, 47, 60, 0.76), rgba(72, 87, 106, 0.72));
}

.poster-stage-cta.is-burst .poster-checkin-btn,
.poster-stage-cta.is-revisit-burst .poster-checkin-btn {
  animation: posterCheckinButtonPop 0.56s cubic-bezier(0.22, 0.9, 0.32, 1);
}

.poster-stage-cta.is-revisit-burst .poster-checkin-btn {
  filter: saturate(1.08) brightness(1.02);
}

.poster-stage-cta.is-stamped .poster-checkin-stamp {
  animation: posterCheckinStamp 0.82s cubic-bezier(0.22, 0.84, 0.3, 1);
}

.poster-checkin-sparkbox {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.poster-checkin-spark {
  position: absolute;
  left: 50%;
  top: 62%;
  width: var(--spark-size, 6px);
  height: var(--spark-size, 6px);
  margin-left: calc(var(--spark-size, 6px) / -2);
  margin-top: calc(var(--spark-size, 6px) / -2);
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(255, 248, 230, 0.95), color-mix(in srgb, var(--secondary) 65%, var(--accent)));
  box-shadow: 0 0 10px rgba(255, 237, 198, 0.48);
  opacity: 0;
  transform: translate3d(0, 0, 0) rotate(var(--spark-rotate, 0deg));
  animation: posterCheckinSparkFly 680ms ease-out forwards;
  animation-delay: var(--spark-delay, 0ms);
}

.poster-checkin-spark:nth-child(2n) {
  border-radius: 2px;
}

.poster-stage-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.55rem;
}

.poster-stage-kicker {
  margin: 0;
  color: #56677a;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.poster-stage-controls {
  display: inline-flex;
  gap: 0.45rem;
}

.poster-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(154, 99, 54, 0.42);
  background: linear-gradient(135deg, rgba(182, 75, 58, 0.96), rgba(222, 176, 92, 0.94));
  color: #fff6e6;
  font-size: 1.18rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 18px rgba(44, 53, 66, 0.14);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.poster-nav-btn:hover,
.poster-nav-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(133, 74, 37, 0.6);
  box-shadow: 0 14px 22px rgba(44, 53, 66, 0.18);
}

.poster-stage-title {
  margin: 0;
  font-family: "ZCOOL XiaoWei", "Noto Serif SC", serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.25;
  color: #1f2a35;
}

.poster-stage-subtitle {
  margin: 0.35rem 0 0;
  color: #4e6074;
  font-size: 0.92rem;
}

.poster-stage-intro {
  display: none;
}

.poster-stage-inheritor {
  margin: 0.65rem 0 0;
  color: #2f455e;
  font-size: 0.9rem;
}

.poster-stage-inheritor strong {
  color: #1f3042;
}

.poster-stage-chip-list {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.poster-stage-chip {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(114, 91, 64, 0.16);
  background: rgba(255, 255, 255, 0.76);
  color: #36495e;
  font-size: 0.78rem;
  line-height: 1.3;
  white-space: nowrap;
}

.poster-wall {
  min-width: 0;
  display: grid;
  gap: 0.6rem;
  contain: layout paint;
}

.poster-wall-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.05rem 0.1rem 0;
}

.poster-wall-eyebrow {
  margin: 0;
  color: #67788a;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.poster-wall-header h3 {
  margin: 0.25rem 0 0;
  font-family: "ZCOOL XiaoWei", "Noto Serif SC", serif;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1.25;
  color: #202f3d;
}

.poster-wall-note {
  margin: 0;
  font-size: 0.86rem;
  color: #556678;
  text-align: right;
  white-space: nowrap;
}

.poster-wall-grid {
  display: block;
  column-count: 4;
  column-gap: 0.6rem;
  column-fill: balance;
  contain: layout paint;
}

.poster-tile {
  --poster-tilt-x: 0deg;
  --poster-tilt-y: 0deg;
  --poster-glow-x: 50%;
  --poster-glow-y: 50%;
  grid-column: auto;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  cursor: pointer;
  display: grid;
  gap: 0.3rem;
  min-width: 0;
  width: 100%;
  margin: 0 0 0.55rem;
  break-inside: avoid;
  page-break-inside: avoid;
  position: relative;
  contain: layout paint;
}

@supports (content-visibility: auto) {
  .poster-tile {
    content-visibility: auto;
    contain-intrinsic-size: 1px 560px;
  }
}

.poster-tile--md {
  grid-column: auto;
}

.poster-tile--wide {
  grid-column: auto;
}

.poster-tile--xl {
  grid-column: auto;
}

.poster-tile--tall {
  grid-column: auto;
  margin-top: 0;
}

.poster-tile-media {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 245, 220, 0.36);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.86), rgba(245, 238, 226, 0.92));
  box-shadow:
    0 14px 24px rgba(39, 49, 62, 0.11),
    inset 0 0 0 1px rgba(49, 59, 72, 0.04);
  transform: none;
  transition: transform 0.2s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  isolation: isolate;
  contain: layout paint;
}

.poster-tile.is-tilting .poster-tile-media {
  transform:
    perspective(900px)
    rotateX(var(--poster-tilt-x))
    rotateY(var(--poster-tilt-y));
  will-change: transform;
}

.poster-tile--wide .poster-tile-media {
  aspect-ratio: 4 / 5;
}

.poster-tile--xl .poster-tile-media {
  aspect-ratio: 5 / 6;
}

.poster-tile--tall .poster-tile-media {
  aspect-ratio: 2 / 3;
}

.poster-tile::before {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.poster-tile-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #ece6da;
  transform: scale(1);
  transition: transform 0.35s ease, filter 0.35s ease, opacity 0.25s ease;
  backface-visibility: hidden;
}

.poster-tile-gridline,
.poster-tile-gloss,
.poster-tile-placeholder {
  position: absolute;
  pointer-events: none;
}

.poster-tile-gridline {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.18;
  z-index: 2;
}

.poster-tile-gloss {
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle at var(--poster-glow-x) var(--poster-glow-y), rgba(255, 255, 255, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(20, 25, 32, 0.02), rgba(20, 25, 32, 0.14));
}

.poster-tile-placeholder {
  left: 0.65rem;
  right: 0.65rem;
  bottom: 0.65rem;
  z-index: 4;
  margin: 0;
  border-radius: 10px;
  padding: 0.45rem 0.55rem;
  font-size: 0.76rem;
  line-height: 1.35;
  color: #2d4055;
  background: rgba(255, 252, 244, 0.88);
  border: 1px solid rgba(122, 96, 67, 0.16);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.poster-tile.is-missing .poster-tile-image {
  opacity: 0;
}

.poster-tile.is-missing .poster-tile-media {
  border-style: dashed;
  border-color: rgba(114, 89, 62, 0.26);
  background:
    radial-gradient(circle at 18% 20%, rgba(217, 170, 106, 0.15), transparent 40%),
    radial-gradient(circle at 84% 78%, rgba(35, 105, 119, 0.14), transparent 34%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.82), rgba(244, 236, 222, 0.9));
}

.poster-tile.is-missing .poster-tile-placeholder {
  opacity: 1;
  transform: translateY(0);
}

.poster-tile-caption {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.38rem;
  padding: 0.05rem 0.1rem 0;
}

.poster-tile-index {
  min-width: 2.1rem;
  height: 1.6rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff3dd;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  background: linear-gradient(120deg, var(--accent), var(--secondary));
  box-shadow: 0 6px 12px rgba(42, 50, 62, 0.12);
}

.poster-tile-text {
  min-width: 0;
  display: grid;
  gap: 0.08rem;
}

.poster-tile-text strong {
  display: block;
  font-size: 0.89rem;
  line-height: 1.25;
  font-family: "ZCOOL XiaoWei", "Noto Serif SC", serif;
  color: #21303f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.poster-tile-text small {
  display: block;
  color: #5d6f83;
  font-size: 0.74rem;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.poster-tile:hover .poster-tile-media,
.poster-tile:focus-visible .poster-tile-media {
  border-color: rgba(255, 239, 208, 0.62);
  box-shadow:
    0 18px 30px rgba(39, 49, 62, 0.16),
    0 0 0 1px rgba(255, 250, 240, 0.12) inset;
}

.poster-tile:hover .poster-tile-image,
.poster-tile:focus-visible .poster-tile-image {
  transform: scale(1.03);
  filter: saturate(1.06) contrast(1.03);
}

.poster-tile.is-active .poster-tile-media {
  border-color: rgba(255, 242, 212, 0.78);
  box-shadow:
    0 22px 34px rgba(36, 47, 59, 0.2),
    0 0 0 1px rgba(255, 250, 242, 0.16) inset,
    0 0 0 3px rgba(255, 214, 141, 0.14);
}

.poster-tile.is-active .poster-tile-text strong {
  color: #182735;
}

.poster-tile:focus-visible {
  outline: none;
}

.poster-tile:focus-visible .poster-tile-caption {
  border-radius: 10px;
}

.poster-lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  transition: opacity 0.25s ease;
}

.poster-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.poster-lightbox-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(13, 18, 25, 0.72);
  backdrop-filter: blur(6px);
}

.poster-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(840px, calc(100% - 2.2rem));
  margin: max(1rem, calc(var(--header-height) + 0.6rem)) auto 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 241, 214, 0.16);
  background: rgba(20, 26, 35, 0.94);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.34);
  padding: 0.95rem;
}

.poster-lightbox-close {
  position: absolute;
  top: 0.55rem;
  right: 0.6rem;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #f7efdd;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.poster-lightbox-meta {
  padding: 0.2rem 2.5rem 0.65rem 0.15rem;
}

.poster-lightbox-kicker {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(235, 222, 194, 0.78);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

.poster-lightbox-meta h3 {
  margin: 0.35rem 0 0;
  font-family: "ZCOOL XiaoWei", "Noto Serif SC", serif;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  color: #fbf1dd;
  line-height: 1.25;
}

.poster-lightbox-meta p:last-child {
  margin: 0.4rem 0 0;
  color: rgba(235, 227, 210, 0.8);
  font-size: 0.92rem;
}

.poster-lightbox-media {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 14px;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid rgba(255, 240, 214, 0.12);
  background:
    linear-gradient(180deg, rgba(246, 241, 231, 0.08), rgba(241, 234, 220, 0.03));
}

.poster-lightbox-image {
  width: min(100%, 640px);
  max-height: none;
  display: block;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.02);
}

.poster-lightbox-empty {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  color: #d8e1ea;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 248, 229, 0.14);
}

body.poster-lightbox-open {
  overflow: hidden;
}

body.is-scrolling .poster-stage-media,
body.is-scrolling .poster-stage-panel,
body.is-scrolling .poster-stage-cta,
body.is-scrolling .poster-tile-media,
body.is-scrolling .poster-lightbox-dialog {
  box-shadow: none !important;
}

body.is-scrolling .poster-stage-image,
body.is-scrolling .poster-tile-image {
  filter: none !important;
}

body.is-scrolling .poster-stage-image,
body.is-scrolling .poster-tile-image,
body.is-scrolling .poster-tile-media,
body.is-scrolling .poster-checkin-btn,
body.is-scrolling .poster-nav-btn {
  transition: none !important;
}

body.is-scrolling .poster-stage-scan,
body.is-scrolling .poster-tile-gridline,
body.is-scrolling .poster-tile-gloss {
  opacity: 0.05 !important;
}

body.is-scrolling .poster-stage-shine,
body.is-scrolling .poster-checkin-btn-ripple,
body.is-scrolling .poster-stage-cta-orbit span {
  animation-play-state: paused;
}

.poster-showcase.is-fx-paused .poster-stage-shine,
.poster-showcase.is-fx-paused .poster-checkin-btn-ripple,
.poster-showcase.is-fx-paused .poster-stage-cta-orbit span {
  animation-play-state: paused;
}

.poster-showcase.is-fx-paused .poster-stage-scan {
  opacity: 0.28;
}

.poster-showcase.is-fx-paused .poster-stage-media::before {
  opacity: 0.5;
}

.poster-showcase.workshop-perf-balanced .poster-stage-shine {
  animation-duration: 9.6s;
  opacity: 0.36;
}

.poster-showcase.workshop-perf-balanced .poster-stage-scan {
  opacity: 0.22;
}

.poster-showcase.workshop-perf-balanced .poster-stage-cta-orbit span,
.poster-showcase.workshop-perf-balanced .poster-checkin-btn-ripple {
  animation-duration: 10.5s;
  opacity: 0.5;
}

.poster-showcase.workshop-perf-balanced .poster-tile-gridline,
.poster-showcase.workshop-perf-balanced .poster-tile-gloss {
  opacity: 0.08;
}

.poster-showcase.workshop-perf-balanced .poster-stage-panel,
.poster-showcase.workshop-perf-balanced .poster-stage-cta,
.poster-showcase.workshop-perf-balanced .poster-stage-media,
.poster-showcase.workshop-perf-balanced .poster-tile-media,
body.workshop-perf-balanced .poster-lightbox-dialog {
  box-shadow: 0 10px 18px rgba(39, 48, 60, 0.08) !important;
}

.poster-showcase.workshop-perf-lite .poster-stage-shine,
.poster-showcase.workshop-perf-lite .poster-stage-scan,
.poster-showcase.workshop-perf-lite .poster-stage-cta-orbit,
.poster-showcase.workshop-perf-lite .poster-checkin-btn-ripple,
.poster-showcase.workshop-perf-lite .poster-tile-gridline,
.poster-showcase.workshop-perf-lite .poster-tile-gloss {
  display: none !important;
}

.poster-showcase.workshop-perf-lite .poster-stage-panel,
.poster-showcase.workshop-perf-lite .poster-stage-cta,
.poster-showcase.workshop-perf-lite .poster-stage-media,
.poster-showcase.workshop-perf-lite .poster-tile-media,
body.workshop-perf-lite .poster-lightbox-dialog {
  box-shadow: 0 8px 14px rgba(39, 48, 60, 0.06) !important;
}

body.workshop-perf-balanced .poster-lightbox-backdrop,
body.workshop-perf-lite .poster-lightbox-backdrop,
body.workshop-perf-balanced .poster-workshop-chip-tooltip__inner,
body.workshop-perf-lite .poster-workshop-chip-tooltip__inner {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.workshop-perf-balanced .leaf-layer,
body.workshop-perf-lite .leaf-layer {
  display: none !important;
}

body.perf-balanced .poster-stage-shine {
  animation-duration: 8.5s;
  opacity: 0.72;
}

body.perf-balanced .poster-checkin-btn-ripple {
  animation-duration: 8.2s;
}

body.perf-balanced .poster-stage-cta-orbit span {
  animation-duration: 10s;
}

body.perf-lite .poster-stage-shine,
body.perf-lite .poster-stage-scan,
body.perf-lite .poster-stage-cta-orbit,
body.perf-lite .poster-checkin-btn-ripple {
  display: none;
}

@keyframes posterCheckinOrbit {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.35;
  }

  25% {
    transform: translate3d(8px, -6px, 0) scale(1.08);
    opacity: 0.6;
  }

  50% {
    transform: translate3d(2px, -12px, 0) scale(0.92);
    opacity: 0.45;
  }

  75% {
    transform: translate3d(-7px, -4px, 0) scale(1.05);
    opacity: 0.62;
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.35;
  }
}

@keyframes posterCheckinSweep {
  0%,
  16% {
    transform: translateX(-45%);
    opacity: 0;
  }

  22%,
  58% {
    opacity: 1;
  }

  100% {
    transform: translateX(55%);
    opacity: 0;
  }
}

@keyframes posterCheckinButtonPop {
  0% {
    transform: scale(1);
  }

  34% {
    transform: scale(0.985);
  }

  58% {
    transform: scale(1.028);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes posterCheckinStamp {
  0% {
    transform: scale(0.72) rotate(-12deg);
    opacity: 0.15;
  }

  45% {
    transform: scale(1.12) rotate(6deg);
    opacity: 1;
  }

  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes posterCheckinSparkFly {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.4) rotate(var(--spark-rotate, 0deg));
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--spark-x, 0px), var(--spark-y, 0px), 0) scale(1.05) rotate(var(--spark-rotate, 0deg));
  }
}

@keyframes posterStageCardFlip {
  0% {
    transform: translate3d(0, 0, 0) scale(1) rotateY(0deg) rotateZ(0deg);
  }

  42% {
    transform: translate3d(-2px, -1px, 0) scale(0.93) rotateY(-13deg) rotateZ(-0.8deg);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(0.945) rotateY(-8deg) rotateZ(-0.55deg);
  }
}

@keyframes posterStageDetailReveal {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.98) rotateX(-8deg);
  }

  55% {
    opacity: 1;
    transform: translateY(-2px) scale(1.006) rotateX(0deg);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes posterStageShine {
  0%,
  12% {
    transform: translateX(-62%);
    opacity: 0;
  }

  18%,
  52% {
    opacity: 1;
  }

  76%,
  100% {
    transform: translateX(62%);
    opacity: 0;
  }
}

@media (max-width: 1080px) {
  .poster-wall-grid {
    column-count: 3;
  }

  .poster-wall-header {
    align-items: start;
    flex-direction: column;
  }

  .poster-wall-note {
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .poster-showcase-shell {
    gap: 0.7rem;
    padding: 0.72rem;
  }

  .poster-stage {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 0.7rem;
  }

  .poster-stage-media,
  .poster-stage-panel,
  .poster-stage-cta {
    grid-column: auto;
    grid-row: auto;
  }

  .poster-stage-media {
    border-radius: 16px;
  }

  .poster-stage-panel {
    padding: 0.8rem;
  }

  .poster-stage-intro {
    font-size: 0.89rem;
  }

  .poster-stage-cta {
    align-self: start;
    min-height: 0;
    padding: 0.78rem;
    gap: 0.5rem;
  }

  .poster-stage-cta-head {
    grid-template-columns: 1fr auto;
    gap: 0.45rem;
  }

  .poster-stage-cta-progress {
    --ring-size: 54px;
  }

  .poster-stage-cta-copy {
    font-size: 0.82rem;
  }

  .poster-stage-detail {
    padding: 0.62rem;
    gap: 0.48rem;
  }

  .poster-stage-detail-head {
    align-items: start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .poster-stage-detail-meta {
    white-space: normal;
  }

  .poster-stage-detail-item {
    padding: 0.34rem 0.4rem;
  }

  .poster-stage-detail-value {
    font-size: 0.8rem;
  }

  .poster-stage.is-detail-open .poster-stage-media {
    transform: none;
  }

  .poster-checkin-btn {
    padding: 0.58rem 0.65rem;
    gap: 0.45rem;
  }

  .poster-checkin-btn-text {
    font-size: 0.9rem;
  }

  .poster-checkin-btn-sub {
    font-size: 0.7rem;
  }

  .poster-checkin-btn-mark {
    width: 38px;
    height: 38px;
    font-size: 0.68rem;
  }

  .poster-checkin-meta {
    align-items: start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .poster-checkin-hint {
    text-align: left;
  }

  .poster-wall-grid {
    column-count: 2;
    column-gap: 0.5rem;
  }

  .poster-tile-caption {
    gap: 0.28rem;
    padding-inline: 0.05rem;
  }

  .poster-tile-text strong {
    font-size: 0.82rem;
  }

  .poster-tile-text small {
    font-size: 0.7rem;
  }

  .poster-lightbox-dialog {
    width: calc(100% - 1rem);
    margin: max(0.7rem, calc(var(--header-height) + 0.35rem)) auto 0.7rem;
    padding: 0.75rem;
  }

  .poster-lightbox-image {
    width: 100%;
  }

}

@media (max-width: 520px) {
  .poster-wall-grid {
    column-count: 1;
  }

  .poster-tile {
    margin-bottom: 0.65rem;
  }

  .poster-stage-cta-head {
    grid-template-columns: 1fr;
  }

  .poster-stage-cta-progress {
    justify-self: start;
  }

  .poster-stage-detail-token {
    font-size: 0.7rem;
  }

  .poster-workshop-chip-tooltip {
    width: calc(100vw - 12px);
  }

  .poster-workshop-chip-tooltip__inner {
    padding: 0.62rem 0.66rem;
  }

  .poster-workshop-chip-tooltip__row dd {
    font-size: 0.76rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .poster-stage-shine {
    animation: none;
    opacity: 0.25;
  }

  .poster-stage-image,
  .poster-tile-image,
  .poster-tile-media,
  .poster-lightbox,
  .poster-checkin-btn,
  .poster-checkin-stamp {
    transition: none !important;
  }

  .poster-checkin-btn-ripple,
  .poster-stage-cta-orbit span {
    animation: none !important;
  }

  .poster-stage.is-detail-opening .poster-stage-media,
  .poster-stage-detail.is-entering {
    animation: none !important;
  }

  .poster-stage.is-detail-open .poster-stage-media {
    transform: none;
  }

  .poster-workshop-chip-tooltip,
  .poster-stage-detail-token {
    transition: none !important;
  }
}
