
* { 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-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; }
  .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-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; }
  .modal-product-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }
  .modal-product-bottom { flex: 1; 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-size: 1rem; font-weight: 400; color: #f4f1ea; letter-spacing: 3px; margin: 0 0 16px 0; }
  .modal-product-bottom .product-desc { font-size: .9rem; color: rgba(244,241,234,.72); line-height: 2; 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-size: .9rem; font-weight: 400; color: #d4b98a; letter-spacing: 2px; margin: 0 0 12px 0; }
  .spec-table { width: 100%; border-collapse: collapse; font-size: .85rem; letter-spacing: 1px; }
  .spec-table td { padding: 8px 10px; border-bottom: 1px solid rgba(244,241,234,.08); color: rgba(244,241,234,.8); }
  .spec-table tr:last-child td { border-bottom: none; }
  .spec-table td:first-child { color: rgba(244,241,234,.5); width: 25%; }
  @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; }
    .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;}
}
}

/* ===== story.html 专属补充样式 ===== */
.story-page-body {
  padding-top: 120px;
  min-height: 100vh;
  background: linear-gradient(145deg, #020605 0%, #06150e 45%, #030806 100%);
}
.story-section-block {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 80px;
}
.story-h2 {
  font-family: 'Noto Serif SC', 'Songti SC', serif;
  font-size: 44px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(242,237,228,0.9);
  margin: 0 0 8px;
}
.story-divider {
  width: 48px;
  height: 1px;
  background: rgba(140,214,176,0.4);
  margin: 0 0 40px;
}
.story-text {
  font-family: 'Noto Serif SC', 'PingFang SC', sans-serif;
  font-size: 16px;
  line-height: 2.4;
  letter-spacing: 0.08em;
  color: rgba(242,237,228,0.65);
  margin-bottom: 24px;
  font-weight: 300;
}
.story-quote {
  font-family: 'Songti SC', 'Noto Serif CJK SC', serif;
  font-size: 22px;
  color: #8cd6b0;
  letter-spacing: 0.2em;
  margin-bottom: 32px;
  border-left: 2px solid #8cd6b0;
  padding-left: 20px;
}
.story-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 36px 0;
}
.story-image-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(242,237,228,0.08);
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.story-image-grid img:hover {
  transform: scale(1.03);
  border-color: rgba(140,214,176,0.3);
}

/* 核心理念列表 */
.philo-grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(242,237,228,0.08);
}
.philo-item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(242,237,228,0.08);
  cursor: pointer;
  transition: all 0.4s ease;
}
.philo-item:hover {
  border-bottom-color: rgba(140,214,176,0.3);
}
.philo-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  opacity: 0.55;
  transition: opacity 0.4s ease;
}
.philo-item:hover .philo-header,
.philo-item.active .philo-header {
  opacity: 1;
}
.philo-num {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #8cd6b0;
  margin-top: 5px;
  letter-spacing: 0.05em;
  min-width: 32px;
}
.philo-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 22px;
  font-weight: 300;
  color: #f2ede4;
  letter-spacing: 0.08em;
}
.philo-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease, margin-top 0.4s ease;
  padding-left: 52px;
}
.philo-item.active .philo-body {
  max-height: 200px;
  opacity: 1;
  margin-top: 16px;
}
.philo-desc {
  font-size: 14px;
  color: rgba(242,237,228,0.55);
  line-height: 1.9;
  letter-spacing: 0.06em;
}
.philo-desc strong {
  color: #8cd6b0;
  font-weight: 400;
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  letter-spacing: 0.1em;
}

/* 页脚 */
.story-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;
}


@media (max-width: 768px) {
  .story-section-block {
    padding: 0 24px;
  }
  .story-h2 {
    font-size: 28px;
  }
  .story-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .story-footer-wrap {
    padding: 40px 24px calc(90px + env(safe-area-inset-bottom));
  }
}


  /* ===== 背景统一：与 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; }

/* =========================================
   [RESTORED] 品牌溯源轮播 + 核心理念联动 + 品牌愿景 样式（旧版原样恢复）
   来源: F:\Shingi\0514璞黛网站\0619-all\story.html
   ========================================= */
:root {
    --puda-green: #8cd6b0;
    --font-en: "Optima", "Cinzel", "Times New Roman", serif;
}


        /* Story Section Shared */
        .story-section {
            width: 100%; padding: 80px 8%; box-sizing: border-box;
            position: relative; z-index: 1;
        }
        .story-section-inner { max-width: 1200px; margin: 0 auto; }
        .section-label {
            font-family: var(--font-en); font-size: 0.78rem;
            letter-spacing: 4px; color: var(--puda-green);
            text-transform: uppercase; margin-bottom: 16px; display: block;
        }
        .section-title {
            font-size: 2.4rem; font-weight: 300;
            color: #f2ede4; margin: 0 0 48px 0;
            letter-spacing: 0.25em; line-height: 1.4;
        }
        .section-divider { width: 60px; height: 2px; background: var(--puda-green); margin-bottom: 48px; }



    
        

        /* =========================================
           [INJECTED] 品牌溯源轮播 + 核心理念联动 + 品牌愿景 样式
           已适配 story.html 浅色主题
           ========================================= */
        .section-header {
            margin-bottom: 60px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        /* Origin Carousel (Section 1) */
        .origin-grid {
            display: grid;
            grid-template-columns: 1.1fr 1fr;
            gap: 80px;
            align-items: start;
        }
        .origin-left-col {
            display: flex;
            flex-direction: column;
            gap: 32px;
        }
        .origin-carousel {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            border-radius: 8px;
            overflow: hidden;
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(140,214,176,0.18);
            box-shadow: 0 8px 32px rgba(0,0,0,0.4);
        }
        .origin-carousel .carousel-track {
            width: 100%;
            height: 100%;
            position: relative;
        }
        .origin-carousel .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 1;
            display: block !important;
            flex: none !important;
        }
        .origin-carousel .carousel-slide.active {
            opacity: 1;
            z-index: 2;
            display: block !important;
        }
        .origin-carousel .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .origin-carousel .carousel-nav {
            position: absolute;
            bottom: 24px;
            left: 32px;
            display: flex;
            gap: 8px;
            z-index: 10;
        }
        .origin-carousel .carousel-dot {
            width: 28px;
            height: 2px;
            background: rgba(242,237,228,0.22);
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 0;
        }
        .origin-carousel .carousel-dot:hover { background: rgba(242,237,228,0.7); }
        .origin-carousel .carousel-dot.active {
            background: #8cd6b0;
            width: 40px;
        }
        /* Origin Content */
        .origin-content p {
            font-size: 1.05rem;
            color: rgba(242,237,228,0.82);
            margin-bottom: 24px;
            text-align: justify;
            line-height: 2.2;
            letter-spacing: 0.08em;
        }
        .origin-quote {
            font-family: "Noto Serif SC", serif;
            font-size: 1.5rem;
            color: #f2ede4;
            font-weight: 700;
            letter-spacing: 0.15em;
            margin: 36px 0;
            padding-left: 20px;
            border-left: 3px solid #8cd6b0;
        }
        .origin-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 40px;
        }
        .feature-box {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(140,214,176,0.18);
            border-radius: 8px;
            padding: 28px 16px;
            text-align: center;
            transition: border-color 0.3s;
        }
        .feature-box:hover { border-color: #8cd6b0; }
        .feature-icon {
            color: #8cd6b0;
            font-size: 24px;
            margin-bottom: 12px;
            font-weight: 800;
            display: block;
        }
        .feature-title {
            font-size: 13px;
            color: #f2ede4;
            font-weight: 600;
            margin-bottom: 4px;
        }
        .feature-sub {
            font-size: 12px;
            color: rgba(242,237,228,0.5);
        }
        @media (max-width: 1024px) {
            .origin-grid { grid-template-columns: 1fr; gap: 40px; }
            .origin-left-col { gap: 24px; }
            .origin-carousel { aspect-ratio: 16 / 9; }
        }
        /* Philosophy Grid (Section 2) */
        .philosophy-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: flex-start;
        }
        .philo-list {
            display: flex;
            flex-direction: column;
            border-top: 1px solid rgba(242,237,228,0.1);
        }
        .philo-list-item {
            padding: 28px 0;
            border-bottom: 1px solid rgba(242,237,228,0.1);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .philo-item-header {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            opacity: 0.45;
            transition: opacity 0.4s ease;
        }
        .philo-list-item:hover .philo-item-header { opacity: 0.8; }
        .philo-list-item.active .philo-item-header { opacity: 1; }
        .philo-num {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: 16px;
            color: #8cd6b0;
            margin-top: 4px;
        }
        .philo-title {
            font-family: "Noto Serif SC", serif;
            font-size: 24px;
            font-weight: 700;
            color: #f2ede4;
            letter-spacing: 0.05em;
        }
        .philo-item-body {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                        opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                        margin-top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            padding-left: 52px;
        }
        .philo-list-item.active { border-bottom-color: #8cd6b0; }
        .philo-list-item.active .philo-item-body {
            max-height: 300px;
            opacity: 1;
            margin-top: 18px;
        }
        .philo-desc {
            font-size: 14px;
            color: rgba(242,237,228,0.6);
            line-height: 1.8;
            text-align: justify;
        }
        .philo-desc strong {
            color: #8cd6b0;
            font-weight: 600;
            display: block;
            margin-bottom: 6px;
            font-size: 15px;
        }
        .philo-display {
            position: relative;
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(140,214,176,0.18);
            border-radius: 8px;
            padding: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .philo-content {
            display: none;
            width: 100%;
            animation: fadeInImg 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .philo-content.active { display: block; }
        @keyframes fadeInImg {
            from { opacity: 0; transform: scale(0.98); }
            to { opacity: 1; transform: scale(1); }
        }
        .philo-content img {
            width: 100%;
            height: auto;
            max-height: 580px;
            object-fit: contain;
            border-radius: 4px;
            display: block;
        }
        @media (max-width: 968px) {
            .philosophy-grid { grid-template-columns: 1fr; gap: 40px; }
            .philo-display { padding: 24px; }
            .philo-content img { max-height: 480px; }
        }
        /* Vision Section (Section 3) */
        .vision-section { padding-bottom: 160px; }
        .vision-text {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        .vision-text p {
            font-size: 1.05rem;
            color: rgba(242,237,228,0.82);
            margin-bottom: 24px;
            line-height: 2.2;
            letter-spacing: 0.08em;
        }

        /* ===== [RESTORED] 移动端适配：story-section-inner 组件（768/480 断点，单列自适应） ===== */
        @media (max-width: 768px) {
            .story-section {
                padding: 56px 5%;
            }
            .section-header {
                margin-bottom: 36px;
            }
            .section-title {
                font-size: 1.7rem;
                letter-spacing: 0.18em;
                margin-bottom: 32px;
            }
            .section-divider {
                margin-bottom: 32px;
            }
            .origin-grid {
                gap: 28px;
            }
            .origin-left-col {
                gap: 20px;
            }
            .origin-carousel {
                aspect-ratio: 16 / 10;
            }
            .origin-content p {
                font-size: 0.98rem;
                line-height: 2;
            }
            .origin-quote {
                font-size: 1.15rem;
                margin: 28px 0;
                padding-left: 14px;
            }
            .origin-features {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
                margin-top: 28px;
            }
            .feature-box {
                padding: 20px 12px;
            }
            .philosophy-grid {
                gap: 28px;
            }
            .philo-list-item {
                padding: 22px 0;
            }
            .philo-item-header {
                gap: 14px;
            }
            .philo-title {
                font-size: 20px;
            }
            .philo-item-body {
                padding-left: 0;
            }
            .philo-display {
                padding: 16px;
            }
            .philo-content img {
                max-height: 360px;
            }
            .vision-section {
                padding-bottom: 80px;
            }
            .vision-text p {
                font-size: 0.98rem;
                line-height: 2;
            }
        }
        @media (max-width: 480px) {
            .story-section {
                padding: 44px 4%;
            }
            .section-title {
                font-size: 1.45rem;
                letter-spacing: 0.12em;
                margin-bottom: 26px;
            }
            .section-label {
                font-size: 0.7rem;
                letter-spacing: 3px;
            }
            .origin-grid {
                gap: 24px;
            }
            .origin-quote {
                font-size: 1.05rem;
            }
            .origin-features {
                grid-template-columns: 1fr;
            }
            .philo-title {
                font-size: 18px;
            }
            .philo-desc {
                font-size: 13px;
            }
            .vision-text p {
                font-size: 0.92rem;
            }
        }


/* ===== 移动端性能降级：关闭高成本滤镜与无限动画（不动结构/交互） ===== */
@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;
  }
}
