/* ===== 基础与变量 ===== */
:root {
  --bg: #fbf9f5;          /* 米白 */
  --bg-soft: #f4efe6;     /* 浅暖灰 */
  --ink: #1a1814;         /* 墨黑 */
  --ink-soft: #5b554c;    /* 次级文字 */
  --gold: #b8965a;        /* 香槟金（底/装饰/深色底上的文字） */
  /* 2026-08-29 无障碍：原 #8c6f3c 在米白底上对比度 4.48，差 0.02 未达 WCAG AA(4.5)。
     微调为 #8a6d3a → 4.61 达标，色差仅 2 个单位、肉眼不可辨；
     同时让"金底白字"（skip-link / catnav:hover / store__nav-btn:hover）从 4.71 升到约 4.85。 */
  --gold-deep: #8a6d3a;
  --line: #e6ded0;
  --card: #ffffff;
  --radius: 18px;
  --shadow: 0 18px 50px -20px rgba(40, 30, 10, 0.18);
  --maxw: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* 过渡时长 token（1:1 同值映射，零视觉变化） */
  --dur-12: .12s;
  --dur-15: .15s;
  --dur-18: .18s;
  --dur-2: .2s;
  --dur-22: .22s;
  --dur-25: .25s;
  --dur-28: .28s;
  --dur-3: .3s;
  --dur-4: .4s;
  --dur-6: .6s;
  --dur-65: .65s;

  /* ===== 排版 / 间距 token（2026-08-29）=====
     字号为「1:1 同值映射」，改索引即全站同步，且视觉零变化。
     ⚠ 11/12/13/14px 被导航断点精调用来保证「13 项单行不换行」，
       合并档位前必须先评估导航换行风险，勿随意缩减。 */
  --fs-11: 11px;
  --fs-12: 12px;
  --fs-13: 13px;
  --fs-14: 14px;
  --fs-15: 15px;
  --fs-16: 16px;
  --fs-17: 17px;
  --fs-20: 20px;
  --fs-22: 22px;
  --fs-28: 28px;
  /* 间距：4px 基准 */
  --sp-4: 4px;
  --sp-8: 8px;
  --sp-12: 12px;
  --sp-16: 16px;
  --sp-20: 20px;
  --sp-24: 24px;
  --sp-32: 32px;
  --sp-40: 40px;
  --sp-48: 48px;
  --sp-64: 64px;
  --sp-80: 80px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: anywhere;
}

a { color: inherit; text-decoration: none; }
/* height:auto 必需：配合 HTML 的 width/height 属性提供 aspect-ratio 防 CLS，
   同时避免尺寸属性被当成固定高度而与 max-width:100% 冲突导致图片变形 */
img { max-width: 100%; height: auto; display: block; }

/* ===== 导航 ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background var(--dur-4) var(--ease), box-shadow var(--dur-4) var(--ease), -webkit-backdrop-filter var(--dur-4), backdrop-filter var(--dur-4);
}
.nav__inner {
  max-width: 1280px; margin: 0 auto; padding: 14px 28px;
  display: flex; align-items: center; gap: 28px;
}
.nav.scrolled {
  background: rgba(251, 249, 245, 0.85);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand__logo { height: 44px; width: auto; display: block; }

/* 桌面端：13 项 nav 永远严格单行；字号 / 间距按视口阶梯自适应 */
.nav__links {
  flex: 1; min-width: 0;
  display: flex; align-items: center; justify-content: flex-end;
  gap: 18px; flex-wrap: nowrap;       /* 关键：禁止换行；16 项导航 2026-09-13 重调 */
}
.nav__links a {
  font-size: var(--fs-13); color: var(--ink-soft); letter-spacing: .2px;
  transition: color var(--dur-25); position: relative;
  white-space: nowrap; flex-shrink: 0; /* 单链接不缩 + 不按字断行 */
}
.nav__links a:not(.nav__cta):hover { color: var(--ink); }
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gold); transition: width var(--dur-3) var(--ease);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  flex-shrink: 0;
  padding: 8px 18px; border-radius: 999px;
  /* 关于 !important（2026-08-29 查证，刻意保留）：
     CTA 这个 <a> 位于 .nav__links 内部，而 `.nav__links a` 特异性 (0,1,1) 高于
     `.nav__cta` 的 (0,1,0)。不加强制则 CTA 会被导航链接色(--ink-soft)覆盖。
     根治法应是把基础规则改为 `.nav__links a:not(.nav__cta)`（与下方 hover/::after
     已有的 :not() 一致），但会连带影响 nav 字号继承与响应式断点，风险高于收益。
     故保留强制并注明原因；色值已 token 化，不再硬编码 #fff。 */
  background: var(--cta-bg); color: var(--on-cta) !important; font-size: var(--fs-13); font-weight: 500;
  transition: transform var(--dur-25) var(--ease), background var(--dur-25);
}
.nav__cta:hover { transform: translateY(-2px); background: var(--gold-deep); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--dur-3) var(--ease); }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: clamp(640px, 85vh, 920px);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 120px 24px 80px; overflow: hidden;
}
/* 已移除全站漂浮金色光斑（page-ambient / orbs），保持背景纯净 */

.hero__inner { position: relative; z-index: 1; max-width: 860px; }
.hero__eyebrow { font-size: var(--fs-14); letter-spacing: 2px; color: var(--gold-deep); margin-bottom: 22px; }
.hero__title { font-size: clamp(38px, 7vw, 76px); line-height: 1.1; font-weight: 800; letter-spacing: -1px; }
.grad {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold) 50%, #d8c08a);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub { margin: 26px auto 36px; font-size: clamp(15px, 2vw, 18px); color: var(--ink-soft); max-width: 640px; }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero__stats {
  margin-top: 64px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.stat__value { display: flex; align-items: baseline; justify-content: center; gap: 2px; line-height: 1; }
.stat__num { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--ink); line-height: 1; }
.stat__suffix { font-size: var(--fs-17); font-weight: 700; color: var(--gold-deep); line-height: 1; }
.stat__label { font-size: var(--fs-13); color: var(--ink-soft); letter-spacing: 1px; }

.hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid var(--ink-soft); border-radius: 14px; display: grid; place-items: start center; padding-top: 8px; z-index: 1; }
.hero__scroll span { width: 4px; height: 8px; background: var(--ink-soft); border-radius: 2px; animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

/* ===== 高级感动画增强 ===== */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(34px); filter: blur(8px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}
@keyframes fadeBlur {
  from { opacity: 0; filter: blur(6px); }
  to { opacity: 1; filter: blur(0); }
}
.hero__eyebrow { animation: riseIn .9s var(--ease) both; animation-delay: .1s; }
.hero__title { animation: riseIn 1s var(--ease) both; animation-delay: .25s; }
.hero__sub { animation: riseIn .9s var(--ease) both; animation-delay: .45s; }
.hero__actions { animation: riseIn .9s var(--ease) both; animation-delay: .6s; }
.hero__stats { animation: riseIn 1s var(--ease) both; animation-delay: .75s; }
/* 已移除全站跟随光标的鼠标辉光（page-glow） */

/* ===== 按钮 ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px; border-radius: 999px; font-size: var(--fs-15); font-weight: 600;
  cursor: pointer; transition: transform var(--dur-25) var(--ease), box-shadow var(--dur-25), background var(--dur-25), color var(--dur-25);
  border: 1px solid transparent;
}
.btn--primary { background: var(--ink); color: #fff; box-shadow: 0 12px 28px -12px rgba(0,0,0,.5); }
.btn--primary:hover { transform: translateY(-3px); background: var(--gold-deep); box-shadow: 0 16px 32px -12px var(--gold-deep); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-3px); }
/* ===== 通用 section ===== */
.section { max-width: var(--maxw); margin: 0 auto; padding: var(--sp-80) var(--sp-24); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.kicker { font-size: var(--fs-12); letter-spacing: 3px; color: var(--gold-deep); font-weight: 700; margin-bottom: 14px; }
.section__head h2, .section__head h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -.5px; }
.lead { color: var(--ink-soft); font-size: var(--fs-16); margin-top: 16px; }

/* 门店页门头照 */
.store__photo-wrap { max-width: 920px; margin: 0 auto; padding: 0 20px; }
.store__photo { margin: 0; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--card); }
.store__photo img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }

/* ===== 关于 ===== */
.about__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-24); }
.feature { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--sp-32) var(--sp-24); transition: transform var(--dur-3) var(--ease), box-shadow var(--dur-3); }
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature h3 { font-size: var(--fs-17); margin-bottom: 10px; }
.feature p { font-size: var(--fs-16); color: var(--ink-soft); }

/* ===== 主理人 ===== */
.founder {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 44px; align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 44px; margin-bottom: 48px; box-shadow: var(--shadow);
}
.founder__photo { aspect-ratio: 3/4; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.founder__photo img { width: 100%; height: 100%; object-fit: cover; }
.founder__text h3 { font-size: clamp(24px, 3.5vw, 34px); font-weight: 800; margin-bottom: 12px; }
.founder__points { list-style: none; margin-top: 22px; display: grid; gap: 12px; }
.founder__points li { padding-left: 26px; position: relative; font-size: var(--fs-15); color: var(--ink-soft); }
.founder__points li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }

/* ===== 资质认证 ===== */
.certs__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; max-width: var(--maxw); margin: 0 auto; }
.certs__text h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; margin-bottom: 16px; }
.certs__points { list-style: none; margin-top: 24px; display: grid; gap: 12px; }
.certs__points li { padding-left: 28px; position: relative; font-size: var(--fs-15); color: var(--ink-soft); }
.certs__points li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 700; font-size: var(--fs-17); }
.certs__photo { margin: 0; border-radius: 24px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--card); }
.certs__photo img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 3/4; }
.certs__photo figcaption { text-align: center; padding: 14px; font-size: var(--fs-14); color: var(--ink-soft); }

/* ===== 常见问题 FAQ ===== */
.faq__list { max-width: 820px; margin: 30px auto 0; display: grid; gap: 14px; }
.faq__item { border: 1px solid var(--line); border-radius: 14px; background: var(--card); overflow: hidden; transition: border-color var(--dur-3), box-shadow var(--dur-3); }
.faq__item[open] { border-color: rgba(184,150,90,.5); box-shadow: var(--shadow); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-weight: 700;
  font-size: var(--fs-16);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  -webkit-tap-highlight-color: transparent;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: var(--fs-22);
  font-weight: 400;
  line-height: 1;
  color: var(--gold-deep);
  transition: transform var(--dur-3) var(--ease);
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item[open] summary { color: var(--gold-deep); }
.faq__answer { padding: 0 24px 22px; color: var(--ink-soft); font-size: var(--fs-16); line-height: 1.8; }

/* 估价五步流程图 */
.flow {
  max-width: 900px;
  margin: 28px auto 38px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 4px;
}
.flow__step {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 18px 10px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.flow__num {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--on-gold);
  font-weight: 800;
  font-size: var(--fs-17);
  flex-shrink: 0;
}
.flow__title { font-weight: 700; font-size: var(--fs-15); color: var(--ink); }
.flow__desc { font-size: var(--fs-12); color: var(--ink-soft); line-height: 1.5; }
.flow__arrow {
  align-self: center;
  color: var(--gold-deep);
  font-size: var(--fs-20);
  flex: 0 0 auto;
  padding: 0 3px;
}
@media (max-width: 720px) {
  .flow { flex-direction: column; gap: 10px; max-width: 340px; }
  .flow__arrow { transform: rotate(90deg); }
  .flow__step { flex-direction: row; gap: 14px; text-align: left; padding: 14px 18px; }
  .flow__desc { flex: 1; }
}

/* ===== 核心业务 ===== */
.services { background: linear-gradient(180deg, transparent, var(--bg-soft) 50%, transparent); border-radius: 40px; }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-24); }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--sp-32) var(--sp-24); transition: transform var(--dur-3) var(--ease), box-shadow var(--dur-3), border-color var(--dur-3); position: relative; overflow: hidden; }
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-deep)); transition: width var(--dur-4) var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { width: 100%; }
.card__tag { display: inline-block; font-size: var(--fs-12); letter-spacing: 1px; color: var(--gold-deep); background: var(--bg-soft); padding: 5px 12px; border-radius: 999px; margin-bottom: 16px; }
.card h3 { font-size: var(--fs-22); margin-bottom: 12px; }
.card p { color: var(--ink-soft); font-size: var(--fs-16); }
.card__list { list-style: none; margin-top: 18px; display: grid; gap: 10px; }
.card__list li { font-size: var(--fs-14); padding-left: 22px; position: relative; color: var(--ink); }
.card__list li::before { content: "◆"; position: absolute; left: 0; color: var(--gold); font-size: var(--fs-11); top: 4px; }

/* ===== 养护中心 ===== */
.care__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.care__photo { aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); }
.care__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.care__caption { margin-top: 14px; font-size: var(--fs-14); color: var(--ink-soft); text-align: center; }
.care__text h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; margin-bottom: 16px; }
.care__points { list-style: none; margin: 24px 0 30px; display: grid; gap: 14px; }
.care__points li { padding-left: 26px; position: relative; font-size: var(--fs-15); color: var(--ink-soft); }
.care__points li strong { color: var(--ink); }
.care__points li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }

/* ===== 门店 ===== */
.store__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-24); align-items: stretch; }
.store { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--sp-32) var(--sp-24); transition: transform var(--dur-3) var(--ease), box-shadow var(--dur-3); display: flex; flex-direction: column; }
.store:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.store h3 { font-size: var(--fs-20); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; min-height: 54px; line-height: 1.35; }
.store__addr { font-size: var(--fs-15); color: var(--ink); margin-bottom: 12px; flex: 1; min-height: 72px; line-height: 1.55; }
.store__addr-link { color: var(--ink); border-bottom: 1px dashed var(--gold); transition: color var(--dur-2); text-decoration: none; }
.store__addr-link:hover { color: var(--gold-deep); }
.store__ph { color: var(--gold-deep); font-size: var(--fs-13); border-bottom: 1px dashed var(--gold); white-space: nowrap; transition: opacity var(--dur-2); }
.store__ph:hover { opacity: .75; }
.store__meta { font-size: var(--fs-14); color: var(--ink-soft); margin-top: 6px; white-space: nowrap; }
.store__meta a { color: var(--gold-deep); }
.store__nav-btn { display: block; margin-top: auto; padding: 8px 18px; min-height: 44px; font-size: var(--fs-14); color: var(--gold-deep); border: 1px solid var(--gold); border-radius: 999px; text-align: center; transition: background var(--dur-2), color var(--dur-2); align-self: stretch; }
.store__nav-btn:hover { background: var(--gold-deep); color: #fff; }

/* 门店实景 */
.store__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.store__shot {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.store__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 3 / 4;
  transition: transform var(--dur-6) var(--ease);
}
.store__shot:hover img { transform: scale(1.04); }
.store__shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 16px 12px;
  background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,0));
  color: #fff;
  font-size: var(--fs-13);
  letter-spacing: .5px;
}

/* ===== 媒体 / 小红书 ===== */
.media__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; background: var(--ink); color: #f6f1e8; border-radius: 28px; padding: 56px; }
.media__text .kicker { color: var(--gold); }
.media__text h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; }
.media__text .lead { color: #cfc6b6; }
.media__accounts { margin-top: 28px; display: grid; gap: 14px; }
.media__accounts a.account { display: block; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; padding: 16px 20px; background: rgba(255,255,255,.04); transition: background var(--dur-25), border-color var(--dur-25), transform var(--dur-25) var(--ease); }
.media__accounts a.account:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); transform: translateX(6px); }
.account__name { display: block; font-weight: 700; font-size: var(--fs-16); }
.account__meta { display: block; font-size: var(--fs-13); color: #b9b0a0; margin-top: 4px; }
/* 小红书品牌/种草标识 */
.xhs-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
  padding: 3px 11px 3px 9px;
  background: #ff2442;
  color: #fff;
  border-radius: 999px;
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: .5px;
  vertical-align: middle;
  box-shadow: 0 6px 16px -6px rgba(255, 36, 66, .6);
}
.xhs-badge__leaf { font-size: var(--fs-12); line-height: 1; }

.media__screen {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  display: block;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform var(--dur-18) var(--ease);
}
.media__screen:active { transform: scale(.98); }
.media__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-6) var(--ease);
}
.media__screen:hover img { transform: scale(1.045); }
.media__screen-hint {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 18px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,0));
  color: #fff;
  font-size: var(--fs-13);
  letter-spacing: 1px;
  text-align: center;
}
.media__screen::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
  pointer-events: none;
}

/* 小红书手机预览 + CTA */
.media__phone {
  max-width: 300px;
  margin: 0 auto;
  background: #0c0c0c;
  border-radius: 34px;
  padding: 12px 12px 18px;
  box-shadow: 0 28px 70px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.08);
  text-align: center;
}
.media__notch {
  display: flex;
  justify-content: center;
  padding: 8px 0 10px;
}
.media__notch span {
  width: 72px;
  height: 18px;
  border-radius: 9px;
  background: #1a1a1a;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.media__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  padding: 12px 24px;
  border-radius: 999px;
  background: #ff2442;
  color: #fff;
  font-weight: 700;
  font-size: var(--fs-14);
  letter-spacing: .5px;
  box-shadow: 0 8px 24px rgba(255,36,66,.38);
  transition: transform var(--dur-18) var(--ease), box-shadow var(--dur-18);
  -webkit-tap-highlight-color: transparent;
}
.media__cta:hover { box-shadow: 0 10px 28px rgba(255,36,66,.5); }
.media__cta:active { transform: scale(.96); box-shadow: 0 6px 18px rgba(255,36,66,.45); }
.media__cta-icon { font-size: var(--fs-13); }
.media__phone-tip {
  margin-top: 10px;
  font-size: var(--fs-12);
  color: rgba(255,255,255,.48);
  letter-spacing: .3px;
}

/* 触屏点击欲望：轻微呼吸提示 */
@media (hover: none) and (pointer: coarse) {
  .media__cta {
    animation: ctaPulse 2.2s ease-in-out infinite;
  }
}
@keyframes ctaPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* ===== 联系 ===== */
.contact__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; background: var(--card); border: 1px solid var(--line); border-radius: 28px; padding: 52px; box-shadow: var(--shadow); }
.contact__left h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; margin-bottom: 14px; }
.contact__list { list-style: none; margin-top: 26px; display: grid; gap: 16px; }
.contact__list li { display: flex; align-items: center; gap: 16px; font-size: var(--fs-15); border-bottom: 1px dashed var(--line); padding-bottom: 14px; flex-wrap: wrap; row-gap: 4px; }
.contact__list span { width: 52px; color: var(--ink-soft); font-size: var(--fs-13); letter-spacing: 1px; flex-shrink: 0; }
.contact__list strong, .contact__list a { white-space: nowrap; }
.contact__note { font-style: normal; font-size: var(--fs-12); color: var(--ink-soft); margin-left: 4px; white-space: nowrap; }
.contact__tel {
  color: var(--gold-deep);
  font-size: var(--fs-15);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
  -webkit-tap-highlight-color: transparent;
}
.contact__tel:hover { color: var(--gold); }
.contact__right { display: flex; align-items: center; justify-content: center; }
.contact__qr { text-align: center; }
.contact__qr img { width: 190px; height: auto; margin: 0 auto 14px; border-radius: 12px; box-shadow: var(--shadow); }
.contact__qr span { display: block; font-size: var(--fs-14); color: var(--ink-soft); letter-spacing: 1px; }

/* ===== 页脚 ===== */
.footer { background: var(--ink); color: #d8d0c2; padding: 56px 24px 40px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; display: grid; gap: var(--sp-32); }
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__logo { height: 48px; width: auto; filter: invert(1); }
.footer__brand strong { color: #fff; font-size: var(--fs-17); }
.footer__brand p { font-size: var(--fs-13); color: #a89f8f; }
.footer__nav { display: flex; gap: 26px; flex-wrap: wrap; }
.footer__nav a { font-size: var(--fs-14); color: #b9b0a0; transition: color var(--dur-25); }
.footer__nav a:hover { color: var(--gold); }
.footer__copy { font-size: var(--fs-12); color: #7d7565; border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; }

/* ===== 滚动渐显 ===== */
/* 默认永远可见: 爬虫/无 JS 用户也能读到完整正文 (GEO 友好)
   JS 端会主动给"还未进入视口"的元素加 .reveal--prep 临时隐藏,
   进入视口时去掉该类, 触发 transition 渐显。
   因此即使 JS 失败/未加载, 内容也始终可见。 */
.reveal { opacity: 1; transform: none; filter: none; transition: opacity var(--dur-6) var(--ease), transform var(--dur-6) var(--ease), filter var(--dur-6) var(--ease); }
.reveal--prep { opacity: 0; transform: translateY(28px) scale(.99); filter: blur(4px); }
.reveal.in { opacity: 1; transform: none; filter: none; }

/* 网格子项错峰浮现 */
.about__grid.reveal.in .feature,
.cards.reveal.in .card,
.store__grid.reveal.in .store,
.media__inner.reveal.in .account,
.founder.reveal.in .founder__points li,
.care__inner.reveal.in .care__points li {
  animation: fadeBlur .7s var(--ease) both;
}
.about__grid.reveal.in .feature:nth-child(2),
.cards.reveal.in .card:nth-child(2),
.store__grid.reveal.in .store:nth-child(2) { animation-delay: .08s; }
.about__grid.reveal.in .feature:nth-child(3),
.cards.reveal.in .card:nth-child(3),
.store__grid.reveal.in .store:nth-child(3) { animation-delay: .16s; }
.about__grid.reveal.in .feature:nth-child(4),
.cards.reveal.in .card:nth-child(4),
.store__grid.reveal.in .store:nth-child(4) { animation-delay: .24s; }

/* 已移除卡片悬浮跟随光标的光晕 */

/* ===== 响应式 ===== */
@media (max-width: 1160px) {
  .store__grid { grid-template-columns: repeat(2, 1fr); }
}
/* ===== nav-unify-2026-08-10: 1280px 紧档阶梯 ===== */
@media (max-width: 1280px) and (min-width: 1161px) {
  /* 中等桌面视口（16 项导航，2026-09-13 重调）：需 1014px ≤ 可用 1040px，保住单行 */
  .nav__inner { padding: 14px 22px; gap: 22px; }
  .nav__links { gap: 12px; }
  .nav__links a { font-size: var(--fs-13); letter-spacing: 0; }
  .nav__cta { padding: 7px 14px; font-size: var(--fs-12); }
}
/* ===== /nav-unify-2026-08-10 ===== */

/* ===== nav-16items-2026-09-13 =====
   ≤1160px 改用汉堡抽屉：16 项导航在窄桌面怎么压都放不下（1001px 处需 1057px、可用仅 896px），
   与之塞 11px 小字，不如直接用抽屉，保证不压 logo、不换行、不缩小到看不清。 */
@media (max-width: 1160px) {
  .nav__inner { padding: 12px 18px; gap: 18px; justify-content: space-between; }
  .brand__logo { height: 40px; }
  /* 三条杠汉堡：撑到最右，跟左 brand 形成两端平衡 */
  .nav__toggle { display: flex; margin-left: auto; }
  .nav__links {
    position: fixed; inset: 64px 16px auto 16px; flex-direction: column; align-items: stretch; gap: 6px;
    background: var(--bg); border: 1px solid var(--line); border-radius: 18px; padding: 16px;
    box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; pointer-events: none; transition: var(--dur-3) var(--ease);
    /* 抽屉 fixed 定位 + 内容超过 100vh-顶64-底栏44 时会被视口裁剪且无法滚动，
       故加 max-height + 面板内滚动三件套，保证底部项与 CTA 任何机型都可见。 */
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }
  .nav__links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 12px 8px; }
  .nav__cta { text-align: center; }
  .nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.active span:nth-child(2) { opacity: 0; }
  .nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
/* 721–1160px：抽屉收成右上角 420px 下拉面板，避免横跨整屏的巨型菜单（≤720 维持原有近乎全宽） */
@media (max-width: 1160px) and (min-width: 721px) {
  .nav__links { left: auto; right: 16px; width: 420px; max-width: calc(100vw - 32px); }
}
@media (max-width: 980px) {
  .about__grid { grid-template-columns: repeat(2, 1fr); }
  .founder, .care__inner { grid-template-columns: 1fr; gap: 32px; }
  .certs__inner { grid-template-columns: 1fr; gap: 36px; }
  .founder { padding: 28px; }
  .founder__photo { max-width: 320px; margin: 0 auto; width: 100%; }
  .care__inner, .media__inner, .contact__inner { grid-template-columns: 1fr; gap: 36px; }
  .media__inner, .contact__inner { padding: 36px; }
  .store__gallery { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 720px) {
  /* 导航抽屉相关规则已上移至 @media (max-width:1160px)（2026-09-13 16 项导航重调） */
  .brand__logo { height: 36px; }
  .cards { grid-template-columns: 1fr; }
  /* 手机端 feature 栅格折为单列：保持 2 列时每格仅约 163px，中文会「面条式」逐词断行 */
  .about__grid { grid-template-columns: 1fr; }
  /* 全部分类：手机端改 4 列紧凑图标网格（一屏全见 8 个业务，不滑动） */
  .categories .cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 8px 16px 16px;
    margin: 0;
  }
  .categories .card {
    flex: none;
    padding: 16px 6px;
    text-align: center;
    cursor: pointer;
    transition: transform var(--dur-25) var(--ease), box-shadow var(--dur-25), border-color var(--dur-25);
  }
  .categories .card:hover { transform: none; }
  .categories .card::before { display: none; }
  .categories .card__tag {
    display: inline-block; font-size: var(--fs-11); padding: 3px 8px;
    border-radius: 20px; background: rgba(201,168,106,.12); color: var(--gold); margin: 0;
  }
  .categories .card h3 { font-size: var(--fs-13); margin: 8px 0 0; }
  .categories .card p,
  .categories .card .btn { display: none; }
  .categories .card:active { transform: scale(.94); border-color: var(--gold); }

  /* 下方业务卡片：手机端改 2 列紧凑网格（与“全部分类”风格统一，大幅减少竖向滚动） */
  .platforms .cards,
  .services .cards,
  .trust .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 16px;
  }
  .platforms .card,
  .services .card,
  .trust .card {
    padding: 16px 14px;
    transition: transform var(--dur-25) var(--ease), box-shadow var(--dur-25), border-color var(--dur-25);
  }
  .platforms .card::before,
  .services .card::before,
  .trust .card::before { display: none; }
  .platforms .card__tag,
  .services .card__tag,
  .trust .card__tag {
    font-size: var(--fs-11); padding: 3px 8px; margin-bottom: 8px;
  }
  .platforms .card h3,
  .services .card h3,
  .trust .card h3 { font-size: var(--fs-15); margin: 0 0 6px; }
  .platforms .card p,
  .services .card p,
  .trust .card p { font-size: var(--fs-12); line-height: 1.55; margin: 0 0 8px; }
  .services .card__list { margin: 0 0 8px; gap: 5px; }
  .services .card__list li { font-size: var(--fs-11); padding-left: 14px; }
  .platforms .card .btn {
    width: 100%; justify-content: center; padding: 8px 10px; font-size: var(--fs-12); min-height: 38px;
  }
  .platforms .card .btn:hover { transform: none; }
  .platforms .card:active,
  .services .card:active,
  .trust .card:active { transform: scale(.97); border-color: var(--gold); }

  /* 门店：手机端 2×2 紧凑网格 */
  .store__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 0 16px; }
  .stores .store { padding: 16px 14px; }
  .stores .store h3 {
    font-size: var(--fs-15);
    margin-bottom: 8px;
    min-height: 44px;
    line-height: 1.4;
    align-items: center;
  }
  .stores .store__addr,
  .stores .store__meta { font-size: var(--fs-12); line-height: 1.5; }
  .stores .store__addr {
    min-height: 60px;
    margin-bottom: 6px;
  }
  .stores .store__meta { margin: 0 0 4px; }
  .stores .store__nav-btn { font-size: var(--fs-12); padding: 8px 10px; margin-top: auto; }
  .store__gallery { grid-template-columns: 1fr; gap: 14px; }
  .certs__photo { max-width: 360px; margin: 0 auto; width: 100%; }
  .media__phone { max-width: 260px; padding: 10px 10px 14px; border-radius: 28px; }
  .media__notch { padding: 6px 0 8px; }
  .media__notch span { width: 60px; height: 15px; }
  .media__screen { border-radius: 20px; }
  .media__screen::after { border-radius: 20px; }
  .media__cta { padding: 11px 20px; font-size: var(--fs-13); margin-top: 12px; }
  .media__phone-tip { font-size: var(--fs-11); }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .section { padding: var(--sp-80) var(--sp-20); }

  /* 移动端专属细化 */
  .hero { min-height: 100svh; padding: 104px 20px 72px; }
  .footer { padding-bottom: calc(40px + 64px + env(safe-area-inset-bottom)); }
  a, button, .bottom-nav__item, .est-fab__btn, .faq__item summary { -webkit-tap-highlight-color: transparent; }
  .hero__actions .btn { min-height: 52px; }
  .store__nav-btn { width: 100%; text-align: center; }

  /* 已移除移动端光斑/辉光覆盖规则 */
}
/* 已移除未使用的 spotDrift 关键帧 */

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal, .reveal--prep { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
}

/* ===== 微信估价浮窗 ===== */
.est-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.est-fab__btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold) 60%, #d8c08a);
  color: #2a2316;
  font-size: var(--fs-15);
  font-weight: 800;
  letter-spacing: .4px;
  cursor: pointer;
  box-shadow: 0 16px 36px -14px rgba(140, 111, 60, .75);
  transition: transform var(--dur-25) var(--ease), box-shadow var(--dur-25) var(--ease), filter var(--dur-25);
  -webkit-tap-highlight-color: transparent;
}
.est-fab__btn:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -14px rgba(140, 111, 60, .85); filter: brightness(1.04); }
.est-fab__btn:active { transform: scale(.96); }
.est-fab__btn svg { width: 22px; height: 22px; flex-shrink: 0; }

.est-panel {
  width: 300px;
  max-width: calc(100vw - 32px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px 22px 22px;
  box-shadow: 0 30px 70px -22px rgba(40, 30, 10, .42);
  position: relative;
  transform-origin: bottom right;
  opacity: 0;
  transform: translateY(12px) scale(.96);
  transition: opacity var(--dur-22) var(--ease), transform var(--dur-22) var(--ease);
  pointer-events: none;
}
.est-fab.open .est-panel {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.est-panel__close {
  position: absolute;
  top: 12px; right: 14px;
  width: 30px; height: 30px;
  border: 0; border-radius: 50%;
  background: var(--bg-soft);
  color: var(--ink-soft);
  font-size: var(--fs-20); line-height: 1;
  cursor: pointer;
  transition: background var(--dur-2), color var(--dur-2);
  -webkit-tap-highlight-color: transparent;
}
.est-panel__close:hover { background: var(--gold); color: #fff; }
.est-panel__head { text-align: center; padding-right: 24px; }
.est-panel__kicker {
  display: inline-block;
  font-size: var(--fs-11); letter-spacing: 2px; font-weight: 700;
  color: var(--gold-deep);
  background: var(--bg-soft);
  padding: 4px 12px; border-radius: 999px;
}
.est-panel__title { font-size: var(--fs-20); font-weight: 800; margin: 12px 0 6px; }
.est-panel__sub { font-size: var(--fs-13); color: var(--ink-soft); }
.est-panel__qr {
  margin: 18px auto 14px;
  text-align: center;
}
.est-panel__qr img {
  width: 160px; height: auto;
  margin: 0 auto 10px;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: block;
}
.est-panel__qr span { font-size: var(--fs-12); color: var(--ink-soft); }
.est-panel__id {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.est-panel__wx { font-size: var(--fs-17); font-weight: 800; color: var(--ink); letter-spacing: .5px; white-space: nowrap; }
.est-panel__copy {
  border: 0;
  background: var(--ink);
  color: #fff;
  font-size: var(--fs-13); font-weight: 700;
  padding: 7px 14px; border-radius: 999px;
  cursor: pointer;
  transition: background var(--dur-2), transform var(--dur-15);
  -webkit-tap-highlight-color: transparent;
}
.est-panel__copy:hover { background: var(--gold-deep); }
.est-panel__copy:active { transform: scale(.94); }
.est-panel__steps {
  list-style: none;
  display: grid; gap: 9px;
  margin: 0;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}
.est-panel__steps li {
  display: flex; align-items: center; gap: 10px;
  font-size: var(--fs-14); color: var(--ink);
}
.est-panel__steps span {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--on-gold); font-weight: 800; font-size: var(--fs-12);
}
.est-panel__call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 13px 16px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-size: var(--fs-15);
  font-weight: 700;
  letter-spacing: .3px;
  transition: background var(--dur-2), transform var(--dur-15);
  -webkit-tap-highlight-color: transparent;
  white-space: nowrap;
}
.est-panel__call > span, .est-panel__call > b { flex-shrink: 0; }
.est-panel__call svg { width: 19px; height: 19px; flex-shrink: 0; }
.est-panel__call:hover { background: var(--gold-deep); }
.est-panel__call:active { transform: scale(.97); }

/* 移动端：浮窗抬起至底部栏之上 + 呼吸提示 */
@media (max-width: 720px) {
  .est-fab {
    right: 14px;
    bottom: calc(64px + env(safe-area-inset-bottom) + 14px);
    gap: 10px;
  }
  .est-fab__btn { padding: 12px 18px; font-size: var(--fs-14); }
  .est-fab__btn svg { width: 20px; height: 20px; }
  .est-panel { width: min(300px, calc(100vw - 28px)); }
  @media (hover: none) and (pointer: coarse) {
    .est-fab__btn { animation: estPulse 2.4s ease-in-out infinite; }
  }
}
@keyframes estPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 16px 36px -14px rgba(140,111,60,.75); }
  50% { transform: scale(1.045); box-shadow: 0 20px 42px -12px rgba(140,111,60,.9); }
}
@media print {
  .est-fab, .bottom-nav { display: none !important; }
}

/* ===== 实时行情板块 ===== */
/* 行情页背景已统一为全站 --bg（原 --bg-soft 深米色反差被反馈不一致） */
.market__bar { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.market__updated { font-size: var(--fs-13); color: var(--ink-soft); }
.market__updated b { color: var(--gold-deep); font-weight: 700; }
.market__note { font-size: var(--fs-12); color: var(--ink-soft); }
.market__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-20); margin-bottom: 4px; }
.market__card {
  position: relative; overflow: hidden;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 22px 24px; text-align: center;
  box-shadow: 0 6px 22px -14px rgba(140,111,60,.28);
  transition: transform var(--dur-3) var(--ease), box-shadow var(--dur-3), border-color var(--dur-3);
}
.market__card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold-deep), var(--gold)); }
.market__card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -18px rgba(140,111,60,.4); border-color: var(--gold); }
.market__card-head { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin-bottom: 14px; }
.market__name { font-size: var(--fs-17); font-weight: 800; color: var(--ink); }
.market__unit { font-size: var(--fs-12); color: var(--ink-soft); font-weight: 400; white-space: nowrap; }
.market__price { font-size: clamp(26px, 4vw, 34px); font-weight: 800; color: var(--gold-deep); line-height: 1; letter-spacing: -.5px; }
.market__per { font-size: var(--fs-14); font-weight: 600; color: var(--ink-soft); margin-left: 2px; }
.market__delta { display: inline-block; margin-top: 12px; font-size: var(--fs-14); font-weight: 700; }
.market__delta.up { color: #c0392b; }
.market__delta.down { color: #1f8a4c; }
.market__delta.flat { color: var(--ink-soft); font-weight: 400; }
.market__name { font-weight: 700; color: var(--ink); }
.market__unit { font-size: var(--fs-11); color: var(--ink-soft); font-weight: 400; margin-left: 4px; white-space: nowrap; }
.market__disclaimer { font-size: var(--fs-12); color: var(--ink-soft); margin-top: 14px; line-height: 1.7; }
.market__more { margin-top: 20px; text-align: center; }
@media (max-width: 720px) {
  .market__cards { grid-template-columns: 1fr; gap: 14px; }
  .market__card { padding: 24px 20px 22px; }
}

/* /market/ 页移动端首屏：修 nav 重叠 + 三卡横向一行（一屏全见） */
@media (max-width: 720px) {
  /* 1) 顶部重叠：.nav 是 fixed top:0 高约 88px，需把 hero 推下去避开 */
  .section.market { padding-top: 104px; padding-bottom: 24px; }
  /* 2) hero 紧凑 + 隐藏 lead（节省 ~40px，SEO 文本仍在 HTML 里） */
  .section.market .section__head { margin-bottom: 10px; }
  .section.market .kicker { font-size: var(--fs-11); margin-bottom: 6px; letter-spacing: .5px; }
  .section.market h2, .section.market h1 { font-size: var(--fs-17); line-height: 1.3; margin: 4px 0 6px; font-weight: 800; }
  .section.market .lead { display: none; }
  /* 3) meta 紧凑 */
  .market__bar { gap: 4px 10px; margin-bottom: 12px; font-size: var(--fs-11); }
  .market__updated, .market__note { font-size: var(--fs-11); }
  /* 4) 三卡改成横向一行：一屏同时看到 黄金/白银/铂金 */
  .market__cards { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .market__card { padding: 14px 6px 12px; border-radius: 10px; }
  .market__card::before { height: 3px; }
  .market__card-head { flex-direction: column; gap: 0; align-items: center; margin-bottom: 6px; }
  .market__name { font-size: var(--fs-13); }
  .market__unit { font-size: var(--fs-11); margin-left: 0; white-space: nowrap; }
  .market__price { font-size: var(--fs-16); letter-spacing: -.3px; white-space: nowrap; }
  .market__per { font-size: var(--fs-11); }
  .market__delta { font-size: var(--fs-11); margin-top: 4px; }
  .market__disclaimer { font-size: var(--fs-11); margin-top: 12px; line-height: 1.6; }
}

/* ===== 移动端底部快捷联系栏 ===== */
.bottom-nav {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(251,249,245,.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
  z-index: 1000;
}
.bottom-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 64px;
  color: var(--ink-soft);
  font-size: var(--fs-12);
  letter-spacing: .3px;
  transition: color var(--dur-2), background var(--dur-2);
  -webkit-tap-highlight-color: transparent;
}
.bottom-nav__item:active { color: var(--gold-deep); background: rgba(184,150,90,.08); }
.bottom-nav__icon { width: 22px; height: 22px; }
.bottom-nav__icon svg { width: 100%; height: 100%; }

@media (max-width: 720px) {
  .bottom-nav { display: flex; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
}

/* 桌面端：同一条快捷栏改为居中胶囊悬浮条（不满屏宽，避免手机 App 移植感） */
@media (min-width: 721px) {
  .bottom-nav {
    display: flex;
    left: 50%; right: auto; bottom: 24px;
    transform: translateX(-50%);
    width: auto; max-width: calc(100vw - 48px);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px;
    gap: 2px;
    background: rgba(251,249,245,.94);
    -webkit-backdrop-filter: saturate(150%) blur(14px);
    backdrop-filter: saturate(150%) blur(14px);
    box-shadow: 0 18px 44px -18px rgba(60,48,26,.45);
  }
  .bottom-nav__item {
    flex: 0 0 auto;
    flex-direction: row;
    gap: 8px;
    /* 2026-08-29 无障碍：42px 低于 44px 推荐点击目标 → 提到 44px */
    height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: var(--fs-14);
    white-space: nowrap;
  }
  .bottom-nav__item:hover { color: var(--gold-deep); background: rgba(184,150,90,.10); }
  .bottom-nav__icon { width: 18px; height: 18px; }
  body { padding-bottom: 96px; }
}
/* 窄桌面/平板：胶囊紧凑一档 + 微信浮窗抬起，两者不打架 */
@media (min-width: 721px) and (max-width: 980px) {
  .bottom-nav__item { padding: 0 13px; font-size: var(--fs-13); gap: 6px; }
  .bottom-nav__icon { width: 17px; height: 17px; }
}
@media (min-width: 721px) and (max-width: 900px) {
  .est-fab { bottom: 96px; }
}

/* ===== 业务卡点击放大预览 modal（手机端图标网格用） ===== */
.card-modal {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  background: rgba(10, 8, 6, .6);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-25) var(--ease), visibility var(--dur-25);
}
.card-modal.open { opacity: 1; visibility: visible; }
.card-modal__panel {
  position: relative; width: 100%; max-width: 340px;
  background: var(--bg); border: 1px solid var(--line); border-radius: 22px;
  padding: 38px 28px 28px; text-align: center;
  transform: scale(.88); transition: transform var(--dur-28) var(--ease);
  box-shadow: var(--shadow);
}
.card-modal.open .card-modal__panel { transform: scale(1); }
.card-modal__panel .m-tag {
  display: inline-block; font-size: var(--fs-12); color: var(--gold);
  background: rgba(201,168,106,.12); padding: 3px 12px; border-radius: 20px; margin-bottom: 12px;
}
.card-modal__panel h3 { font-size: var(--fs-22); margin-bottom: 12px; }
.card-modal__panel p { color: var(--ink-soft); font-size: var(--fs-16); line-height: 1.7; margin-bottom: 22px; }
.card-modal .m-link { width: 100%; }
.m-close {
  position: absolute; top: 12px; right: 16px;
  background: none; border: none; font-size: var(--fs-28); line-height: 1;
  color: var(--ink-soft); cursor: pointer;
}

/* ===== 成交案例页 ===== */
.case { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--sp-32) var(--sp-24); margin-bottom: var(--sp-24); position: relative; overflow: hidden; }
.case::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-deep)); transition: width var(--dur-4) var(--ease); }
.case:hover::before { width: 100%; }
.case__tag { display: inline-block; font-size: var(--fs-12); letter-spacing: 1px; color: var(--gold-deep); background: var(--bg-soft); padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; }
.case h3 { font-size: var(--fs-22); margin-bottom: 18px; letter-spacing: -.3px; }
.case__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.case__meta span { font-size: var(--fs-13); color: var(--ink-soft); background: var(--bg-soft); border: 1px solid var(--line); padding: 6px 12px; border-radius: 8px; }
.case__flow { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.case__flow > div { padding: 16px 18px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; }
.case__flow b { display: block; font-size: var(--fs-15); color: var(--ink); margin-bottom: 8px; }
.case__flow p { font-size: var(--fs-16); color: var(--ink-soft); line-height: 1.7; }
@media (max-width: 720px) {
  .case { padding: 24px 20px; }
  .case__flow { grid-template-columns: 1fr; }
  .case h3 { font-size: var(--fs-20); }
}

/* Accessibility: skip-to-main-content link (visually hidden, shown on keyboard focus) */
.skip-link {
  position: absolute;
  left: -9999px; top: 0;
  width: 1px; height: 1px; overflow: hidden;
  z-index: 2000;
}
.skip-link:focus, .skip-link:active {
  left: 1rem; top: 1rem;
  width: auto; height: auto; padding: .6rem 1rem;
  background: var(--gold-deep); color: #fff;
  border-radius: 10px; font-weight: 600;
  box-shadow: 0 8px 24px -10px rgba(60,48,26,.5);
}

/* 面包屑导航（知识中心可见面包屑，配合 JSON-LD BreadcrumbList 强化内部链接与层级） */
.breadcrumb {
  max-width: var(--maxw);
  margin: 0 auto;
  /* 顶部 nav 是 position: fixed（高约 72px），需预留足够顶部空间避免面包屑文字被导航遮挡 */
  padding: 88px 24px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-13);
  color: var(--ink-soft);
  font-family: inherit;
}
.breadcrumb a {
  color: var(--gold-deep);
  text-decoration: none;
  transition: color var(--dur-2) ease;
}
.breadcrumb a:hover { color: #6f5630; }
.breadcrumb .sep { color: #cdbfa6; }
.breadcrumb .cur { color: var(--ink); font-weight: 500; }

/* 知识中心分类快捷导航（sticky 锚点跳转，缓解「散页堆叠」观感） */
.catnav {
  position: sticky;
  /* 与 .nav 实际渲染高度（14+44+14=72px）对齐，避免贴顶滚动时压到导航 */
  top: 72px;
  z-index: 60;
  background: rgba(250, 247, 240, 0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.catnav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 24px;
}
.catnav a {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: var(--fs-13);
  color: var(--ink-soft);
  text-decoration: none;
  transition: all var(--dur-2) ease;
  white-space: nowrap;
}
.catnav a:hover {
  background: var(--gold-deep);
  color: #fff;
  border-color: var(--gold-deep);
}

/* ============================================================
   高级感精修层（2026-08-28）
   原则：纯增量、可逆；不动布局/导航/信息架构/内容；
   不破坏已定强迫症规范（单行导航/不按字断行/卡片对齐/CTA 一致）。
   ============================================================ */

/* 1) 设计 token 扩展：分级阴影 / 亮金 / 焦点环（与既有 --shadow 并存） */
:root {
  --shadow-sm: 0 2px 10px -4px rgba(40, 30, 10, .10);
  --shadow-md: 0 10px 28px -14px rgba(40, 30, 10, .16);
  --shadow-xl: 0 30px 70px -24px rgba(40, 30, 10, .26);
  --gold-bright: #d8c08a;
  --ring: rgba(184, 150, 90, .38);
}

/* 2) 排版精修：标题平衡换行（避免单字/词孤行，契合强迫症对齐要求） */
h1, h2, h3, .hero__title { text-wrap: balance; }
/* 数字等宽：行情价/统计数字不随数值抖动 */
.market__price, .market__delta, .market__per, .stat__num, .stat__value {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}
/* 选区配色（细节高级感） */
::selection { background: var(--gold); color: var(--on-gold); }

/* 3) 全站可访问焦点环（仅键盘触发，不干扰鼠标点击观感） */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
.bottom-nav__item:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 8px;
}

/* 4) 主按钮精致化：深色渐变底 + 光泽扫过（保留既有 hover 变金逻辑） */
.btn--primary {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #2a241a, var(--ink) 55%, #3a3126);
}
.btn--primary::after {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .26), transparent);
  transform: skewX(-22deg);
  transition: left var(--dur-65) var(--ease);
  pointer-events: none;
}
.btn--primary:hover::after { left: 135%; }

/* 5) 卡片/门店/案例/行情 hover 阴影加深（更柔软的悬浮抬升） */
.card:hover,
.feature:hover,
.store:hover,
.case:hover,
.market__card:hover {
  box-shadow: var(--shadow-xl);
}

/* 6) 顶部金色滚动进度条（JS 动态创建，无需改各页 HTML） */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-bright));
  border-radius: 0 3px 3px 0;
  box-shadow: 0 1px 6px rgba(184, 150, 90, .55);
  z-index: 1400;
  pointer-events: none;
  transition: width var(--dur-12) linear;
}

/* 7) 自定义滚动条（webkit，细窄浮动式） */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
  background: #d8cdb7;
  border-radius: 8px;
  border: 3px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* 8) 减少动态偏好：关掉本次新增的动效（既有规则已关渐变/位移） */
@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none !important; }
  .btn--primary::after { display: none !important; }
}

/* ============================================================
   深色模式（2026-08-29）
   设计要点：
   ① 跟随系统 prefers-color-scheme，纯 CSS，零 HTML/JS 改动、零闪烁(FOUC)；
   ② 浅色模式的 token 默认值 = 改动前的实际值，故**浅色视觉完全不变**；
   ③ 引入语义化 token 根治「--ink 既当文字色又当背景色」的翻转陷阱：
      --surface-invert = 两种模式都保持深色的条带（页脚/媒体区）
      --cta-bg/--on-cta = 主按钮底色与其上文字（配对翻转，永不错位）
      --on-gold        = 金底上的文字（保证对比度）
   ============================================================ */

/* 语义 token（浅色默认值 = 当前实际观感） */
:root {
  color-scheme: light;
  --surface-invert: #1a1814;
  --cta-bg: #1a1814;
  --on-cta: #fff;
  /* 金底(#b8965a)上的文字：白字实测仅 2.78，远低于 AA。改用深棕 #3a2c10 → 4.88 达标，
     且"深棕配香槟金"比白字更贴合奢侈品调性。 */
  --on-gold: #3a2c10;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    /* 基础调色：暖近黑 + 提亮香槟金 */
    --bg: #14120f;
    --bg-soft: #1c1a15;
    --ink: #f2ede1;
    --ink-soft: #b0a894;
    --gold: #caa96b;
    --gold-deep: #a8884a;
    --gold-bright: #e6d3a4;
    /* 原 #302b23 在深底上对比度仅 1.33，分隔线几乎不可见 → 提亮到 #4f4a41(2.13) */
    --line: #4f4a41;
    --card: #1b1915;
    /* 阴影在深底上要更重才可见 */
    --shadow: 0 18px 50px -20px rgba(0, 0, 0, .65);
    --shadow-sm: 0 2px 10px -4px rgba(0, 0, 0, .5);
    --shadow-md: 0 10px 28px -14px rgba(0, 0, 0, .55);
    --shadow-xl: 0 30px 70px -24px rgba(0, 0, 0, .75);
    --ring: rgba(202, 169, 107, .5);
    /* 语义 token 翻转 */
    --surface-invert: #0e0d0a;
    --cta-bg: var(--gold);
    --on-cta: #241a08;
    /* 与浅色模式取同一个值，保证"金底文字"语义在两种模式下一致 */
    --on-gold: #3a2c10;
  }

  /* 毛玻璃导航 / 底部胶囊：翻转为深色玻璃 */
  .nav.scrolled { background: rgba(20, 18, 15, .82); }
  .bottom-nav { background: rgba(20, 18, 15, .94); }

  /* 深色条带：页脚 / 媒体区（两种模式都保持深色，内部浅色文字与描边继续成立） */
  .footer, .media__inner { background: var(--surface-invert); }

  /* 主 CTA：深底上改用香槟金 + 深色字（高对比，也更显高级） */
  .nav__cta {
    background: var(--cta-bg);
    color: var(--on-cta) !important;
    border-color: transparent;
  }
  .btn--primary,
  .est-panel__copy,
  .est-panel__call {
    background: var(--cta-bg);
    color: var(--on-cta);
  }
  .btn--primary:hover,
  .store__nav-btn:hover { color: var(--on-cta); }

  /* 注：金底文字(.flow__num/.est-panel__steps span)与 ::selection
     已改为直接引用 --on-gold token，两种模式同值，故此处不再重复覆盖。 */

  /* 渐变标题在深底上提亮一档。
     必须显式重声明 background-clip: text + color: transparent：
     `background` 简写会把 background-clip 重置为 border-box，
     导致渐变铺满元素框而非裁剪到文字（文字变不可见矩形，肉眼看似一块渐变条）。
     浅色 .grad 已设三件套，深色覆写 background 时不能丢。 */
  .grad {
    background: linear-gradient(92deg, var(--gold-bright), var(--gold) 55%, var(--gold-bright));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  /* 滚动条滑块在深底上收敛，避免抢眼 */
  ::-webkit-scrollbar-thumb { background: #3a342b; }

  /* 内容图在深底上略压暗，避免刺眼（logo 不受影响） */
  .card img,
  .store__shot img,
  .case img { opacity: .96; }
}

/* ============================================================
   状态样式 + 微动效（2026-08-29）
   ============================================================ */

/* 5.5 加载 / 空 / 错误 三态
   当前站点无表单、无异步请求，这三态暂未触发；预置是为了将来接入
   「行情拉取失败」「列表为空」「提交中」等场景时不必临时造样式，
   且保证全站观感一致（对应审查项：交互反馈不完整）。 */
:root { --danger: #a8322a; }

.is-loading {
  position: relative;
  color: var(--ink-soft);
  pointer-events: none;
}
.is-loading::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 16px; height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid var(--line);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: hssp-spin var(--dur-65) linear infinite;
}
@keyframes hssp-spin { to { transform: rotate(360deg); } }

.is-empty {
  padding: var(--sp-32) var(--sp-16);
  text-align: center;
  color: var(--ink-soft);
  font-size: var(--fs-13);
}

.is-error {
  padding: var(--sp-16);
  border: 1px solid rgba(168, 50, 42, .32);
  background: rgba(168, 50, 42, .045);
  border-radius: var(--radius);
  color: var(--danger);
  font-size: var(--fs-13);
}

/* 6.6 微动效：<details> 展开时内容淡入
   原生 <details> 不支持高度过渡，用「淡入 + 微位移」替代，无需 JS。 */
.faq__item[open] > *:not(summary) {
  animation: hssp-detail-in var(--dur-28) var(--ease) both;
}
@keyframes hssp-detail-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}

/* 深色模式下错误态需提亮，否则深红压在深底上几乎看不清 */
@media (prefers-color-scheme: dark) {
  :root { --danger: #f08a80; }
  .is-error {
    border-color: rgba(240, 138, 128, .38);
    background: rgba(240, 138, 128, .08);
  }
}

/* 尊重「减少动态」偏好：关掉本批新增的动画
   （既有规则已关闭渐变、位移与滚动进度条） */
@media (prefers-reduced-motion: reduce) {
  .is-loading::after { animation: none !important; }
  .faq__item[open] > *:not(summary) { animation: none !important; }
}

/* ===== post-nav：文章上一篇/下一篇（2026-08-31 AI 抓取深度优化新增） ===== */
.post-nav {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line);
}
.post-nav__link {
  font-size: var(--fs-13); color: var(--ink-soft); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px; min-width: 0;
  transition: color var(--dur-25);
}
.post-nav__link:hover { color: var(--gold-deep); }
.post-nav__link b {
  font-weight: 600; color: var(--ink);
  max-width: 24ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.post-nav__link--next { margin-left: auto; text-align: right; }

/* ===== post-meta：文章发布/更新日期（2026-08-31 新增，与 JSON-LD datePublished/dateModified 双写一致） ===== */
.post-meta {
  font-size: var(--fs-12); color: var(--ink-soft);
  margin-top: 12px; letter-spacing: .3px;
}
.post-meta strong { color: var(--gold-deep); font-weight: 600; }
