:root {
  --kiln-black: #0E0E0C;
  --porcelain: #F6F2EB;
  --qinghua: #1B3A5B;
  --cinnabar: #A8341F;
  --gilt: #B8945A;
  --font-serif: 'Cormorant Garamond', 'Songti SC', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'PingFang SC', sans-serif;
  --container: 1280px;
  --pad: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); font-size: 16px; font-weight: 300; line-height: 1.7; color: var(--kiln-black); background: var(--porcelain); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--kiln-black); color: var(--porcelain); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(14,14,12,0.2); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad); }
.center { text-align: center; }
.caption { font-size: 11px; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; color: var(--kiln-black); }
.caption.center { display: block; margin-bottom: 60px; }
.caption.light { color: var(--porcelain); }
.caption.gilt { color: var(--gilt); }
.h2 { font-family: var(--font-serif); font-size: clamp(36px, 5vw, 56px); font-weight: 300; line-height: 1.15; letter-spacing: -0.01em; }
.h2.light { color: var(--porcelain); }
.h2.center { margin: 0 auto; max-width: 800px; }
.lead { font-size: 16px; font-weight: 300; line-height: 1.7; color: rgba(14,14,12,0.75); max-width: 360px; margin-top: 24px; }
.lead.light { color: rgba(246,242,235,0.8); }

.loader { position: fixed; inset: 0; background: var(--porcelain); display: flex; align-items: center; justify-content: center; z-index: 9999; transition: opacity 1s var(--ease), visibility 1s; }
.loader.hidden { opacity: 0; visibility: hidden; }
.loader__logo { font-size: 14px; letter-spacing: 0.4em; font-weight: 400; opacity: 0; animation: fadeInOut 2s var(--ease) forwards; }
@keyframes fadeInOut { 0% { opacity: 0; } 50% { opacity: 1; } 100% { opacity: 1; } }

.cursor { position: fixed; width: 8px; height: 8px; background: var(--kiln-black); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%, -50%); transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s, border 0.3s; mix-blend-mode: difference; }
.cursor.hover { width: 32px; height: 32px; background: transparent; border: 1.5px solid var(--porcelain); }
@media (max-width: 768px) { .cursor { display: none; } }

.header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background 0.4s, border-bottom 0.4s; border-bottom: 1px solid transparent; }
.header.scrolled { background: rgba(246,242,235,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(14,14,12,0.08); }
.header__inner { max-width: var(--container); margin: 0 auto; padding: 24px var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.header__logo { font-size: 14px; letter-spacing: 0.3em; font-weight: 500; color: var(--porcelain); transition: color 0.4s; }
.header.scrolled .header__logo { color: var(--kiln-black); }
.header__nav { display: flex; gap: 40px; }
.header__nav a { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--porcelain); position: relative; transition: color 0.4s; }
.header.scrolled .header__nav a { color: var(--kiln-black); }
.header__nav a::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 1px; background: currentColor; transition: width 0.4s var(--ease); }
.header__nav a:hover::after { width: 100%; }
.header__tools { display: flex; align-items: center; gap: 24px; }
.lang-toggle, .header__contact { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--porcelain); transition: color 0.4s, opacity 0.3s; }
.header.scrolled .lang-toggle, .header.scrolled .header__contact { color: var(--kiln-black); }
.lang-toggle:hover, .header__contact:hover { opacity: 0.7; }
@media (max-width: 768px) { .header__inner { padding: 16px 24px; gap: 16px; } .header__nav { display: none; } }

.btn { display: inline-block; padding: 18px 40px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; border: 1px solid currentColor; transition: all 0.4s var(--ease); }
.btn--outline-light { color: var(--porcelain); }
.btn--outline-light:hover { background: var(--porcelain); color: var(--kiln-black); }
.btn--solid-light { background: var(--porcelain); color: var(--kiln-black); border-color: var(--porcelain); }
.btn--solid-light:hover { background: transparent; color: var(--porcelain); border-color: var(--porcelain); }
.btn--outline-light-on-dark { color: var(--porcelain); border-color: var(--porcelain); }
.btn--outline-light-on-dark:hover { background: var(--porcelain); color: var(--kiln-black); }
.link-arrow { display: inline-block; font-size: 14px; border-bottom: 1px solid currentColor; padding-bottom: 4px; transition: opacity 0.3s, letter-spacing 0.3s; }
.link-arrow:hover { letter-spacing: 0.05em; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1.2s var(--ease), transform 1.2s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

.hero { position: relative; height: 100vh; min-height: 700px; overflow: hidden; background: var(--kiln-black); }
.hero__video { position: absolute; inset: 0; }
.hero__video video { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%); }
.hero__content { position: absolute; left: var(--pad); bottom: 120px; max-width: 720px; color: var(--porcelain); z-index: 2; }
.hero__caption { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(246,242,235,0.8); margin-bottom: 32px; }
.hero__title { font-family: var(--font-serif); font-size: clamp(44px, 7vw, 88px); font-weight: 300; line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 32px; }
.hero__sub { font-size: 16px; line-height: 1.7; max-width: 480px; color: rgba(246,242,235,0.85); margin-bottom: 40px; }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll { position: absolute; right: var(--pad); bottom: 60px; color: var(--porcelain); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 16px; z-index: 2; }
.hero__scroll-line { width: 1px; height: 40px; background: rgba(246,242,235,0.5); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ''; position: absolute; top: -40px; left: 0; width: 100%; height: 40px; background: var(--porcelain); animation: scrollLine 2s var(--ease) infinite; }
@keyframes scrollLine { to { top: 40px; } }
@media (max-width: 768px) { .hero__content { left: 24px; right: 24px; bottom: 100px; } .hero__ctas .btn { padding: 16px 28px; font-size: 11px; } .hero__scroll { display: none; } }

.pillars { padding: 160px 0; background: var(--porcelain); }
.pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; position: relative; }
.pillars__grid::before, .pillars__grid::after { content: ''; position: absolute; top: 20px; bottom: 20px; width: 1px; background: rgba(14,14,12,0.1); }
.pillars__grid::before { left: 33.33%; }
.pillars__grid::after { left: 66.66%; }
.pillar { padding: 0 30px; }
.pillar__num { font-family: var(--font-serif); font-size: 28px; font-weight: 300; color: var(--cinnabar); margin-bottom: 32px; }
.pillar__title { font-family: var(--font-serif); font-size: 26px; font-weight: 300; line-height: 1.25; margin-bottom: 20px; }
.pillar__text { font-size: 15px; line-height: 1.7; color: rgba(14,14,12,0.7); max-width: 280px; }
@media (max-width: 768px) { .pillars { padding: 80px 0; } .pillars__grid { grid-template-columns: 1fr; gap: 60px; } .pillars__grid::before, .pillars__grid::after { display: none; } .pillar { padding: 0; } }

.collections { padding: 160px 0; background: var(--porcelain); }
.collections__layout { display: grid; grid-template-columns: 35% 1fr; gap: 80px; align-items: center; }
.collections__intro .caption { margin-bottom: 24px; }
.collections__intro .h2 { margin-bottom: 24px; }
.collections__intro .lead { margin-bottom: 40px; max-width: 300px; }
.collections__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.col-card { position: relative; aspect-ratio: 4/5; background-size: cover; background-position: center; overflow: hidden; display: block; transition: transform 0.6s var(--ease); }
.col-card::before { content: ''; position: absolute; inset: 0; background: rgba(14,14,12,0); transition: background 0.4s; }
.col-card:hover::before { background: rgba(14,14,12,0.3); }
.col-card__label { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-family: var(--font-serif); font-size: 28px; font-weight: 300; color: var(--porcelain); opacity: 0; transition: opacity 0.4s var(--ease); letter-spacing: 0.05em; z-index: 2; }
.col-card:hover .col-card__label { opacity: 1; }
.col-card--3 { grid-column: span 2; aspect-ratio: 16/9; }
@media (max-width: 768px) { .collections { padding: 80px 0; } .collections__layout { grid-template-columns: 1fr; gap: 60px; } .col-card--3 { aspect-ratio: 4/5; grid-column: auto; } }

.image-break { position: relative; height: 90vh; min-height: 600px; overflow: hidden; }
.image-break__img { position: absolute; inset: 0; background-size: cover; background-position: center; filter: grayscale(100%); transform: scale(1); transition: transform 12s ease-out; }
.image-break:hover .image-break__img { transform: scale(1.05); }
.image-break__caption { position: absolute; right: var(--pad); bottom: 40px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--porcelain); opacity: 0.8; }

.process { background: var(--kiln-black); color: var(--porcelain); padding: 160px 0; }
.process .h2 { margin-bottom: 100px; }
.process__steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.process__step { padding-right: 24px; }
.process__num { font-family: var(--font-serif); font-size: 36px; font-weight: 300; color: var(--gilt); margin-bottom: 24px; }
.process__line { width: 100%; height: 1px; background: rgba(246,242,235,0.3); margin-bottom: 32px; }
.process__step h4 { font-family: var(--font-serif); font-size: 22px; font-weight: 300; margin-bottom: 12px; }
.process__step p { font-size: 13px; line-height: 1.7; color: rgba(246,242,235,0.7); max-width: 140px; }
@media (max-width: 768px) { .process { padding: 80px 0; } .process__steps { grid-template-columns: 1fr; gap: 40px; } .process__step { display: grid; grid-template-columns: 80px 1fr; align-items: start; gap: 24px; padding: 0; } .process__num { margin: 0; } .process__line { display: none; } .process__step h4 { grid-column: 2; } .process__step p { grid-column: 2; max-width: none; } }

.craft { background: var(--kiln-black); padding: 160px 0; border-top: 1px solid rgba(246,242,235,0.08); }
.craft__layout { display: grid; grid-template-columns: 60% 1fr; gap: 80px; align-items: center; }
.craft__thumb { position: relative; aspect-ratio: 16/9; background-size: cover; background-position: center; cursor: pointer; overflow: hidden; }
.craft__thumb::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.2); transition: background 0.4s; }
.craft__thumb:hover::before { background: rgba(0,0,0,0); }
.play-btn { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 80px; height: 80px; border: 1.5px solid var(--porcelain); border-radius: 50%; color: var(--porcelain); display: flex; align-items: center; justify-content: center; transition: background 0.4s, transform 0.4s; z-index: 2; }
.play-btn:hover { background: var(--porcelain); color: var(--kiln-black); transform: translate(-50%, -50%) scale(1.05); }
.play-btn svg { width: 24px; height: 24px; margin-left: 4px; }
.craft__meta { margin-top: 24px; display: flex; gap: 32px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(246,242,235,0.6); }
.craft__text .caption { margin-bottom: 24px; }
.craft__text .h2 { margin-bottom: 32px; }
.craft__text .lead { margin-bottom: 40px; max-width: 380px; }
@media (max-width: 768px) { .craft { padding: 80px 0; } .craft__layout { grid-template-columns: 1fr; gap: 40px; } .play-btn { width: 60px; height: 60px; } }

.quote { padding: 160px 0; background: var(--porcelain); text-align: center; }
.quote__text { font-family: var(--font-serif); font-size: clamp(28px, 4vw, 44px); font-weight: 300; line-height: 1.4; max-width: 800px; margin: 0 auto 40px; }
.quote__author { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(14,14,12,0.6); }

.journal { padding: 160px 0 120px; background: var(--porcelain); }
.journal__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 80px; }
.journal__head .caption { margin-bottom: 16px; }
.journal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.article { display: block; transition: transform 0.4s var(--ease); }
.article:hover { transform: translateY(-6px); }
.article__img { aspect-ratio: 4/5; background-size: cover; background-position: center; margin-bottom: 20px; transition: filter 0.4s; }
.article__cat { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cinnabar); margin-bottom: 8px; }
.article__title { font-family: var(--font-serif); font-size: 22px; font-weight: 300; line-height: 1.3; }
@media (max-width: 768px) { .journal { padding: 80px 0; } .journal__head { flex-direction: column; align-items: flex-start; gap: 32px; } .journal__grid { grid-template-columns: 1fr; gap: 40px; } }

.newsletter { background: var(--kiln-black); padding: 140px 0; color: var(--porcelain); }
.newsletter .caption { margin-bottom: 24px; display: block; }
.newsletter .h2 { margin-bottom: 48px; }
.newsletter__form { display: flex; gap: 0; max-width: 560px; margin: 0 auto; }
.newsletter__form input { flex: 1; height: 56px; background: transparent; border: none; border-bottom: 1px solid rgba(246,242,235,0.4); color: var(--porcelain); font-family: inherit; font-size: 14px; padding: 0 16px; outline: none; transition: border-color 0.3s; }
.newsletter__form input::placeholder { color: rgba(246,242,235,0.4); }
.newsletter__form input:focus { border-bottom-color: var(--porcelain); }
.newsletter__form button { padding: 0 32px; border: 1px solid var(--porcelain); color: var(--porcelain); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; transition: all 0.4s; }
.newsletter__form button:hover { background: var(--porcelain); color: var(--kiln-black); }

.footer { background: var(--kiln-black); color: var(--porcelain); padding: 80px 0 40px; border-top: 1px solid rgba(246,242,235,0.08); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.footer__brand { font-size: 14px; letter-spacing: 0.3em; font-weight: 500; margin-bottom: 16px; }
.footer__tagline { font-size: 14px; color: rgba(246,242,235,0.6); line-height: 1.6; }
.footer__col h5 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gilt); margin-bottom: 24px; font-weight: 400; }
.footer__col a { display: block; font-size: 13px; color: rgba(246,242,235,0.7); margin-bottom: 12px; transition: color 0.3s; }
.footer__col a:hover { color: var(--porcelain); }
.footer__bottom { padding-top: 40px; border-top: 1px solid rgba(246,242,235,0.1); display: flex; justify-content: space-between; font-size: 11px; letter-spacing: 0.1em; color: rgba(246,242,235,0.5); }
@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; } .footer__bottom { flex-direction: column; gap: 16px; } }

/* ============================================
   HOMAGE Section (古典致敬)
   ============================================ */
.homage { 
  padding: 160px 0; 
  background: #0a0a08; 
  color: var(--porcelain); 
  border-top: 1px solid rgba(246,242,235,0.08);
}
.homage .caption { color: var(--gilt); }
.homage__grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 60px; 
}
.homage-item {
  display: flex;
  flex-direction: column;
}
.homage-item__img {
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  margin-bottom: 32px;
  filter: brightness(0.92) contrast(1.05);
  transition: filter 0.6s var(--ease);
}
.homage-item:hover .homage-item__img {
  filter: brightness(1) contrast(1.1);
}
.homage-item__era {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gilt);
  margin-bottom: 16px;
}
.homage-item__title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 20px;
}
.homage-item__desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(246,242,235,0.7);
}
@media (max-width: 768px) {
  .homage { padding: 80px 0; }
  .homage__grid { grid-template-columns: 1fr; gap: 60px; }
}

/* 中文数字大字 (壹貳叁) 替代 01 02 03 */
.pillar__num { 
  font-family: 'Songti SC', 'STSong', 'SimSun', serif;
  font-size: 36px;
}

.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }


/* ========== GUI 貴 Logo 中文字体样式 ========== */
.logo-cn {
  font-family: "Noto Serif TC", "Songti SC", "STSong", "PingFang TC", serif;
  font-weight: 400;
  margin-left: 0.4em;
  letter-spacing: 0;
  font-feature-settings: "palt" 1;
  display: inline-block;
  transform: translateY(-0.02em);
}

/* Loader 区域的汉字稍微大一点点 */
.loader__logo .logo-cn {
  margin-left: 0.5em;
  font-size: 1.05em;
}

/* Header logo 区域 */
.header__logo .logo-cn {
  font-size: 1.08em;
  margin-left: 0.45em;
}

/* Footer 区域 */
.footer__brand .logo-cn {
  font-size: 1.08em;
  margin-left: 0.45em;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    /* 左上方暖白光晕(模拟博物馆侧光射灯) */
    radial-gradient(
      ellipse 70% 60% at 18% 22%,
      rgba(255, 235, 200, 0.18) 0%,
      rgba(255, 220, 180, 0.08) 25%,
      rgba(0, 0, 0, 0) 60%
    ),
    /* 右下方深邃暗角 */
    radial-gradient(
      ellipse 80% 70% at 85% 95%,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0) 70%
    ),
    /* 主体对角渐变:左上深炭灰 → 右下纯黑 */
    linear-gradient(
      135deg,
      #1c1c1c 0%,
      #141414 35%,
      #0a0a0a 70%,
      #050505 100%
    );
}

/* 顶部加一层极淡的"展厅顶光"光带 */
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 245, 220, 0.06) 0%,
    rgba(0, 0, 0, 0) 25%
  );
  pointer-events: none;
}

/* 整个 Hero 加一层细微暗角(vignette),让边缘更深 */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  pointer-events: none;
}

/* 确保 Hero 内的文字浮在背景上方 */
.hero > *:not(.hero__bg) {
  position: relative;
  z-index: 1;
}

/* 文字稍微强化对比度,在深背景上更清晰 */
.hero h1,
.hero p,
.hero .caption {
  color: #f5f0e8;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* ========== Hero 微调:加强光晕 + 响应式标题 ========== */

/* 加强左上方暖光晕,把可见度从 ~8% 提到 30% */
.hero__bg {
  background:
    radial-gradient(
      ellipse 75% 65% at 20% 25%,
      rgba(255, 220, 170, 0.32) 0%,
      rgba(255, 210, 160, 0.15) 30%,
      rgba(0, 0, 0, 0) 65%
    ),
    radial-gradient(
      ellipse 80% 70% at 85% 95%,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0) 70%
    ),
    linear-gradient(
      135deg,
      #1f1f1f 0%,
      #151515 35%,
      #0a0a0a 70%,
      #050505 100%
    ) !important;
}

/* 中等屏幕(平板和小笔记本)缩小标题,防止内容溢出 Hero */
@media (max-width: 1100px) {
  .hero__title {
    font-size: clamp(34px, 5.5vw, 64px) !important;
  }
}

/* 小屏(手机)更小,而且增加 hero 高度避免内容挤压 */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    height: auto !important;
  }
  .hero__title {
    font-size: clamp(30px, 7vw, 44px) !important;
  }
  .hero__content {
    bottom: 80px !important;
  }
}

/* ====================================================================
   HERO V2 — 完全独立的极简博物馆暗光 Hero
   所有 class 都以 heroV2 开头,与旧 .hero* 不冲突
   ==================================================================== */

.heroV2 {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  background-color: #0a0a0a;
  color: #f5f0e8;
  display: flex;
  align-items: center;
}

/* 背景:四层叠加,纯 CSS 模拟博物馆暗光 */
.heroV2__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    /* 左上方暖白光晕(主光源) */
    radial-gradient(
      ellipse 70% 60% at 22% 28%,
      rgba(255, 215, 165, 0.35) 0%,
      rgba(255, 200, 150, 0.15) 30%,
      rgba(255, 200, 150, 0) 65%
    ),
    /* 右下方加深 */
    radial-gradient(
      ellipse 80% 70% at 88% 92%,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0) 70%
    ),
    /* 主体对角渐变 */
    linear-gradient(
      135deg,
      #1f1f1f 0%,
      #161616 35%,
      #0a0a0a 70%,
      #050505 100%
    );
}

/* 顶部一层薄薄的展厅顶光 */
.heroV2__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 240, 210, 0.07) 0%, rgba(0, 0, 0, 0) 22%);
  pointer-events: none;
}

/* 四周暗角 */
.heroV2__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

/* 内容区:flex 居中,左对齐文字 */
.heroV2__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}

/* 顶部小标语 */
.heroV2__caption {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 36px;
}

/* 大标题 */
.heroV2__title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 300;
  font-size: clamp(40px, 6.5vw, 86px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: #f5f0e8;
  margin: 0 0 36px 0;
  max-width: 900px;
}

/* 副文案 */
.heroV2__sub {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.78);
  max-width: 480px;
  margin: 0 0 44px 0;
}

/* CTA 按钮容器 */
.heroV2__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* 按钮基础 */
.heroV2__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.heroV2__btn--ghost {
  border: 1px solid rgba(245, 240, 232, 0.5);
  color: #f5f0e8;
  background: transparent;
}
.heroV2__btn--ghost:hover {
  border-color: #f5f0e8;
  background: rgba(245, 240, 232, 0.06);
}

.heroV2__btn--solid {
  background: #f5f0e8;
  color: #0a0a0a;
  border: 1px solid #f5f0e8;
}
.heroV2__btn--solid:hover {
  background: transparent;
  color: #f5f0e8;
}

/* 右下角 SCROLL 指示器 */
.heroV2__scroll {
  position: absolute;
  right: 56px;
  bottom: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
}
.heroV2__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(245, 240, 232, 0.4);
  position: relative;
  overflow: hidden;
}
.heroV2__scroll-line::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: #f5f0e8;
  animation: heroV2ScrollLine 2.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes heroV2ScrollLine {
  0% { top: -40px; }
  100% { top: 40px; }
}

/* 响应式 */
@media (max-width: 900px) {
  .heroV2__inner { padding: 0 32px; }
  .heroV2__scroll { right: 32px; bottom: 32px; }
  .heroV2__sub { font-size: 14px; }
}

@media (max-width: 600px) {
  .heroV2 { min-height: 600px; }
  .heroV2__caption { font-size: 10px; margin-bottom: 24px; }
  .heroV2__title { font-size: clamp(32px, 9vw, 52px); margin-bottom: 24px; }
  .heroV2__sub { margin-bottom: 32px; }
  .heroV2__btn { padding: 16px 24px; font-size: 10px; }
}

/* ========== Footer 1004 Lineage 叙事样式 ========== */
.footer__lineage {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  line-height: 1.8;
  font-style: italic;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.55);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.footer__lineage-line {
  display: block;
}
.footer__year {
  font-family: "Cormorant Garamond", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.05em;
  color: rgba(245, 240, 232, 0.85);
  letter-spacing: 0.06em;
  margin-left: 0.1em;
}

/* ========== Bespoke millennium 副文案 ========== */
.lineage-sub {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
  text-align: center;
  color: rgba(245, 240, 232, 0.65);
  max-width: 680px;
  margin: 20px auto 60px;
  letter-spacing: 0.01em;
}

/* ========== 1004 Lineage 引言章节(Pillars 之前)========== */
.lineage-quote {
  background-color: #f5f0e8;
  padding: 140px 0;
  position: relative;
}
.lineage-quote::before,
.lineage-quote::after {
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  background: rgba(20, 20, 20, 0.25);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.lineage-quote::before { top: 40px; }
.lineage-quote::after { bottom: 40px; }

.lineage-quote__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.lineage-quote__text {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.85;
  color: #1a1a1a;
  letter-spacing: 0.01em;
  font-style: italic;
}
.lineage-quote__year {
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(20, 20, 20, 0.3);
  padding-bottom: 2px;
}

@media (max-width: 768px) {
  .lineage-quote { padding: 80px 0; }
  .lineage-quote::before, .lineage-quote::after { height: 40px; }
  .lineage-quote::before { top: 20px; }
  .lineage-quote::after { bottom: 20px; }
}

/* ============================================================
   Selected Works (动态作品网格) — 嵌入 Collections 章节
   ============================================================ */
.selected-works {
  margin-top: 120px;
  padding-top: 60px;
  border-top: 1px solid rgba(122, 90, 42, 0.15);
}
.selected-works__head {
  text-align: center;
  margin-bottom: 60px;
}
.selected-works__head .caption {
  display: block;
  margin-bottom: 12px;
}
.selected-works__title {
  font-family: "Cormorant Garamond", "Noto Serif TC", Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  color: #2a2018;
  letter-spacing: 1px;
}
.selected-works__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}
.works-loading,
.works-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #a89880;
  font-size: 14px;
}
.works-empty a { color: #7a5a2a; text-decoration: underline; }

.work-card {
  background: #fdfcfa;
  border: 1px solid rgba(122, 90, 42, 0.1);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(122, 90, 42, 0.3);
}
.work-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #efe8da;
  overflow: hidden;
}
.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.work-card:hover .work-card__media img {
  transform: scale(1.04);
}
.work-card__noimg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a89880;
  font-size: 12px;
  letter-spacing: 2px;
}
.work-card__badges {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(20, 16, 12, 0.7);
  color: #fdfcfa;
  font-size: 10px;
  letter-spacing: 1.5px;
  padding: 5px 10px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.work-card__body {
  padding: 24px 22px 26px;
}
.work-card__dynasty {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #7a5a2a;
  margin-bottom: 10px;
}
.work-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  color: #2a2018;
  margin: 0 0 4px;
  line-height: 1.3;
}
.work-card__title-zh {
  font-family: "Noto Serif TC", serif;
  font-size: 14px;
  color: #6a6055;
  margin-bottom: 14px;
}
.work-card__price {
  font-size: 12px;
  letter-spacing: 2px;
  color: #7a5a2a;
  text-transform: uppercase;
  padding-top: 14px;
  border-top: 1px solid rgba(122, 90, 42, 0.12);
  margin-top: 8px;
}

/* ============================================================
   HOMAGE Vault (博物馆级孤品占位)
   ============================================================ */
.homage--vault {
  background: linear-gradient(180deg, #14100c 0%, #1f1812 100%);
  color: #e8dcc4;
  padding: 140px 0;
}
.homage-vault {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.homage-vault .caption {
  color: #c8a96a;
  margin-bottom: 24px;
}
.homage-vault__title {
  font-family: "Cormorant Garamond", "Noto Serif TC", Georgia, serif;
  font-size: 52px;
  font-weight: 300;
  color: #f5ead0;
  letter-spacing: 1px;
  margin-bottom: 32px;
}
.homage-vault__line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c8a96a, transparent);
  margin: 0 auto 40px;
}
.homage-vault__lead {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.8;
  color: #d4c4a4;
  margin-bottom: 18px;
}
.homage-vault__meta {
  margin-top: 50px;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #a89876;
}
.homage-vault__meta .dot {
  margin: 0 12px;
  color: #6a5a3a;
}
.homage-vault__cta {
  display: inline-block;
  margin-top: 50px;
  padding: 16px 36px;
  border: 1px solid #c8a96a;
  color: #f5ead0;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s;
}
.homage-vault__cta:hover {
  background: #c8a96a;
  color: #14100c;
}

/* HOMAGE 区出现实际作品时(目前不会用到,但留着) */
.homage-works-grid .work-card {
  background: rgba(245, 234, 208, 0.04);
  border-color: rgba(200, 169, 106, 0.2);
}
.homage-works-grid .work-card__body {
  color: #e8dcc4;
}
.homage-works-grid .work-card__title {
  color: #f5ead0;
}
.homage-works-grid .work-card__dynasty,
.homage-works-grid .work-card__price {
  color: #c8a96a;
}

/* ============================================================
   Lightbox (作品详情灯箱)
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 8, 6, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
}
.lightbox.hidden { display: none; }

.lightbox__close {
  position: fixed;
  top: 24px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fdfcfa;
  font-size: 24px;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.2); }

.lightbox__inner {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  background: #14100c;
  color: #e8dcc4;
}
@media (max-width: 900px) {
  .lightbox__inner { grid-template-columns: 1fr; }
}

.lightbox__media {
  position: relative;
  background: #000;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lightbox__slides {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__slides img,
.lightbox__slides video,
.lightbox__slides iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 0;
}
.lightbox__empty {
  color: #6a6055;
  font-size: 12px;
  letter-spacing: 2px;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 60px;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 5;
}
.lightbox__nav:hover { background: rgba(0, 0, 0, 0.7); }
.lightbox__nav--prev { left: 0; }
.lightbox__nav--next { right: 0; }

.lightbox__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.lightbox__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
}
.lightbox__dot.active { background: #c8a96a; }

.lightbox__info {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
}
.lightbox__caption {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c8a96a;
  margin-bottom: 16px;
}
.lightbox__title-en {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  font-weight: 300;
  color: #f5ead0;
  margin: 0 0 6px;
  line-height: 1.2;
}
.lightbox__title-zh {
  font-family: "Noto Serif TC", serif;
  font-size: 18px;
  color: #d4c4a4;
  margin-bottom: 16px;
}
.lightbox__dynasty {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a89876;
  margin-bottom: 28px;
}
.lightbox__divider {
  width: 40px;
  height: 1px;
  background: #c8a96a;
  margin-bottom: 28px;
}
.lightbox__desc {
  font-family: Georgia, serif;
  font-size: 15px;
  line-height: 1.8;
  color: #d4c4a4;
  margin-bottom: 28px;
  flex-grow: 1;
}
.lightbox__price {
  font-size: 14px;
  letter-spacing: 2px;
  color: #c8a96a;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.lightbox__enquire {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid #c8a96a;
  color: #f5ead0;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.3s;
}
.lightbox__enquire:hover {
  background: #c8a96a;
  color: #14100c;
}

/* ============================================================
   PROVENANCE & AUTHENTICATION (三层验真叙事章节)
   ============================================================ */
.provenance {
  padding: 140px 0 160px;
  background:
    radial-gradient(ellipse at top, #faf6ec 0%, transparent 60%),
    linear-gradient(180deg, #f7f2e6 0%, #efe8d4 100%);
  position: relative;
  overflow: hidden;
}
.provenance::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, #c8a96a);
}

.provenance__head {
  max-width: 760px;
  margin: 0 auto 90px;
  text-align: center;
}
.provenance__head .caption {
  color: #7a5a2a;
  display: block;
  margin-bottom: 18px;
}
.provenance__title {
  font-family: "Cormorant Garamond", "Noto Serif TC", Georgia, serif;
  font-size: 48px;
  font-weight: 300;
  color: #2a2018;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin: 0 0 32px;
}
.provenance__rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #7a5a2a, transparent);
  margin: 0 auto 36px;
}
.provenance__lead {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.85;
  color: #4a3e30;
  max-width: 640px;
  margin: 0 auto;
}

/* 三栏卡片 */
.provenance__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 100px;
}
@media (max-width: 880px) {
  .provenance__grid { grid-template-columns: 1fr; gap: 28px; }
}

.prov-card {
  position: relative;
  background: rgba(253, 250, 240, 0.6);
  border: 1px solid rgba(122, 90, 42, 0.18);
  padding: 56px 36px 44px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.prov-card:hover {
  background: #fdfaf0;
  border-color: rgba(122, 90, 42, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -20px rgba(122, 90, 42, 0.18);
}

.prov-card__num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: "Noto Serif TC", serif;
  font-size: 28px;
  color: rgba(122, 90, 42, 0.25);
  line-height: 1;
}

.prov-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  color: #7a5a2a;
  border: 1px solid rgba(122, 90, 42, 0.3);
  border-radius: 50%;
}

.prov-card__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: #2a2018;
  margin: 0 0 4px;
  letter-spacing: 0.3px;
}

.prov-card__sub {
  font-family: "Noto Serif TC", serif;
  font-size: 13px;
  letter-spacing: 4px;
  color: #7a5a2a;
  margin-bottom: 22px;
}

.prov-card__text {
  font-family: Georgia, serif;
  font-size: 14px;
  line-height: 1.8;
  color: #5a4f42;
  margin: 0;
}

/* 底部红印章式签名 */
.provenance__seal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding-top: 60px;
  border-top: 1px solid rgba(122, 90, 42, 0.15);
  max-width: 600px;
  margin: 0 auto;
}

.provenance__seal-mark {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif TC", serif;
  font-size: 36px;
  color: #fdfaf0;
  background: #8b2c1f;
  border: 2px solid #8b2c1f;
  box-shadow:
    inset 0 0 0 1px rgba(253, 250, 240, 0.3),
    0 4px 14px rgba(139, 44, 31, 0.2);
  letter-spacing: 0;
  line-height: 1;
}

.provenance__seal-text {
  text-align: left;
}
.provenance__seal-line-en {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: #4a3e30;
  margin-bottom: 4px;
}
.provenance__seal-line-zh {
  font-family: "Noto Serif TC", serif;
  font-size: 14px;
  letter-spacing: 4px;
  color: #7a5a2a;
}

@media (max-width: 600px) {
  .provenance { padding: 100px 0 120px; }
  .provenance__title { font-size: 36px; }
  .provenance__seal { flex-direction: column; gap: 18px; text-align: center; }
  .provenance__seal-text { text-align: center; }
}

/* Bespoke 地点标语 —— 引言下方一行小字 */
.bespoke-locale {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(246, 242, 235, 0.55);
  margin-top: 24px;
  margin-bottom: 100px;
}

/* ===== CONTACT ===== */
.contact { background: var(--kiln-black); color: var(--porcelain); padding: 110px 0 120px; border-top: 1px solid rgba(246,242,235,0.08); }
.contact .caption { margin-bottom: 20px; display: block; }
.contact .h2 { font-size: clamp(30px, 3.6vw, 42px); margin-bottom: 24px; }
.contact__intro { text-align: center; font-size: 14px; line-height: 1.7; color: rgba(246,242,235,0.65); max-width: 440px; margin: 0 auto 56px; }
.contact__form { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
.contact__hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.contact__field { display: flex; flex-direction: column; gap: 6px; }
.contact__field--full { width: 100%; }
.contact__field > span { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(246,242,235,0.45); }
.contact__field input, .contact__field select, .contact__field textarea {
  background: transparent; border: none; border-bottom: 1px solid rgba(246,242,235,0.25);
  color: var(--porcelain); font-family: inherit; font-size: 14px; font-weight: 300;
  padding: 8px 0; outline: none; transition: border-color 0.3s;
  border-radius: 0; -webkit-appearance: none; appearance: none;
}
.contact__field textarea { resize: vertical; min-height: 44px; line-height: 1.6; }
.contact__field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='7' viewBox='0 0 10 7'><path d='M1 1l4 4 4-4' stroke='%23f6f2eb' stroke-width='1' fill='none' opacity='0.5'/></svg>");
  background-repeat: no-repeat; background-position: right 2px center; padding-right: 20px; cursor: pointer;
}
.contact__field select option { background: var(--kiln-black); color: var(--porcelain); }
.contact__field input:focus, .contact__field select:focus, .contact__field textarea:focus { border-bottom-color: var(--porcelain); }
.contact__submit-row { display: flex; justify-content: center; margin-top: 24px; }
#enquirySubmit { padding: 16px 36px; font-size: 11px; }
#enquirySubmit:disabled { opacity: 0.5; cursor: wait; }
.contact__thanks { text-align: center; max-width: 480px; margin: 0 auto; padding: 60px 0; }
.contact__thanks p { font-family: var(--font-serif); font-size: 20px; font-weight: 300; line-height: 1.5; color: rgba(246,242,235,0.85); }
@media (max-width: 768px) {
  .contact { padding: 70px 0 80px; }
  .contact__row { grid-template-columns: 1fr; gap: 22px; }
  .contact__intro { margin-bottom: 44px; }
}
