
* { margin: 0; padding: 0; box-sizing: border-box; }
  html, body { height: 100%; width: 100%; overflow: hidden; }
  
  body {
    font-family: 'Inter', 'Neue Haas Grotesk', 'HarmonyOS Sans', 'OPPOSans', -apple-system, sans-serif;
    background: #030806;
    color: #f2ede4;
  }

  /* ===== 左右滑动布局容器 (共6屏) ===== */
  .scroll-wrapper {
    display: flex;
    width: 600vw;
    height: 100vh;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
  }

  .page {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }

  /* ===== 顺滑、具有光感的深色翡翠渐变背景 (新中式极简光影) ===== */
  .jade-gradient-bg {
    background: linear-gradient(145deg, #020605 0%, #06150e 45%, #030806 100%);
    position: relative;
  }
  .jade-gradient-bg::before {
    content: '';
    position: absolute;
    top: -15%; right: -5%; width: 55%; height: 55%;
    background: radial-gradient(circle, rgba(16, 68, 42, 0.22) 0%, transparent 70%);
    filter: blur(90px);
    pointer-events: none;
  }
  .jade-gradient-bg::after {
    content: '';
    position: absolute;
    bottom: -10%; left: 10%; width: 45%; height: 45%;
    background: radial-gradient(circle, rgba(10, 48, 30, 0.15) 0%, transparent 65%);
    filter: blur(100px);
    pointer-events: none;
  }

  /* ===== 瑞士网格系统 (Swiss Grid) ===== */
  .swiss-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    padding: 120px 80px;
    height: 100%;
  }

  /* 移动端正文独立滚动容器：桌面端不参与布局，子元素仍按 grid 直接排布 */
  .m-scroll-body { display: contents; }

  /* ===== 第1屏：首页 Hero ===== */
  .hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(3, 8, 6, 0.5) 0%, rgba(3, 8, 6, 0.2) 40%, rgba(3, 8, 6, 0.9) 100%);
  }
  .hero__bg video { width: 100%; height: 100%; object-fit: cover; }
  .hero__frame {
    position: absolute; inset: 16px; border: 1px solid rgba(242,237,228,.1);
    border-radius: 20px; z-index: 3; pointer-events: none;
    animation: borderGlowBreath 8s ease-in-out infinite;
  }
  .hero__content {
    position: relative; z-index: 2; height: 100%; display: flex;
    flex-direction: column; padding: 42px 56px 46px;
  }

  /* 固定导航栏 */
  .fixed-nav {
    position: fixed; top: 42px; left: 56px; right: 56px; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav__tabs { display: flex; gap: 8px; align-items: center; }
  .nav__tab {
    font-family: 'Inter', sans-serif; font-size: 13px; letter-spacing: .2em; font-weight: 400; padding: 10px 20px;
    border-radius: 10px; border: 1px solid rgba(242,237,228,.12);
    color: rgba(242,237,228,.65); text-decoration: none;
    background: rgba(3, 8, 6, 0.4); backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); cursor: pointer;
  }
  .nav__tab:hover, .nav__tab--active {
    border-color: rgba(242,237,228,0.9); color: #030806;
    background: rgba(242,237,228,.95);
  }
  .nav__logo {
    position: absolute; left: 50%; transform: translateX(-50%);
    display: flex; align-items: center; gap: 10px; white-space: nowrap;
    font-family: 'Cormorant Garamond', 'Noto Serif SC', serif; font-size: 22px; letter-spacing: 0.2em;
    color: #f2ede4;
  }
  .nav__logo-svg { height: 26px; width: auto; display: block; flex: none; margin-top: -8px; }
  .nav__arrows { display: flex; gap: 8px; align-items: center; }
  .nav__arrow {
    width: 46px; height: 46px; border: 1px solid rgba(242,237,228,.12);
    border-radius: 10px; background: rgba(3, 8, 6, 0.4);
    backdrop-filter: blur(12px); cursor: pointer; display: flex;
    align-items: center; justify-content: center; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav__arrow svg { width: 18px; height: 14px; stroke: #f2ede4; stroke-width: 1.5; fill: none; }
  .nav__arrow:hover { background: rgba(242,237,228,0.15); transform: translateX(4px); }
  .nav__arrow--prev:hover { transform: translateX(-4px); }

  .hero__center { flex: 1; display: flex; align-items: center; justify-content: center; flex-direction: column; }
  .title { font-family: 'Noto Serif SC', 'Cormorant Garamond', 'Songti SC', serif; font-size: clamp(120px, 15vw, 180px); color: #f2ede4; line-height: 0.88; letter-spacing: 0.06em; font-weight: 700; }
  .subtitle { font-family: 'Songti SC', 'Noto Serif CJK SC', 'STSong', 'SimSun', serif; font-size: 16px; letter-spacing: 0.6em; color: rgba(242,237,228,0.6); margin-top: 16px; }

  /* 通用大标题与副标题排版 */
  .page-title {
    grid-column: span 12;
    font-family: 'Noto Serif SC', 'Songti SC', 'STSong', serif;
    font-size: 44px; font-weight: 300; letter-spacing: 0.08em;
    line-height: 1;
    margin-bottom: 44px;
    opacity: 0.5;
  }
  .chinese-title {
    grid-column: span 12;
    font-family: 'Noto Serif SC', 'Songti SC', 'STSong', serif;
    font-size: 44px; font-weight: 300; letter-spacing: 0.08em;
    margin-bottom: 5px;
    color: rgba(242, 237, 228, 0.92);
  }

  /* 品牌故事板块 */
  .story-content { grid-column: 3 / 10; align-self: center; }
  .story-content p {
    font-family: 'Noto Serif SC', '阿里巴巴普惠体', 'HarmonyOS Sans', 'PingFang SC', sans-serif; font-size: 16px; line-height: 2.4; letter-spacing: 0.08em;
    color: rgba(242,237,228,.7); margin-bottom: 28px; font-weight: 300;
  }
  .story-quote {
    font-family: 'Songti SC', 'Noto Serif CJK SC', 'STSong', 'SimSun', serif;
    font-size: 22px; color: #8cd6b0; letter-spacing: 0.2em;
    margin-bottom: 32px; border-left: 2px solid #8cd6b0; padding-left: 20px;
  }

  /* 翡翠原石与高定展示卡片 (瑞士网格对齐) */
  .jade-card {
    grid-column: span 3;
    height: 420px;
    border: 1px solid rgba(242,237,228,.08);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 32px; backdrop-filter: blur(12px);
    position: relative; overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  }
  .jade-card::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 20%, rgba(45,138,89,0.15) 0%, transparent 70%);
    opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
  }
  .jade-card:hover { transform: translateY(-8px); border-color: rgba(140,214,176,0.35); }
  .jade-card:hover::before { opacity: 1; }
  
  .card-category { font-size: 11px; letter-spacing: 0.25em; color: #8cd6b0; margin-bottom: 8px; text-transform: uppercase; }
  .card-title { font-size: 16px; letter-spacing: 0.12em; font-weight: 400; color: #f2ede4; }

  /* 品牌动态/纪事 */
  .journal-item {
    grid-column: 3 / 11;
    display: flex; justify-content: space-between; align-items: baseline;
    border-bottom: 1px solid rgba(242,237,228,0.08); padding-bottom: 24px;
  }
  .journal-date { font-size: 12px; letter-spacing: 0.2em; color: rgba(242,237,228,0.4); }
  .journal-title { font-size: 18px; font-weight: 300; letter-spacing: 0.08em; color: #f2ede4; }

  /* 私人会所/高定中心 */
  .salon-card {
    grid-column: span 4;
    height: 480px;
    border: 1px solid rgba(242,237,228,0.08);
    border-radius: 14px;
    background: rgba(255,255,255,0.02);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 36px; backdrop-filter: blur(12px);
    transition: border-color 0.4s ease;
  }
  .salon-card:hover { border-color: rgba(242,237,228,0.3); }

  /* Footer 尾页 */
  .footer-content {
    position: relative;
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; height: 100%; text-align: center;
  }
  .footer-content .page-title { opacity: 1; }
  .footer-content .title-svg-b {
    animation: titleGlowBreathStrong 4s ease-in-out infinite;
  }
  @keyframes titleGlowBreath {
    0%, 100% { filter: drop-shadow(0 0 2px rgba(140, 214, 176, 0.30)) drop-shadow(0 0 10px rgba(140, 214, 176, 0.12)); }
    50% { filter: drop-shadow(0 0 3px rgba(140, 214, 176, 0.55)) drop-shadow(0 0 16px rgba(140, 214, 176, 0.25)); }
  }
  @keyframes titleGlowBreathStrong {
    0%, 100% { filter: drop-shadow(0 0 3px rgba(140,214,176,0.35)) drop-shadow(0 0 12px rgba(140,214,176,0.15)); }
    50% { filter: drop-shadow(0 0 6px rgba(140,214,176,0.90)) drop-shadow(0 0 24px rgba(140,214,176,0.55)) drop-shadow(0 0 50px rgba(140,214,176,0.25)); }
  }

  @keyframes borderGlowBreath {
    0%, 100% { box-shadow: 0 0 0 0 rgba(140,214,176,0); border-color: rgba(242,237,228,0.08); }
    50% { box-shadow: 0 0 20px 4px rgba(140,214,176,0.25), 0 0 40px 8px rgba(140,214,176,0.10); border-color: rgba(140,214,176,0.45); }
  }
  /* ===== 页面进入序贯动画 ===== */
  .stagger-in > * { opacity: 0; transform: translateY(24px); }
  .stagger-in.reveal > * { 
    animation: staggerFadeIn 0.7s cubic-bezier(0.16,1,0.3,1) forwards; 
  }
  .stagger-in.reveal > *:nth-child(1) { animation-delay: 0ms; }
  .stagger-in.reveal > *:nth-child(2) { animation-delay: 120ms; }
  .stagger-in.reveal > *:nth-child(3) { animation-delay: 240ms; }
  .stagger-in.reveal > *:nth-child(4) { animation-delay: 360ms; }
  .stagger-in.reveal > *:nth-child(5) { animation-delay: 480ms; }
  .stagger-in.reveal > *:nth-child(6) { animation-delay: 600ms; }
  @keyframes staggerFadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  /* ===== 文字逐字 Mask Reveal ===== */
  .mask-reveal-word { display: inline-block; overflow: hidden; vertical-align: bottom; }
  .mask-reveal-word span { display: inline-block; transform: translateY(100%); opacity: 0; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease; }
  .mask-reveal-word.revealed span { transform: translateY(0); opacity: 1; }


  /* ===== 移植补充样式 ===== */
  .hero__center .title { font-size: clamp(120px, 15vw, 180px); line-height: 0.88; }
  .title-svg-wrap { display: inline-flex; flex-direction: column; align-items: center; gap: 2px; }
  .title-svg-a, .title-svg-b { display: block; height: 0.4em; width: auto; }
  .hero__bottom { position: absolute; bottom: 44px; left: 56px; right: 56px; z-index: 2; }
  .desc { display: flex; justify-content: flex-end; gap: 48px; }
  .desc__col { max-width: 300px; }
  .desc__col p { font-size: 11px; line-height: 1.7; letter-spacing: 0.08em; color: rgba(242,237,228,.45); }

  /* 品牌美学 */
  .story-content .manifesto-word { color: #8cd6b0; font-family: 'Noto Serif SC', 'Songti SC', 'STSong', serif; font-size: 17px; letter-spacing: 0.1em; }
  .story-content p.manifesto-line { font-family: 'Noto Serif SC', '阿里巴巴普惠体', 'HarmonyOS Sans', 'PingFang SC', sans-serif; font-size: 14px; line-height: 2.0; letter-spacing: 0.08em; color: rgba(242,237,228,.72); margin-bottom: 14px; font-weight: 300; }
  .story-content p.manifesto-end { color: #8cd6b0; font-size: 14px; letter-spacing: 0.3em; margin-top: 4px; }
  .story-content p.totem-line { font-family: 'Noto Serif SC', '阿里巴巴普惠体', 'HarmonyOS Sans', 'PingFang SC', sans-serif; font-size: 13px; line-height: 2.0; letter-spacing: 0.06em; color: rgba(242,237,228,.62); margin-bottom: 12px; font-weight: 300; }
  .brand-story-image { margin: 18px 0 14px; border-radius: 14px; overflow: hidden; border: 1px solid rgba(242,237,228,.08); animation: borderGlowBreath 8s ease-in-out infinite; }
  .brand-story-image img { display: block; width: 100%; height: 386px; object-fit: cover; }
  .view-more-link { display: inline-flex; align-items: center; gap: 10px; color: #8cd6b0; text-decoration: none; font-size: 12px; letter-spacing: .2em; margin-top: 6px; transition: color .3s ease, gap .3s ease; }
  .view-more-link:hover { color: #a8e0c0; gap: 14px; }
  .view-more-link svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 1.5; fill: none; transition: transform .3s ease; }
  .view-more-link:hover svg { transform: translateX(3px); }

  /* 产品列表卡片 */
  .jade-card .card-list { margin-top: 14px; display: flex; flex-direction: column; gap: 9px; }
  .jade-card .card-list div { font-family: 'Noto Serif SC', '阿里巴巴普惠体', 'HarmonyOS Sans', 'PingFang SC', sans-serif; font-size: 12.5px; line-height: 2.0; letter-spacing: 0.08em; color: rgba(242,237,228,.55); font-weight: 300; }
  .jade-card .card-list div::before { content: '· '; color: #8cd6b0; }
  .collections-footer { grid-column: 3 / 11; display: flex; justify-content: center; align-items: center; margin-top: 18px; }

  /* 公司动态 */
  .company-page.swiss-grid { padding-top: 120px; padding-bottom: 40px; }
  .journal-featured { grid-column: 3 / 11; display: grid; grid-template-columns: 5fr 6fr; gap: 32px; align-items: center; padding: 18px; border: 1px solid rgba(242,237,228,.12); border-radius: 18px; background: linear-gradient(135deg, rgba(140,214,176,.06), rgba(242,237,228,.02)); transition: border-color .4s ease; animation: borderGlowBreath 8s ease-in-out infinite; }
  .journal-featured:hover { border-color: rgba(140,214,176,.35); }
  .journal-featured .journal-body { display: flex; flex-direction: column; gap: 8px; }
  .journal-featured .journal-meta { display: flex; align-items: center; gap: 12px; }
  .journal-featured .journal-tag { font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: .15em; padding: 3px 10px; border-radius: 3px; background: rgba(140,214,176,.15); color: #8cd6b0; border: 1px solid rgba(140,214,176,.3); }
  .journal-featured .journal-title { font-family: 'Noto Serif SC', serif; font-size: 21px; letter-spacing: 0.04em; color: #f2ede4; font-weight: 400; line-height: 1.4; }
  .journal-featured .journal-excerpt { font-family: 'Noto Serif SC', '阿里巴巴普惠体', 'HarmonyOS Sans', 'PingFang SC', sans-serif; font-size: 13.5px; line-height: 2.0; color: rgba(242,237,228,.55); font-weight: 300; letter-spacing: 0.05em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .journal-featured .journal-date { font-size: 12px; letter-spacing: 0.2em; color: rgba(242,237,228,.45); }
  .journal-featured .journal-readmore { font-size: 13px; letter-spacing: .15em; color: #8cd6b0; display: inline-flex; align-items: center; gap: 8px; transition: gap .3s ease; }
  .journal-featured:hover .journal-readmore { gap: 14px; }
  .journal-list { grid-column: 3 / 11; display: flex; flex-direction: column; gap: 0; }
  .journal-list .journal-item { display: flex; align-items: center; gap: 16px; padding: 8px 4px; border-bottom: 1px solid rgba(242,237,228,.1); cursor: pointer; transition: padding-left .3s ease, background .3s ease; }
  .journal-list .journal-item:last-child { border-bottom: none; }
  .journal-list .journal-item:hover { padding-left: 12px; background: linear-gradient(90deg, rgba(140,214,176,.08), transparent 70%); }
  .journal-index { font-family: 'Inter', sans-serif; font-size: 16px; letter-spacing: .1em; color: rgba(140,214,176,.6); width: 30px; flex-shrink: 0; }
  .journal-list .journal-item .journal-title { flex: 1; font-size: 16px; letter-spacing: 0.06em; color: #f2ede4; transition: color .3s ease; }
  .journal-list .journal-item:hover .journal-title { color: #8cd6b0; }
  .journal-list .journal-item .journal-date { font-size: 12px; letter-spacing: 0.2em; color: rgba(242,237,228,.4); white-space: nowrap; }
  .journal-arrow { color: rgba(242,237,228,.3); font-size: 14px; transition: transform .3s ease, color .3s ease; }
  .journal-list .journal-item:hover .journal-arrow { transform: translateX(4px); color: #8cd6b0; }

  /* 门店展示 */
  .salon-card { position: relative; overflow: hidden; }
  .salon-card img.salon-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .35; transition: opacity .5s ease, transform .5s ease; }
  .salon-card:hover img.salon-img { opacity: .55; transform: scale(1.04); }
  .salon-card .salon-body { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; }

  /* Footer */
  .footer-links { display: flex; gap: 120px; text-align: left; padding: 36px 28px; margin-bottom: 56px; }
  .footer-links h5 { font-size: 13px; letter-spacing: .3em; color: rgba(242,237,228,.45); margin-bottom: 30px; font-weight: 400; }
  .footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 20px; padding: 0; }
  .footer-links a, .footer-links li { font-size: 14px; letter-spacing: .12em; color: rgba(242,237,228,.75); text-decoration: none; cursor: pointer; transition: color .3s ease; }
  .footer-links a:hover, .footer-links li:hover { color: #8cd6b0; }
  .footer-swiper__arrow { display: none; }
.m-page-footer { display: none; }
  .footer-copy { position: fixed; bottom: 75px; left: 0; right: 0; width: auto; margin: 0; font-size: 11px; opacity: .45; letter-spacing: 0.2em; text-align: center; z-index: 120; }
  .footer-icp { position: fixed; bottom: 55px; left: 0; right: 0; width: auto; display: block; font-size: 11px; color: rgba(242,237,228,.5); text-decoration: none; letter-spacing: 0.1em; text-align: center; z-index: 120; transition: color .3s ease; }
  .footer-icp:hover { color: #8cd6b0; }

  /* ===== 品牌细节：SINCE 2020（左下角固定，避开 ICP 底部居中文字） ===== */
  body::after { content: 'SINCE 2020'; position: fixed; left: 28px; bottom: 24px; z-index: 80; font-family: 'Cormorant Garamond', serif; font-size: 11px; letter-spacing: 0.35em; color: rgba(242,237,228,0.35); opacity: 0; animation: sinceFadeIn 1s ease 2s forwards; pointer-events: none; user-select: none; }
  @keyframes sinceFadeIn { from { opacity: 0; } to { opacity: 1; } }


  /* ============ 背景移植：原站黑色背景 + 底纹（from 0514璞黛网站/08/index.html） ============ */
  :root {
    --pattern-body: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20id%3D%22_%E5%9B%BE%E5%B1%82_1%22%20data-name%3D%22%E5%9B%BE%E5%B1%82%201%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20200%20200%22%3E%0A%20%20%3Cdefs%3E%0A%20%20%20%20%3Cstyle%3E%0A%20%20%20%20%20%20.cls-1%20%7B%0A%20%20%20%20%20%20%20%20fill%3A%20%23111111%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%3C%2Fstyle%3E%0A%20%20%3C%2Fdefs%3E%0A%20%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M123.54%2C76.29c11.12-3.29%2C24.03%2C5.26%2C27.8%2C15.79%2C6.03%2C16.86-10.64%2C35-27.8%2C30.83%2C3.97%2C39.83-51.12%2C39.79-47.49%2C0-8.88%2C3.09-19.46-3.29-24.54-10.41-12.46-17.47%2C5.62-40.95%2C25.41-36.21-3.32-10.03%2C3.45-22.22%2C12.67-26.6%2C18.5-8.79%2C36.52%2C7.44%2C33.95%2C26.6ZM119.22%2C80.6c1.93-8.15%2C2.3-12.06-3.1-18.91-9.31-11.8-24.8-11.1-33.36%2C1.02-3.72%2C5.28-4.42%2C7.5-2.98%2C13.74.19.83%2C1.24%2C1.62%2C1.33%2C2.15.53%2C3.27-3.44.42-5.46.26-15.83-1.28-22.84%2C10.86-21.08%2C25.39%2C1.48%2C12.2%2C9.27%2C17.05%2C20.98%2C15.99%2C1.83-.17%2C6.08-2.96%2C5.56.36-.28%2C1.82-2.55%2C4.14-2.53%2C7.92.05%2C8.72%2C12.38%2C17.96%2C20.49%2C18.23%2C6.92.23%2C15.27-5%2C19.28-10.47%2C4.75-6.47%2C1.85-10.7.87-17.69%2C15.79%2C7.27%2C30.6-9.39%2C25.45-25.03-3.05-9.27-15.91-18.29-25.45-12.96Z%22%2F%3E%0A%20%20%3Cg%3E%0A%20%20%20%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M117.83%2C100.81c-.12-.18-.12-1.49%2C0-1.67.3-.47%2C9.46-2.96%2C10.79-3.01%2C8.64-.32%2C8.63%2C9.07-2.07%2C7.39-1.03-.16-8.47-2.33-8.72-2.71Z%22%2F%3E%0A%20%20%20%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M81.56%2C100.81c-.19.3-6.09%2C2.13-6.84%2C2.25-2.71.43-9.59.93-9.59-3.08%2C0-6.07%2C15.69-1.98%2C16.43-.83.12.18.12%2C1.49%2C0%2C1.67Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%20%20%3Cg%3E%0A%20%20%20%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M101.01%2C82.17c-.18.12-1.49.12-1.67%2C0-.47-.3-2.96-9.46-3.01-10.79-.32-8.64%2C9.07-8.63%2C7.39%2C2.07-.16%2C1.03-2.33%2C8.47-2.71%2C8.72Z%22%2F%3E%0A%20%20%20%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M101.01%2C118.44c.3.19%2C2.13%2C6.09%2C2.25%2C6.84.43%2C2.71.93%2C9.59-3.08%2C9.59-6.07%2C0-1.98-15.69-.83-16.43.18-.12%2C1.49-.12%2C1.67%2C0Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%20%20%3Cg%3E%0A%20%20%20%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M109.65%2C109.58c.47-.51%2C9.36%2C4%2C6.18%2C6.49-2.46%2C1.92-6.95-5.65-6.18-6.49Z%22%2F%3E%0A%20%20%20%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M90.47%2C90.4c.51-.47-4-9.36-6.49-6.18-1.92%2C2.46%2C5.65%2C6.95%2C6.49%2C6.18Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%20%20%3Cg%3E%0A%20%20%20%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M109.71%2C90.4c-.51-.47%2C4-9.36%2C6.49-6.18%2C1.92%2C2.46-5.65%2C6.95-6.49%2C6.18Z%22%2F%3E%0A%20%20%20%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M90.53%2C109.58c-.47-.51-9.36%2C4-6.18%2C6.49%2C2.46%2C1.92%2C6.95-5.65%2C6.18-6.49Z%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%20%20%3Cpath%20class%3D%22cls-1%22%20d%3D%22M100.12%2C92.18c-4.26%2C0-7.71%2C3.45-7.71%2C7.71s3.45%2C7.71%2C7.71%2C7.71%2C7.71-3.45%2C7.71-7.71-3.45-7.71-7.71-7.71ZM100.12%2C104.06c-2.3%2C0-4.17-1.87-4.17-4.17s1.87-4.17%2C4.17-4.17%2C4.17%2C1.87%2C4.17%2C4.17-1.87%2C4.17-4.17%2C4.17Z%22%2F%3E%0A%20%20%3Cg%3E%0A%20%20%20%20%3Ccircle%20class%3D%22cls-1%22%20cx%3D%22112.61%22%20cy%3D%2299.89%22%20r%3D%221.41%22%2F%3E%0A%20%20%20%20%3Ccircle%20class%3D%22cls-1%22%20cx%3D%2287.39%22%20cy%3D%2299.89%22%20r%3D%221.41%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%20%20%3Cg%3E%0A%20%20%20%20%3Ccircle%20class%3D%22cls-1%22%20cx%3D%22100%22%20cy%3D%2287.28%22%20r%3D%221.41%22%2F%3E%0A%20%20%20%20%3Ccircle%20class%3D%22cls-1%22%20cx%3D%22100%22%20cy%3D%22112.5%22%20r%3D%221.41%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
    --tile-size: 150px;
    --half-tile: 75px;
  }
  html, body { background-color: #0a0a0a !important; background: #0a0a0a !important; }
  /* 内容屏背景：原站 .page-body 渐变 */
  .jade-gradient-bg {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #111111 0%, #000000 55%, #0d0d0d 100%) !important;
  }
  /* 底纹层（替代原绿色光斑 ::before） */
  .jade-gradient-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: var(--pattern-body), var(--pattern-body);
    background-position: 0 0, var(--half-tile) var(--half-tile);
    background-repeat: repeat, repeat;
    background-size: var(--tile-size) var(--tile-size), var(--tile-size) var(--tile-size);
    opacity: 0.20;
    mix-blend-mode: screen;
    filter: none;
    pointer-events: none;
    z-index: -1;
  }
  /* 移除原有底部光斑 ::after */
  .jade-gradient-bg::after { display: none !important; }
  /* 首页 hero 遮罩调整为黑色系，贴合原站黑底 */
  .hero__bg {
    background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.9) 100%) !important;
  }


  /* ===== 系列臻品产品卡（新设计：jade-card 高端翡翠风，作用域限定 products-page） ===== */
  .products-page .jade-card { cursor: pointer; grid-column: span 3; height: 485px; border: 1px solid rgba(242,237,228,.1); border-radius: 16px; background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.005) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; backdrop-filter: blur(16px); position: relative; overflow: hidden; animation: borderGlowBreath 8s ease-in-out infinite; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease; }
  .products-page .jade-card::before { content: none; }
  .products-page .jade-card:hover { transform: translateY(-8px); border-color: rgba(140,214,176,0.45); box-shadow: 0 12px 36px rgba(140,214,176,0.15); animation: none; }
  .products-page .product-img-holder { position: absolute; top: 0; left: 0; width: 100%; height: 320px; background-size: cover; background-position: center; border-bottom: 1px solid rgba(242,237,228,.08); transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
  .products-page .product-img-holder::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.9) 100%); opacity: 0.6; transition: opacity 0.5s ease; }
  .products-page .jade-card:hover .product-img-holder { transform: scale(1.06); }
  .products-page .card-category { font-family: 'Inter', sans-serif; font-size: 11px; letter-spacing: 0.25em; color: #8cd6b0; margin-top: 340px; margin-bottom: 6px; text-transform: uppercase; }
  .products-page .card-title { font-family: 'Noto Serif SC', serif; font-size: 16px; letter-spacing: 0.1em; font-weight: 400; color: #f2ede4; line-height: 1.4; transition: transform 0.4s ease; }
  .products-page .jade-card:hover .card-title { transform: translateY(-2px); }
  .products-page .product-price { font-family: 'Inter', sans-serif; margin-top: 10px; font-size: 13px; letter-spacing: 0.08em; color: #8cd6b0; transition: opacity 0.3s ease; }
  .products-page .jade-card:hover .product-price { opacity: 0; }
  .products-page .jade-card::after { content: '查看典藏详情'; position: absolute; left: 0; right: 0; bottom: 24px; text-align: center; font-size: 12px; letter-spacing: 0.3em; color: #8cd6b0; opacity: 0; transform: translateY(10px); transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1); pointer-events: none; }
  .products-page .jade-card:hover::after { opacity: 1; transform: translateY(0); }
  .products-page .collections-footer { grid-column: span 12; display: flex; justify-content: center; align-items: center; margin-top: 10px; }
  .products-page .view-more-link { display: inline-flex; align-items: center; gap: 10px; color: #f2ede4; text-decoration: none; font-size: 12px; letter-spacing: 0.25em; border: 1px solid rgba(140, 214, 176, 0.3); border-radius: 999px; padding: 12px 36px; background: rgba(140,214,176,0.03); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
  .products-page .view-more-link:hover { color: #8cd6b0; border-color: #8cd6b0; background: rgba(140,214,176,0.08); gap: 16px; }
  .products-page .view-more-link svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 1.5; fill: none; transition: transform 0.3s ease; }
  .products-page .view-more-link:hover svg { transform: translateX(4px); }

  /* ===== 第3屏产品卡片序贯入场（stagger-card，120ms 递增） ===== */
  .products-page.swiss-grid > .stagger-card { animation: none; will-change: opacity, transform; }
  .products-page .stagger-card { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(0.16,1,0.3,1), transform .7s cubic-bezier(0.16,1,0.3,1), border-color .4s ease, box-shadow .4s ease; }
  .products-page .stagger-card.stagger-0 { transition-delay: 0ms; }
  .products-page .stagger-card.stagger-1 { transition-delay: 120ms; }
  .products-page .stagger-card.stagger-2 { transition-delay: 240ms; }
  .products-page .stagger-card.stagger-3 { transition-delay: 360ms; }
  .products-page .stagger-card.revealed { opacity: 1; transform: translateY(0); }
  .products-page .stagger-card:hover { transition-delay: 0ms; }

  /* ===== 移植：公司动态封面 ===== */
  .journal-cover { width: 100%; border-radius: 14px; overflow: hidden; border: 1px solid rgba(242,237,228,.08); }
  .journal-cover img { display: block; width: 100%; height: 240px; object-fit: cover; transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1); }
  .journal-cover:hover img { transform: scale(1.03); }

  /* ===== 移植：产品详情弹窗（原版深色版） ===== */
  .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0,0,0,.65); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); z-index: 100000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .4s cubic-bezier(.16,1,.3,1), visibility .4s; }
  .modal-overlay.open { opacity: 1; visibility: visible; }
  .modal-window { background: rgba(0,0,0,.92); color: #f4f1ea; border: 1px solid rgba(244,241,234,.14); border-radius: 20px; box-shadow: 0 30px 90px rgba(0,0,0,.55); position: relative; max-height: 90vh; overflow-y: auto; opacity: 0; transform: translateY(30px) scale(.98); transition: opacity .5s cubic-bezier(.16,1,.3,1), transform .5s cubic-bezier(.16,1,.3,1); }
  .modal-overlay.open .modal-window { opacity: 1; transform: translateY(0) scale(1); }
  .modal-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: rgba(244,241,234,.6); font-size: 1.8rem; cursor: pointer; z-index: 10; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all .3s; line-height: 1; }
  .modal-close:hover { color: #d4b98a; background: rgba(212,185,138,.1); }
  .product-modal-window { width: 1100px; max-width: 92vw; display: flex; flex-direction: column; padding: 0; overflow: hidden; }
  .modal-product-top { display: flex; height: 62%; min-height: 380px; padding: 40px; gap: 40px; box-sizing: border-box; flex-shrink: 0; }
  .modal-product-image { flex: 0 0 45%; border: 1px solid rgba(244,241,234,.14); border-radius: 16px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
  .modal-product-image img { max-width: 90%; max-height: 90%; object-fit: contain; }
  .modal-product-info { flex: 1; display: flex; flex-direction: column; justify-content: flex-start; gap: 20px; min-width: 0; }
  .modal-product-name { font-family: 'Noto Serif SC', 'Songti SC', 'STSong', serif; font-size: 44px; font-weight: 300; letter-spacing: 0.08em; color: #f4f1ea; margin: 0; line-height: 1.4; }
  .modal-product-attrs { display: flex; gap: 30px; }
  .modal-product-attrs .attr-item { font-size: .9rem; color: rgba(244,241,234,.62); letter-spacing: 1px; }
  .modal-product-attrs .attr-item span { color: #d4b98a; margin-right: 6px; font-weight: 500; }
  .modal-product-price { font-size: 1.3rem; color: #d4b98a; letter-spacing: 1px; padding: 12px 0; border-top: 1px solid rgba(244,241,234,.14); border-bottom: 1px solid rgba(244,241,234,.14); font-weight: 600; }
  .modal-product-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 2px 0 0; }
  .product-badge { font-size: .78rem; color: #d4b98a; background: rgba(212,185,138,.08); border: 1px solid rgba(212,185,138,.35); border-radius: 999px; padding: 5px 14px; letter-spacing: 1px; white-space: nowrap; }
  .btn-purchase-consult { display: inline-block; align-self: flex-start; margin-top: 2px; padding: 13px 40px; font-size: .95rem; letter-spacing: 4px; color: #121212; background: linear-gradient(135deg, #d4b98a, #c9a76b); border: none; border-radius: 999px; cursor: pointer; font-weight: 600; transition: all .3s; }
  .btn-purchase-consult:hover { filter: brightness(1.12); box-shadow: 0 6px 20px rgba(212,185,138,.3); }
  .modal-fav-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
  .btn-fav-product { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; margin-top: 2px; padding: 13px 26px; font-size: .95rem; letter-spacing: 3px; color: #d4b98a; background: transparent; border: 1px solid rgba(212,185,138,.5); border-radius: 999px; cursor: pointer; font-weight: 500; transition: all .3s; }
  .btn-fav-product:hover { background: rgba(212,185,138,.1); border-color: #d4b98a; color: #f2ede4; }
  .btn-fav-product.active { background: rgba(212,185,138,.18); border-color: #d4b98a; color: #d4b98a; }
  /* 规格项（JS 渲染的 spec-row 结构） */
  .spec-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 10px 2px; font-family: 'Noto Serif SC', 'Songti SC', 'STSong', serif; font-size: .88rem; letter-spacing: 1px; line-height: 1.6; }
  .spec-row + .spec-row { border-top: 1px dashed rgba(244,241,234,.08); }
  .spec-label { flex-shrink: 0; color: rgba(212,185,138,.6); letter-spacing: 2px; }
  .spec-value { color: rgba(244,241,234,.85); text-align: right; }
  .modal-product-thumbs { display: flex; gap: 12px; margin-top: auto; }
  .modal-product-thumbs .thumb { width: 76px; height: 76px; border: 1px solid rgba(244,241,234,.14); border-radius: 10px; cursor: pointer; overflow: hidden; transition: border-color .3s; flex-shrink: 0; }
  .modal-product-thumbs .thumb:hover { border-color: #d4b98a; }
.thumb.active { border-color: #d4b98a; }
  .modal-product-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }
  .modal-product-bottom { flex: 1; min-height: 0; overflow-y: auto; background: rgba(255,255,255,.02); border-top: 1px solid rgba(244,241,234,.14); padding: 30px 40px; box-sizing: border-box; }
  .modal-product-bottom h4 { font-family: 'Noto Serif SC', 'Songti SC', 'STSong', serif; font-size: 1rem; font-weight: 500; color: #d4b98a; letter-spacing: 4px; margin: 0 0 18px 0; display: flex; align-items: center; gap: 14px; }
  .modal-product-bottom h4::after { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(212,185,138,.35), transparent); }
  .modal-product-bottom .product-desc { font-family: 'Noto Serif SC', 'Songti SC', 'STSong', serif; font-size: .88rem; color: rgba(244,241,234,.7); line-height: 2.1; letter-spacing: 1px; margin: 0; }
  .modal-product-specs { margin: 16px 0; padding: 14px 0; border-top: 1px solid rgba(244,241,234,.12); border-bottom: 1px solid rgba(244,241,234,.12); }
  .modal-product-specs h5 { font-family: 'Noto Serif SC', 'Songti SC', 'STSong', serif; font-size: .9rem; font-weight: 400; color: #d4b98a; letter-spacing: 3px; margin: 0 0 12px 0; }
  .spec-table { width: 100%; border-collapse: collapse; font-size: .88rem; letter-spacing: 1px; font-family: 'Noto Serif SC', 'Songti SC', 'STSong', serif; }
  .spec-table td { padding: 10px 10px; border-bottom: 1px solid rgba(244,241,234,.08); color: rgba(244,241,234,.82); line-height: 1.6; }
  .spec-table tr:last-child td { border-bottom: none; }
  .spec-table td:first-child { color: rgba(212,185,138,.55); width: 25%; letter-spacing: 2px; }
  @media (max-width: 768px) {
    .product-modal-window { width: 92vw; max-width: 92vw; height: auto; max-height: 70vh; border-radius: 18px; overflow-y: auto; overflow-x: hidden; }
    .modal-product-top { flex-direction: column; height: auto; min-height: 0; flex: none; padding: 20px 16px 0; gap: 16px; }
    .modal-product-image { flex: none; width: 100%; aspect-ratio: 1/1; }
    .modal-product-info { gap: 12px; }
    .modal-product-name { font-size: 1.25rem; }
    .modal-product-price { font-size: 1.1rem; padding: 10px 0; }
    .btn-purchase-consult { width: 100%; text-align: center; padding: 14px 20px; }
    .modal-product-bottom { flex: none; padding: 16px; }
    .modal-product-bottom h4 { font-size: 0.95rem; margin-bottom: 12px; }
    .modal-product-specs { margin: 12px 0; padding: 10px 0; }
    .spec-table td { padding: 6px 8px; }
    .modal-product-thumbs { margin-top: 4px; }
    .modal-product-thumbs .thumb { width: 56px; height: 56px; }
    .product-modal-window .modal-close { position: sticky; top: 12px; align-self: flex-end; z-index: 20; background: rgba(0,0,0,.45); border-radius: 50%; margin: 10px 10px -52px 0; }
  }

  /* ===== 移植：门店展示滚动播放 ===== */
  .store-carousel { grid-column: 2 / 12; display: flex; align-items: center; justify-content: center; gap: 5%; border: 1px solid rgba(242,237,228,.1); border-radius: 16px; padding: 32px 36px; box-sizing: border-box; align-self: center; animation: borderGlowBreath 8s ease-in-out infinite; }
  .carousel-viewport { width: 62%; height: 500px; overflow: hidden; border-radius: 14px; position: relative; border: 1px solid rgba(242,237,228,.1); }
  .carousel-wrapper { display: flex; width: 200%; height: 100%; transition: transform .8s cubic-bezier(.25,1,.5,1); }
  .carousel-slide { width: 50%; height: 100%; position: relative; }
  .store-inner-carousel { width: 100%; height: 100%; overflow: hidden; position: relative; }
  .inner-track { display: flex; width: 300%; height: 100%; transition: transform .6s cubic-bezier(.25,1,.5,1); }
  .inner-track img { width: calc(100% / 3); height: 100%; object-fit: cover; flex-shrink: 0; }
  .carousel-nav-labels { display: flex; flex-direction: column; gap: 100px; width: 33%; }
  .nav-label-item { cursor: pointer; padding: 16px 18px; border-left: 3px solid rgba(242,237,228,.15); border-radius: 0 10px 10px 0; transition: all .4s cubic-bezier(0.16,1,0.3,1); display: flex; flex-direction: column; gap: 5px; }
  .nav-label-item:hover { border-left-color: #8cd6b0; }
  .nav-label-item.active { border-left-color: #8cd6b0; padding-left: 26px; }
  .label-num { font-size: 11px; color: rgba(242,237,228,.5); letter-spacing: .1em; }
  .label-text { font-family: 'Noto Serif SC', 'Songti SC', 'STSong', serif; font-size: 15px; color: rgba(242,237,228,.8); font-weight: 400; transition: color .3s; letter-spacing: .06em; }
  .nav-label-item.active .label-text { color: #8cd6b0; }


  /* ===== 门店展示屏：轮播垂直居中 ===== */
  .store-page { grid-template-rows: auto 1fr; }
  .store-page .store-carousel { margin: auto 0; }

  .title-group {
    grid-column: span 12;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .title-group .chinese-title {
    margin-bottom: 0;
  }
  .title-group .page-title {
    margin-bottom: 5px;
    opacity: 1;
  }

  /* ===== 移植：公司动态文章弹窗（from 原版 08/index.html，深色版） ===== */
  .article-modal-window { width: 1250px; max-width: 94vw; padding: 60px 80px 50px 80px; box-sizing: border-box; border-radius: 20px; }
  .article-modal-window .article-modal-title { font-size: 2rem; font-weight: 300; color: #f4f1ea; letter-spacing: 2px; margin: 0 0 16px 0; line-height: 1.4; text-align: center; }
  .article-modal-meta { font-size: 0.9rem; color: #d4b98a; letter-spacing: 1px; margin-bottom: 35px; padding-bottom: 20px; border-bottom: 1px solid rgba(244,241,234,.14); text-align: center; }
  .article-modal-body { font-size: 1.05rem; color: rgba(244,241,234,.8); line-height: 2.2; letter-spacing: 1.5px; max-width: 900px; margin: 0 auto; text-align: justify; }
  .article-modal-body p { margin: 0 0 24px 0; text-indent: 2em; }
  .article-modal-body strong { color: #f4f1ea; font-weight: 400; border-bottom: 1px solid #d4b98a; }
  .article-interactions { max-width: 900px; margin: 40px auto 0 auto; padding: 24px 0; border-top: 1px solid rgba(244,241,234,.14); border-bottom: 1px solid rgba(244,241,234,.14); display: flex; justify-content: space-between; align-items: center; }
  .interaction-like-btn { display: flex; align-items: center; gap: 8px; cursor: pointer; padding: 10px 24px; border: 1px solid rgba(244,241,234,.3); border-radius: 30px; font-size: 0.9rem; background: transparent; transition: all 0.3s; user-select: none; color: rgba(244,241,234,.7); }
  .interaction-like-btn:hover { border-color: #d4b98a; color: #d4b98a; transform: translateY(-2px); }
  .interaction-like-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); }
  .interaction-like-btn:hover svg { transform: scale(1.15); }
  .interaction-like-btn.liked svg { fill: #d4b98a; stroke: #d4b98a; }
  .interaction-share-group { display: flex; align-items: center; gap: 14px; font-size: 0.88rem; color: rgba(244,241,234,.6); }
  .share-platform { cursor: pointer; padding: 6px 14px; border: 1px solid rgba(244,241,234,.2); border-radius: 4px; background: transparent; transition: all 0.3s; color: rgba(244,241,234,.65); }
  .share-platform:hover { border-color: #f4f1ea; color: #f4f1ea; }
  .article-comments-block { max-width: 900px; margin: 50px auto 20px auto; }
  .article-comments-block h3 { font-size: 1.2rem; font-weight: 400; color: #f4f1ea; margin: 0 0 24px 0; letter-spacing: 2px; }
  .comment-input-wrap { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
  .comment-input-wrap textarea { width: 100%; height: 110px; padding: 16px; box-sizing: border-box; border: 1px solid rgba(244,241,234,.25); border-radius: 12px; background: rgba(255,255,255,.03); color: #f4f1ea; font-family: inherit; font-size: 0.95rem; resize: none; outline: none; transition: border-color 0.3s; }
  .comment-input-wrap textarea:focus { border-color: #d4b98a; box-shadow: 0 0 0 1px rgba(212,185,138,.4); }
  .comment-submit-btn { align-self: flex-end; background: rgba(244,241,234,.92); color: #0a0a0a; border: none; padding: 12px 30px; border-radius: 12px; cursor: pointer; font-size: 0.9rem; letter-spacing: 1px; transition: all 0.3s; }
  .comment-submit-btn:hover { background: #d4b98a; }
  .comments-display-list { display: flex; flex-direction: column; gap: 18px; }
  .comment-node { padding: 20px; background: transparent; border-radius: 14px; border: 1px solid rgba(244,241,234,.14); }
  .comment-node-meta { display: flex; justify-content: space-between; font-size: 0.82rem; margin-bottom: 10px; }
  .comment-node-user { font-weight: 500; color: rgba(244,241,234,.85); }
  .comment-node-time { color: rgba(244,241,234,.45); }
  .comment-node-text { font-size: 0.92rem; line-height: 1.6; color: rgba(244,241,234,.7); }
  .article-modal-nav { display: flex; justify-content: space-between; max-width: 900px; margin: 40px auto 0 auto; padding-top: 24px; border-top: 1px solid rgba(244,241,234,.14); }
  .article-modal-nav .nav-btn { background: transparent; border: 1px solid rgba(244,241,234,.25); color: rgba(244,241,234,.65); padding: 12px 24px; cursor: pointer; font-size: 0.85rem; letter-spacing: 2px; border-radius: 12px; transition: all 0.3s ease; }
  .article-modal-nav .nav-btn:hover:not(:disabled) { border-color: #d4b98a; color: #d4b98a; }
  .article-modal-nav .nav-btn:disabled { opacity: 0.25; cursor: not-allowed; }
  @media (max-width: 768px) {
    .article-modal-window { width: 92vw; max-width: 92vw; height: auto; max-height: 70vh; border-radius: 18px; overflow-y: auto; overflow-x: hidden; display: flex; flex-direction: column; padding: 24px 20px 30px; }
    .article-modal-window .article-modal-title { font-size: 1.1rem; line-height: 1.5; letter-spacing: 1px; margin: 0 0 12px 0; }
    .article-modal-meta { font-size: 0.82rem; margin-bottom: 22px; padding-bottom: 14px; }
    .article-modal-body { font-size: 0.92rem; line-height: 1.9; letter-spacing: 0.5px; }
    .article-modal-body p { margin: 0 0 16px 0; text-indent: 2em; }
    .article-interactions { margin-top: 26px; padding: 18px 0; gap: 16px; }
    .interaction-like-btn { padding: 8px 18px; font-size: 0.85rem; }
    .interaction-share-group { gap: 10px; font-size: 0.82rem; }
    .share-platform { padding: 5px 10px; font-size: 0.82rem; }
    .article-comments-block { margin: 26px auto 12px; }
    .article-comments-block h3 { font-size: 1rem; margin-bottom: 14px; }
    .comment-input-wrap { margin-bottom: 20px; }
    .comment-input-wrap textarea { height: 90px; font-size: 0.9rem; }
    .comment-submit-btn { padding: 10px 22px; font-size: 0.85rem; }
    .article-modal-nav { margin: 26px auto 0; padding-top: 14px; }
    .article-modal-nav .nav-btn { padding: 8px 14px; font-size: 0.8rem; }
    .article-modal-window .modal-close { position: sticky; top: 12px; align-self: flex-end; z-index: 20; background: rgba(0,0,0,.45); border-radius: 50%; margin: 10px 10px -52px 0; }
  }

  /* ===== 移动端底部导航栏（默认隐藏，≤768px 显示） ===== */
  .mobile-tabbar { display: none; }

  /* ===== 移动端适配（追加）：6屏横滑框架手机端布局/字号/间距 ===== */
  @media (max-width: 768px) {
    /* ---- 顶部导航隐藏，切换为底部导航栏 ---- */
    .fixed-nav {
      display: none;
    }

    /* ---- 移动端底部导航栏 ---- */
    .mobile-tabbar {
      display: flex;
      position: fixed;
      left: 0; right: 0; bottom: 0;
      z-index: 9990;
      height: calc(60px + env(safe-area-inset-bottom));
      padding-bottom: env(safe-area-inset-bottom);
      box-sizing: border-box;
      align-items: center;
      justify-content: space-around;
      background: rgba(10, 10, 10, 0.85);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-top: 1px solid rgba(140, 214, 176, 0.14);
    }
    .mobile-tabbar .tab-item {
      position: relative;
      z-index: 2;
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      height: 100%;
      color: rgba(242, 237, 228, 0.55);
      text-decoration: none;
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
      transition: color 0.3s ease;
    }
    .mobile-tabbar .tab-item svg {
      width: 22px; height: 22px;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
    }
    .mobile-tabbar .tab-item span {
      font-size: 10px;
      letter-spacing: 0.12em;
      line-height: 1;
      white-space: nowrap;
      opacity: 0;
      transform: translateY(6px);
      transition: opacity 0.3s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .mobile-tabbar .tab-item.active {
      color: #8cd6b0;
    }
    .mobile-tabbar .tab-item.active svg {
      transform: translateY(-4px) scale(1.18);
    }
    .mobile-tabbar .tab-item.active span {
      opacity: 1;
      transform: translateY(0);
    }

    /* ---- 波浪指示器（参考图动画效果：波浪槽随激活项滑动） ---- */
    .tabbar-wave {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 20%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
      background: radial-gradient(ellipse 40% 100% at 50% 100%, rgba(140, 214, 176, 0.22) 0%, rgba(140, 214, 176, 0.08) 55%, transparent 78%);
      border-radius: 50% 50% 0 0 / 22px 22px 0 0;
      box-shadow: 0 -2px 12px rgba(140, 214, 176, 0.10);
      transform-origin: 50% 100%;
      transition: left 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    }
    .tabbar-wave::before {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 36px;
      height: 8px;
      background: radial-gradient(ellipse at 50% 100%, rgba(140, 214, 176, 0.18) 0%, transparent 70%);
    }
    .tabbar-wave--hidden {
      opacity: 0;
    }

    /* ---- 全局：每屏内部纵向滚动 + 网格与标题 ---- */
    .page {
      overflow-y: auto;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior-y: contain;
    }
    .swiss-grid {
      padding: 19vh 30px 150px;
      gap: 18px;
    }
    .title-group {
      gap: 6px;
      position: sticky;
      top: -9vh;
      z-index: 9999;
      align-items: center;
      text-align: center;
    }
    .title-group .chinese-title,
    .chinese-title {
      font-size: 30px;
      letter-spacing: 0.06em;
    }
    .page-title {
      font-size: 24px;
      margin-bottom: 12px;
      letter-spacing: 0.06em;
    }

    /* ---- 固定导航 ---- */
    .fixed-nav {
      top: 14px; left: 14px; right: 14px;
    }
    .nav__logo {
      display: none;
    }
    .nav__tabs {
      gap: 5px;
      flex-wrap: nowrap;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .nav__tabs::-webkit-scrollbar { display: none; }
    .nav__tab {
      padding: 8px 12px;
      font-size: 11px;
      letter-spacing: 0.12em;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .nav__arrows {
      gap: 5px;
    }
    .nav__arrow {
      width: 38px; height: 38px;
    }

    /* ---- 第1屏 Hero ---- */
    .hero__content {
      padding: 76px 28px 150px;
    }
    .hero__frame {
      inset: 10px;
      border-radius: 14px;
    }
    .title {
      font-size: clamp(56px, 18vw, 100px);
      line-height: 0.9;
      letter-spacing: 0.02em;
    }
    .subtitle {
      font-size: 13px;
      letter-spacing: 0.35em;
      margin-top: 12px;
    }
    .hero__bottom {
      left: 28px; right: 28px; bottom: 86px;
    }
    .desc {
      flex-direction: column;
      gap: 12px;
    }
    .desc__col {
      max-width: none;
    }
    .desc__col p {
      font-size: 11px;
      margin: 8px 0;
      padding: 8px;
    }

    /* ---- 第2屏 品牌故事 ---- */
    .story-content {
      grid-column: 1 / -1;
    }
    .story-content p {
      font-size: 14px;
      line-height: 2.1;
      margin-bottom: 20px;
    }
    .story-quote {
      font-size: 17px;
      line-height: 1.8;
      padding-left: 14px;
      margin-bottom: 24px;
    }
    .brand-story-image img {
      height: 220px;
    }
    .view-more-link {
      font-size: 11px;
    }

    /* ---- 第3屏 系列臻品 ---- */
    .products-page .jade-card {
      grid-column: span 12;
      height: 400px;
      padding: 24px;
    }
    .products-page .product-img-holder {
      height: 250px;
    }
    .products-page .card-category {
      margin-top: 270px;
    }
    .products-page .card-title {
      font-size: 15px;
    }
    .products-page .product-price {
      font-size: 12px;
      margin-top: 8px;
    }
    .products-page .jade-card::after {
      bottom: 18px;
    }
    .products-page .collections-footer {
      grid-column: span 12;
      margin-top: 4px;
    }

    /* ---- 第4屏 公司动态 ---- */
    .journal-featured {
      grid-column: 1 / -1;
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 14px;
    }
    .journal-cover img {
      height: 200px;
    }
    .journal-featured .journal-title {
      font-size: 18px;
    }
    .journal-featured .journal-excerpt {
      font-size: 13px;
      -webkit-line-clamp: 3;
    }
    .journal-list {
      grid-column: 1 / -1;
    }
    .journal-list .journal-item {
      flex-wrap: wrap;
      row-gap: 6px;
      padding: 12px 2px;
    }
    .journal-index {
      order: 1;
    }
    .journal-list .journal-item .journal-title {
      order: 2;
      flex: 1 1 100%;
      font-size: 14px;
    }
    .journal-list .journal-item .journal-date {
      order: 3;
      font-size: 11px;
    }
    .journal-arrow {
      order: 4;
      margin-left: auto;
    }

    /* ---- 第5屏 门店 ---- */
    .store-carousel {
      grid-column: 1 / -1;
      flex-direction: column;
      gap: 24px;
      padding: 24px 18px;
    }
    .carousel-viewport {
      width: 100%;
      height: 250px;
    }
    .carousel-nav-labels {
      width: 100%;
      flex-direction: row;
      gap: 16px;
    }
    .nav-label-item {
      padding: 14px 16px;
      gap: 6px;
    }
    .nav-label-item.active {
      padding-left: 20px;
    }
    .label-num {
      font-size: 12px;
      color: rgba(242, 237, 228, 0.7);
    }
    .label-text {
      font-size: 14px;
      line-height: 1.6;
    }

    /* ---- 第6屏 Footer ---- */
    .footer-content {
      padding: 40px 30px 32px;
    }
    .footer-content .title-svg-b {
      height: 74px !important;
    }
    .footer-content .chinese-title {
      font-size: 14px !important;
      margin-bottom: 26px !important;
      letter-spacing: 0.3em;
    }
.m-page-footer {
      display: block;
      text-align: center;
      margin: 20px 0 0;
      padding-top: 18px;
      border-top: 1px solid rgba(242, 237, 228, 0.12);
    }
    .m-page-footer .m-copy {
      display: block;
      font-size: 11px;
      letter-spacing: 0.2em;
      opacity: 0.85;
      color: rgba(242, 237, 228, 0.9);
      margin: 0 0 6px;
    }
    .m-page-footer .m-icp {
      display: block;
      font-size: 11px;
      letter-spacing: 0.1em;
      opacity: 0.85;
      color: rgba(242, 237, 228, 0.85);
      text-decoration: none;
    }
    .footer-copy {
      display: none;
      bottom: 84px;
      z-index: 100;
      opacity: 0.85;
      color: rgba(242, 237, 228, 0.9);
    }
    .footer-icp {
      display: none;
      bottom: 66px;
      z-index: 100;
      color: rgba(242, 237, 228, 0.85);
    }
    body::after {
      left: 24px;
      bottom: 70px;
      font-size: 10px;
      color: rgba(242, 237, 228, 0.65);
    }
  }

  
@media (max-width: 768px) {
    /* ===== 移动端：正文独立滚动容器（title-group 固定，正文被容器裁剪，永不复盖标题） ===== */
    .swiss-grid {
      display: flex;
      flex-direction: column;
      height: 100%;
      overflow: visible;
      padding: 2vh 30px 0;
      gap: 10px;
    }
    .company-page.swiss-grid { padding-top: 2vh; }
    .swiss-grid > .title-group {
      flex: 0 0 auto;
      margin-top: 170px;
      position: relative;
      z-index: 9999;
      align-items: center;
      text-align: center;
    }
    .swiss-grid > .m-scroll-body {
      flex: 1 1 auto;
      min-height: 0;
      display: flex;
      flex-direction: column;
      gap: 18px;
      overflow-y: auto;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior-y: contain;
      padding-bottom: calc(24px + env(safe-area-inset-bottom));
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    .swiss-grid > .m-scroll-body::-webkit-scrollbar {
      display: none;
    }
  }
@media (max-width: 480px) {
    .swiss-grid {
      padding: 19vh 22px 150px;
      gap: 14px;
    }
    .title-group .chinese-title,
    .chinese-title {
      font-size: 26px;
    }
    .page-title {
      font-size: 21px;
      margin-bottom: 8px;
    }
    .nav__tab {
      padding: 7px 9px;
      font-size: 10px;
      letter-spacing: 0.08em;
    }
    .nav__arrow {
      width: 34px; height: 34px;
    }
    .title {
      font-size: clamp(48px, 17vw, 72px);
    }
    .subtitle {
      font-size: 11px;
      letter-spacing: 0.3em;
    }
    .hero__content {
      padding: 70px 22px 140px;
    }
    .story-quote {
      font-size: 15px;
    }
    .products-page .jade-card {
      height: 360px;
      padding: 20px;
    }
    .products-page .product-img-holder {
      height: 220px;
    }
    .products-page .card-category {
      margin-top: 240px;
    }
    .journal-featured .journal-title {
      font-size: 16px;
    }
    .carousel-viewport {
      height: 205px;
    }
    .label-text {
      font-size: 14px;
      line-height: 1.6;
    }
    .footer-content {
      padding: 32px 22px 28px;
    }
    .footer-content .title-svg-b {
      height: 62px !important;
    }
    .swiss-grid {
      padding: 2vh 22px 0;
      gap: 8px;
    }
    .company-page.swiss-grid { padding-top: 2vh; }
  }
@media (max-width:768px){
.footer-swiper{
position:relative;
width:100%;
margin-top:34px;
}
.footer-links{
width:70%;
margin:0 auto;
display:flex;
flex-wrap:nowrap;
overflow-x:auto;
scroll-snap-type:x mandatory;
-webkit-overflow-scrolling:touch;
scrollbar-width:none;
gap:0;
padding:0;
}
.footer-links::-webkit-scrollbar{
display:none;
}
.footer-card{
flex:0 0 100%;
box-sizing:border-box;
scroll-snap-align:center;
padding:18px 20px;
border:1px solid rgba(255,255,255,.08);
border-radius:18px;
background:rgba(255,255,255,.02);
backdrop-filter:blur(12px);
}
.footer-card h5{
font-size:15px;
font-weight:600;
letter-spacing:.08em;
margin-bottom:12px;
color:#fff;
text-align:center;
display:flex;
align-items:center;
justify-content:center;
gap:10px;
}
.footer-card h5::before,
.footer-card h5::after{
content:'——';
color:rgba(255,255,255,.2);
font-size:11px;
font-weight:300;
letter-spacing:.1em;
flex-shrink:0;
}
.footer-card ul{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:10px 14px;
padding:0;
margin:0;
list-style:none;
text-align:center;
}
.footer-card li{
margin:0;
text-align:center;
}
.footer-card a{
font-size:13px;
line-height:1.8;
color:rgba(255,255,255,.65);
text-decoration:none;
transition:.3s;
text-align:center;
}
.footer-card a:hover{
color:#AEE8C4;
}
.footer-swiper__arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
width:32px;
height:32px;
border-radius:50%;
border:1px solid rgba(255,255,255,.35);
background:rgba(0,0,0,.35);
color:#fff;
font-size:18px;
line-height:1;
display:flex;
align-items:center;
justify-content:center;
z-index:2;
cursor:pointer;
animation:footerArrowBreath 2.4s ease-in-out infinite;
}
.footer-swiper__arrow--prev{left:calc(7.5% - 16px);}
.footer-swiper__arrow--next{right:calc(7.5% - 16px);}
.m-page-footer{
position:relative;
flex:0 0 auto;
z-index:9999;
margin:10px 0 calc(70px + env(safe-area-inset-bottom));
padding:10px 0 0;
border-top:1px solid rgba(242,237,228,.12);
text-align:center;
}
@keyframes footerArrowBreath{
0%,100%{opacity:.2;}
50%{opacity:1;}
}
}

/* ===== shop 页面专属样式 ===== */
.shop-page-body {
  padding-top: 120px;
  min-height: 100vh;
  background: linear-gradient(145deg, #020605 0%, #06150e 45%, #030806 100%);
  padding-bottom: 80px;
}
.shop-header {
  text-align: center;
  padding: 40px 40px 50px;
}
.shop-title {
  font-family: 'Noto Serif SC', 'Songti SC', serif;
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(242,237,228,0.9);
  margin: 0 0 10px;
}
.shop-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.35em;
  color: rgba(242,237,228,0.4);
  text-transform: uppercase;
}

/* 筛选区 */
.shop-filters {
  max-width: 1300px;
  margin: 0 auto 40px;
  padding: 0 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.filter-group {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(242,237,228,0.06);
  border-radius: 999px;
  padding: 4px 4px;
}
.filter-chip {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(242,237,228,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
  white-space: nowrap;
}
.filter-chip:hover {
  color: rgba(242,237,228,0.8);
  background: rgba(255,255,255,0.03);
}
.filter-chip.active {
  background: rgba(140,214,176,0.15);
  color: #8cd6b0;
  font-weight: 400;
}

/* 商品网格 */
.shop-grid {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.shop-card {
  position: relative;
  border: 1px solid rgba(242,237,228,0.06);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.01);
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer;
}
.shop-card:hover {
  border-color: rgba(140,214,176,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.shop-card-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  background: rgba(3,8,6,0.5);
}
.shop-card-info {
  padding: 18px 20px 20px;
}
.shop-card-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(242,237,228,0.85);
  margin: 0 0 4px;
}
.shop-card-series {
  font-size: 11px;
  color: rgba(140,214,176,0.55);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.shop-card-meta {
  display: flex;
  gap: 12px;
  font-size: 11px;
  color: rgba(242,237,228,0.4);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.shop-card-price {
  font-family: 'Inter', 'SF Pro Display', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #8cd6b0;
  letter-spacing: 0.05em;
}



/* 无结果 */
.shop-empty {
  text-align: center;
  padding: 80px 20px;
  color: rgba(242,237,228,0.3);
  font-size: 14px;
  letter-spacing: 0.1em;
  grid-column: 1 / -1;
}

/* 页脚 */
.shop-footer-wrap {
  background: linear-gradient(180deg, transparent, rgba(140,214,176,0.02));
  border-top: 1px solid rgba(242,237,228,0.06);
  padding: 60px 80px 50px;
  text-align: center;
  margin-top: 80px;
}
.shop-footer-wrap .social-pill {
  padding: 10px 26px;
  border: 1px solid rgba(242,237,228,.14);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .2em;
  color: rgba(242,237,228,.72);
  text-decoration: none;
  transition: all .35s ease;
  display: inline-block;
  margin: 0 6px;
}
.shop-footer-wrap .social-pill:hover {
  border-color: #8cd6b0;
  color: #8cd6b0;
  background: rgba(140,214,176,.06);
}

@media (max-width: 768px) {
  .shop-page-body { padding-top: 100px; }
  .shop-title { font-size: 32px; }
  .shop-filters { padding: 0 20px; gap: 10px; }
  .filter-group { flex-wrap: wrap; justify-content: center; }
  .filter-chip { padding: 6px 14px; font-size: 11px; }
  .shop-grid { padding: 0 20px; grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .shop-card-info { padding: 14px 14px 16px; }
  .shop-card-title { font-size: 13px; }
  .shop-card-price { font-size: 15px; }
  .shop-footer-wrap { padding: 40px 24px; }
}


  /* ===== 背景统一：与 index.html 完全一致（深色渐变 + 纹样层） ===== */
  .story-page-body, .shop-page-body, .join-page-wrapper {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #111111 0%, #000000 55%, #0d0d0d 100%) !important;
  }
  .story-page-body::before, .shop-page-body::before, .join-page-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: var(--pattern-body), var(--pattern-body);
    background-position: 0 0, var(--half-tile) var(--half-tile);
    background-repeat: repeat, repeat;
    background-size: var(--tile-size) var(--tile-size), var(--tile-size) var(--tile-size);
    opacity: 0.20;
    mix-blend-mode: screen;
    filter: none;
    pointer-events: none;
    z-index: -1;
  }
  .story-page-body::after, .shop-page-body::after, .join-page-wrapper::after { display: none !important; }

  /* 微信扫码咨询弹窗（购买咨询） */
  #wechatQrOverlay { z-index: 100001; }
  .wechat-qr-window {
    position: relative;
    background: rgba(18,18,18,.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(244,241,234,.08);
    border-radius: 16px;
    padding: 48px 40px 40px;
    max-width: 560px;
    width: 90vw;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.3);
    opacity: 0;
    transform: translateY(20px) scale(.96);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  #wechatQrOverlay.open .wechat-qr-window { opacity: 1; transform: translateY(0) scale(1); }
  .qr-close-btn { position: absolute; top: 16px; right: 20px; background: none; border: none; font-size: 28px; color: #999; cursor: pointer; line-height: 1; transition: color .3s; }
  .qr-close-btn:hover { color: #f2ede4; }
  .qr-title { font-family: 'Noto Serif SC', serif; font-size: 1.5rem; font-weight: 700; color: #f2ede4; margin: 0 0 8px; letter-spacing: 3px; }
  .qr-subtitle { font-size: .88rem; color: #999; margin: 0 0 32px; letter-spacing: 1px; }
  .qr-cards { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
  .qr-card { flex: 1; min-width: 160px; max-width: 200px; }
  .qr-card img { width: 100%; border-radius: 12px; border: 1px solid rgba(244,241,234,.08); box-shadow: 0 4px 12px rgba(0,0,0,.08); }
  @media (max-width: 768px) {
    .wechat-qr-window { padding: 40px 24px 32px; max-width: 92vw; }
    .qr-title { font-size: 1.2rem; }
    .qr-subtitle { font-size: .8rem; margin-bottom: 24px; }
    .qr-cards { gap: 16px; }
    .qr-card { min-width: 130px; }
  }

  /* ===== 商品收藏 ===== */
  .shop-fav-btn { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(244,241,234,.14); background: rgba(10,10,10,.55); color: rgba(244,241,234,.45); font-size: 16px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .3s; z-index: 5; padding: 0; }
  .shop-fav-btn:hover { color: #d4b98a; border-color: rgba(212,185,138,.5); transform: scale(1.06); }
  .shop-fav-btn.active { color: #d4b98a; border-color: rgba(212,185,138,.55); background: rgba(212,185,138,.12); }
  .fav-fab { position: relative; width: 52px; height: 52px; border-radius: 50%; border: 1px solid rgba(212,185,138,.4); background: rgba(18,18,18,.85); color: #d4b98a; font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(0,0,0,.35); transition: all .3s; z-index: 1; padding: 0; }
  .fav-fab:hover { background: rgba(30,28,24,.92); color: #f2ede4; }
  .fav-fab-badge { position: absolute; top: -2px; right: -2px; min-width: 18px; height: 18px; padding: 0 4px; border-radius: 999px; background: #c0392b; color: #fff; font-size: 11px; line-height: 18px; text-align: center; font-weight: 600; box-sizing: border-box; }

  /* ===== 客服悬浮按钮组 + 在线客服聊天窗口（对齐 index） ===== */
  .fab-container { position: fixed; bottom: 40px; right: 40px; z-index: 9998; display: flex; flex-direction: column; gap: 28px; }
  .fab-btn { width: 50px; height: 50px; border-radius: 50%; background: #121212; border: 1px solid rgba(244,241,234,.14); display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,.3); transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); color: #f2ede4; }
  .fab-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
  .fab-btn:hover { background: #8cd6b0; border-color: #8cd6b0; transform: translateY(-4px); box-shadow: 0 6px 20px rgba(140,214,176,.4); }
  #btn-back-to-top { opacity: 0; visibility: hidden; transform: translateY(20px); transition: all 0.4s ease; }
  #btn-back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

  .chat-window { position: fixed; bottom: 100px; right: 40px; width: 340px; background: rgba(18,18,18,.96); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,.5); border: 1px solid rgba(244,241,234,.08); z-index: 9999; display: flex; flex-direction: column; overflow: hidden; transform: translateY(20px) scale(.95); opacity: 0; visibility: hidden; transform-origin: bottom right; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
  .chat-window.open { transform: translateY(0) scale(1); opacity: 1; visibility: visible; }
  .chat-header { background: rgba(14,40,28,.95); color: #f2ede4; padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; }
  .chat-header-info { display: flex; align-items: center; gap: 12px; }
  .chat-avatar { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); background: url('https://www.pngarts.com/files/11/Avatar-PNG-Transparent-Image.png') center/cover; }
  .chat-title-group h5 { margin: 0 0 4px 0; font-size: .95rem; font-weight: 400; letter-spacing: 1px; }
  .chat-title-group p { margin: 0; font-size: .75rem; color: rgba(255,255,255,.7); }
  .chat-close-btn { background: none; border: none; color: #f2ede4; cursor: pointer; font-size: 1.2rem; padding: 0; opacity: .7; transition: opacity .3s; }
  .chat-close-btn:hover { opacity: 1; }
  .chat-body { height: 280px; padding: 20px; background: transparent; overflow-y: auto; display: flex; flex-direction: column; gap: 16px; }
  .chat-msg { max-width: 85%; font-size: .85rem; line-height: 1.5; padding: 12px 16px; border-radius: 8px; letter-spacing: 1px; position: relative; }
  .msg-agent { background: rgba(255,255,255,.05); color: #f2ede4; border: 1px solid rgba(244,241,234,.08); align-self: flex-start; border-bottom-left-radius: 0; }
  .msg-user { background: #8cd6b0; color: #0a0a0a; align-self: flex-end; border-bottom-right-radius: 0; }
  .msg-time { font-family: 'Cormorant Garamond', serif; font-size: .7rem; color: #aaa; margin-top: 4px; text-align: right; }
  .chat-footer { padding: 16px; background: transparent; border-top: 1px solid rgba(244,241,234,.08); display: flex; align-items: center; gap: 10px; }
  .chat-input { flex: 1; border: 1px solid rgba(244,241,234,.14); outline: none; background: rgba(255,255,255,.06); border-radius: 20px; padding: 10px 16px; font-size: .85rem; color: #f2ede4; font-family: inherit; }
  .chat-input::placeholder { color: rgba(244,241,234,.35); }
  .chat-send-btn { width: 36px; height: 36px; border-radius: 50%; background: #8cd6b0; border: none; color: #0a0a0a; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .3s; }
  .chat-send-btn:hover { filter: brightness(1.1); }
  .chat-send-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }

  /* ===== 商品收藏列表弹窗 ===== */
  .fav-modal-window { width: 760px; max-width: 92vw; max-height: 80vh; overflow-y: auto; padding: 40px 44px; }
  .fav-modal-title { font-family: 'Noto Serif SC', 'Songti SC', 'STSong', serif; font-size: 22px; font-weight: 300; letter-spacing: 0.1em; color: #f4f1ea; margin: 0 0 24px; padding-right: 40px; }
  .fav-list { display: flex; flex-direction: column; gap: 14px; }
  .fav-list-item { display: flex; align-items: center; gap: 18px; padding: 14px; border: 1px solid rgba(244,241,234,.1); border-radius: 14px; cursor: pointer; transition: border-color .3s; }
  .fav-list-item:hover { border-color: rgba(212,185,138,.45); }
  .fav-list-item img { width: 90px; height: 90px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
  .fav-item-info { flex: 1; min-width: 0; }
  .fav-item-title { font-family: 'Noto Serif SC', serif; font-size: 15px; color: #f4f1ea; margin: 0 0 6px; letter-spacing: .06em; }
  .fav-item-series { font-size: 12px; color: rgba(244,241,234,.55); margin: 0 0 6px; letter-spacing: 1px; }
  .fav-item-price { font-size: 14px; color: #d4b98a; letter-spacing: 1px; }
  .fav-remove { flex-shrink: 0; padding: 8px 16px; font-size: 12px; letter-spacing: 2px; color: rgba(244,241,234,.6); background: none; border: 1px solid rgba(244,241,234,.16); border-radius: 999px; cursor: pointer; transition: all .3s; }
  .fav-remove:hover { color: #e8b4a0; border-color: rgba(232,180,160,.5); }
  .fav-empty { text-align: center; padding: 60px 0; font-size: 14px; letter-spacing: 2px; color: rgba(244,241,234,.45); }
  @media (max-width: 768px) {
    .fav-fab { right: 14px; top: auto; bottom: calc(84px + env(safe-area-inset-bottom)); transform: none; width: 48px; height: 48px; font-size: 20px; }
    .fav-modal-window { padding: 30px 22px; }
    .fav-list-item img { width: 64px; height: 64px; }
    .fav-list-item { gap: 12px; padding: 10px; }
    .fav-remove { padding: 7px 12px; font-size: 11px; }
  }

/* ===== 移动端性能降级：关闭高成本滤镜与无限动画（不动结构/交互） ===== */
@media (max-width: 768px) {
  /* 大半径 blur 光斑为纯装饰，关闭可省去整屏高斯模糊重算 */
  .jade-gradient-bg::before,
  .jade-gradient-bg::after { filter: none; }
  /* 无限 drop-shadow / border 呼吸动画每帧触发重绘，移动端关闭 */
  .hero__frame,
  .footer-content .title-svg-b,
  .brand-story-image,
  .journal-featured,
  .products-page .jade-card,
  .store-carousel,
  .join-card { animation: none; }
}

/* 系统"减少动态效果"偏好：动画/过渡瞬发 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
