:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #23201d;
  --muted: #6f6760;
  --accent: #d85080;      /* PANTONE 212 C 主色 */
  --accent-deep: #b23a66;
  --accent-soft: #fbe9ef;
  --blue: #233e8e;       /* 辅助色 Blue */
  --green: #83b243;      /* 辅助色 Yellow Green */
  --purple: #611542;     /* 辅助色 Red Violet */
  --orange: #e86814;     /* 辅助色 Orange */
  --red: #b60015;        /* 辅助色 Red */
  --line: #e8e1da;
  --radius: 14px;
  --shadow: 0 2px 12px rgba(35,32,29,0.06);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Gotham Thin", "Gotham", -apple-system, "Segoe UI", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* 导航 */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 24px;
}
.brand { display: inline-block; }
.brand-logo { height: 58px; width: auto; display: block; }
.nav .brand-logo { height: 96px; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--muted); transition: color .15s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--accent); color: #fff !important;
  padding: 8px 18px; border-radius: 999px; font-weight: 600;
}
.nav-cta:hover { background: var(--accent-deep) !important; }

/* 通用 section */
.section { padding: 72px 0; }
.eyebrow { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
h1 { font-size: 44px; line-height: 1.15; font-weight: 700; letter-spacing: -0.5px; }
h2 { font-size: 32px; line-height: 1.2; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 16px; }
h3 { font-size: 20px; font-weight: 600; }
h1, h2, h3 { font-family: "Perpetua Titling MT", Georgia, "Times New Roman", serif; }
.lead { font-size: 18px; color: var(--muted); max-width: 640px; }
.center { text-align: center; }
.center .lead { margin: 0 auto; }

/* 按钮 */
.btn {
  display: inline-block; padding: 13px 30px; border-radius: 999px;
  font-size: 15px; font-weight: 600; cursor: pointer; border: none;
  transition: all .18s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Hero */
.hero { padding: 96px 0 72px; }
.hero-logo { width: 210px; height: auto; margin-bottom: 24px; }
@media (max-width: 860px) { .hero-logo { width: 160px; } }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero .lead { margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  border-radius: var(--radius); overflow: hidden;
}
.hero-visual img { width: 100%; height: 260px; object-fit: cover; border-radius: 10px; }

/* 卖点卡片 */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pillar {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow);
}
.pillar .icon { font-size: 26px; margin-bottom: 12px; }
.pillar h3 { font-size: 16px; margin-bottom: 8px; }
.pillar p { font-size: 14px; color: var(--muted); }

/* 产品网格 */
.sku-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 18px; }
.sku-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; transition: all .18s; box-shadow: var(--shadow);
}
.sku-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.sku-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.sku-card .meta { padding: 12px 14px; }
.sku-card .sku { font-size: 14px; font-weight: 600; }
.sku-card .count { font-size: 12px; color: var(--muted); }

/* 分组标题 */
.group-title { margin: 40px 0 18px; font-size: 22px; font-weight: 700; }
.group-title span { color: var(--accent); }

/* 模态灯箱 */
.modal {
  display: none; position: fixed; inset: 0; z-index: 100;
  background: rgba(20,17,15,0.92); padding: 40px 24px;
  flex-direction: column; align-items: center; justify-content: center;
}
.modal.open { display: flex; }
.modal img { max-height: 72vh; max-width: 92vw; border-radius: 10px; object-fit: contain; }
.modal .close { position: absolute; top: 24px; right: 32px; font-size: 34px; color: #fff; cursor: pointer; line-height: 1; }
.modal .nav-btn { position: absolute; top: 50%; transform: translateY(-50%); font-size: 40px; color: #fff; cursor: pointer; background: none; border: none; padding: 10px; }
.modal .prev { left: 20px; }
.modal .next { right: 20px; }
.modal .counter { color: #fff; margin-top: 14px; font-size: 14px; }

/* 招商卖点 */
.partner-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 24px; }
.partner-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.partner-card h3 { margin-bottom: 10px; }
.partner-card p { color: var(--muted); font-size: 15px; }

/* 表单 */
.form { max-width: 640px; margin: 32px auto 0; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 10px; font-size: 15px; font-family: inherit; background: var(--surface);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); text-align: center; margin-top: 16px; }

/* 页脚 */
.footer { border-top: 1px solid var(--line); padding: 48px 0; margin-top: 40px; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer .brand { margin-bottom: 12px; }
.footer p { font-size: 13px; color: var(--muted); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); }

/* 响应式 */
@media (max-width: 860px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-visual img { height: 200px; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.nav-cta) { display: none; }
}
@media (max-width: 480px) {
  .pillars { grid-template-columns: 1fr; }
  .sku-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 48px 0; }
}

/* 产品详情页（淘宝详情式纵向浏览） */
.detail-wrap { max-width: 780px; }
.detail-top { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding: 20px 0; }
.detail-top h1 { font-size: 28px; margin: 0; }
.detail-stack { padding: 0 0 24px; }
.detail-stack img { width: 100%; display: block; border-radius: 8px; margin-bottom: 12px; }
.back-link { font-size: 14px; color: var(--muted); display: inline-block; margin-bottom: 8px; }
.back-link:hover { color: var(--accent); }
@media (max-width: 860px) {
  .detail-top { flex-direction: column; align-items: flex-start; }
}

/* 品牌三位一体 IN / LOVELY / RELAXED */
.trinity { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.trinity-card { border-radius: var(--radius); padding: 40px 28px; text-align: center; color: #fff; }
.trinity-blue { background: var(--blue); }
.trinity-green { background: var(--green); }
.trinity-pink { background: var(--accent); }
.trinity-letter { font-size: 42px; font-weight: 800; letter-spacing: 3px; margin-bottom: 8px; }
.trinity-card h3 { font-size: 17px; margin-bottom: 10px; }
.trinity-card p { font-size: 14px; opacity: 0.96; line-height: 1.6; }
@media (max-width: 860px) { .trinity { grid-template-columns: 1fr; } }

/* 品牌故事页 */
.story-hero { max-width: 760px; }
.design-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.design-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; border-top: 4px solid var(--line); }
.design-card.d-purple { border-top-color: var(--purple); }
.design-card.d-orange { border-top-color: var(--orange); }
.design-card.d-red { border-top-color: var(--red); }
.design-card h3 { margin-bottom: 10px; }
.design-card p { font-size: 14px; color: var(--muted); }
@media (max-width: 860px) { .design-grid { grid-template-columns: 1fr; } }

/* 功能图标九宫格 */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px 20px; margin-top: 44px; }
.feature { text-align: center; padding: 8px 6px; }
.feature img { width: 84px; height: auto; margin: 0 auto 14px; border-radius: 12px; }
.feature h3 { font-size: 15px; margin-bottom: 6px; }
.feature p { font-size: 13px; color: var(--muted); max-width: 240px; margin: 0 auto; line-height: 1.55; }
@media (max-width: 860px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .features { grid-template-columns: repeat(2, 1fr); } .feature img { width: 72px; } }

/* ===== 新版首页（参考 ILR 官方首页版式）===== */
.serif { font-family: "Perpetua Titling MT", Georgia, "Times New Roman", serif; letter-spacing: 0; }

/* 导航：全大写 + 宽字距 */
.nav-links a { text-transform: uppercase; letter-spacing: 1.2px; font-size: 12px; font-weight: 500; }
.btn { text-transform: uppercase; letter-spacing: 1.5px; font-size: 13px; }

/* 全幅 Hero */
.hero-full { position: relative; min-height: 640px; display: flex; align-items: center; overflow: hidden; }
.hero-full-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-full-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,15,10,0.62) 0%, rgba(20,15,10,0.25) 55%, rgba(20,15,10,0.05) 100%); }
.hero-full-content { position: relative; z-index: 2; padding: 120px 0 90px; max-width: 620px; color: #fff; }
.hero-logo { width: 190px; height: auto; margin-bottom: 26px; }
.hero-tagline { font-family: "Perpetua Titling MT", Georgia, "Times New Roman", serif; font-size: 40px; line-height: 1.18; font-weight: 600; margin-bottom: 18px; }
.hero-sub { font-size: 15px; opacity: 0.92; margin-bottom: 30px; max-width: 480px; line-height: 1.7; }
.hero-heart { color: #ffb3c7; font-size: 22px; margin-left: 6px; }
.hero-actions .btn-ghost { border-color: rgba(255,255,255,0.6); color: #fff; }
.hero-actions .btn-ghost:hover { border-color: #fff; }
@media (max-width: 860px) {
  .hero-full { min-height: 560px; }
  .hero-tagline { font-size: 30px; }
  .hero-full-content { padding: 100px 0 60px; }
}

/* 产品精选区（Best Sellers） */
.best-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 36px 0 30px; }
.best-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: all .18s; }
.best-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow); }
.best-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.best-meta { padding: 12px 14px; display: flex; justify-content: space-between; align-items: center; }
.best-meta .sku { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.best-meta .view { font-size: 12px; color: var(--muted); }
@media (max-width: 860px) { .best-grid { grid-template-columns: repeat(2, 1fr); } }

/* 机洗护理区 */
.care-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.care-visual { text-align: center; background: var(--accent-soft); border-radius: var(--radius); padding: 32px 32px 28px; }
.care-washer-img { width: 100%; max-width: 380px; margin: 0 auto 20px; border-radius: 14px; aspect-ratio: 4/5; object-fit: cover; display: block; }
.care-visual h3 { font-size: 19px; font-weight: 700; }
.care-list h2 { margin-bottom: 22px; }
.care-item { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.care-item:last-child { border-bottom: none; }
.care-item img { width: 40px; height: 40px; border-radius: 9px; flex-shrink: 0; }
.care-item h4 { font-size: 14px; margin-bottom: 2px; }
.care-item p { font-size: 13px; color: var(--muted); }
@media (max-width: 860px) { .care-grid { grid-template-columns: 1fr; } }

/* 品牌故事带 */
.story-band { position: relative; aspect-ratio: 32/11; display: flex; align-items: center; color: var(--ink); overflow: hidden; }
.story-band .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.story-band .container { position: relative; z-index: 2; width: 100%; max-width: none; padding: 0; }
.story-band .story-content {
  max-width: 560px;
  margin-left: 5.5vw;
  padding: 0;
  text-shadow: 0 1px 3px rgba(255,255,255,0.95), 0 0 14px rgba(255,255,255,0.75);
}
.story-band h2 { color: var(--ink); }
.story-band p { color: #4a443e; margin-bottom: 24px; }
.story-band .story-italic { color: var(--accent-deep); }

/* 页脚信任条 */
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 36px; }
.trust-item { text-align: center; padding: 18px 10px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.trust-item .dot { width: 10px; height: 10px; border-radius: 50%; margin: 0 auto 10px; }
.trust-item h4 { font-size: 13px; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.trust-item p { font-size: 12px; color: var(--muted); }
@media (max-width: 860px) { .trust-row { grid-template-columns: repeat(2, 1fr); } }

/* ===== 首页 v3：更贴近官方样板 ===== */
/* 左文右图 Hero（样板卡片化） */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 44px 48px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 6px 28px rgba(35,32,29,0.06); margin: 36px 0 8px; }
.hero-split .label { font-size: 13px; letter-spacing: 4px; text-transform: uppercase; font-weight: 600; color: var(--ink); margin-bottom: 18px; }
.hero-split h1 { font-family: "Perpetua Titling MT", Georgia, "Times New Roman", serif; font-size: 40px; line-height: 1.25; margin-bottom: 18px; }
.hero-split h1 .sep { color: var(--ink); }
.hero-heart-svg { display: inline-block; vertical-align: 2px; margin-left: 2px; color: var(--accent); }
.hero-split .desc { font-size: 15px; color: var(--muted); margin-bottom: 28px; max-width: 460px; line-height: 1.75; }
.hero-heart { color: var(--accent); }
.hero-photo { border-radius: 16px; overflow: hidden; }
.hero-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
@media (max-width: 860px) {
  .hero-split { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .hero-split h1 { font-size: 28px; }
}

/* 方框描边按钮 */
.btn-line { display: inline-block; padding: 11px 28px; border: 1px solid var(--ink); color: var(--ink); background: transparent; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; transition: all .18s; }
.btn-line:hover { background: var(--ink); color: #fff; }

/* 图标功能区（样板风格：大写字标题 + 说明） */
.features-line { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 40px; text-align: center; }
.feature-line { position: relative; }
.feature-line + .feature-line::before {
  content: ""; position: absolute; left: -14px; top: 12%; bottom: 12%;
  width: 1px; background: #7a7a7a;
}
@media (max-width: 860px) {
  .feature-line { padding-bottom: 16px; }
  .feature-line:last-child { padding-bottom: 8px; }
  /* 移动端 2x2 网格:去掉横向线,每行第二个格子左侧保留竖向分隔线 */
  .feature-line + .feature-line::before { display: none; }
  .feature-line:nth-child(2n)::before { display: block; left: -8px; }
}
.feature-line img { width: auto; height: 150px; margin: 0 auto 14px; filter: grayscale(1); }
.feature-line h3 { font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; font-weight: 600; color: #222; }
.feature-line p { font-size: 12px; color: var(--muted); max-width: 220px; margin: 0 auto; line-height: 1.6; }
.features-line-2 { grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 48px; }
.features-line-2 h3 { font-size: 13px; }
.features-line-2 p { font-size: 11.5px; }
@media (max-width: 860px) {
  .features-line { grid-template-columns: repeat(2, 1fr); }
  .features-line-2 { grid-template-columns: repeat(2, 1fr); }
}

/* 无边框产品卡 + 色点 */
.best-grid { gap: 28px; }
.best-card { background: transparent; border: none; border-radius: 0; box-shadow: none; }
.best-card:hover { transform: none; box-shadow: none; }
.best-card img { border-radius: var(--radius); }
.best-meta { padding: 14px 4px 0; display: flex; justify-content: space-between; align-items: center; }
.dots { display: flex; gap: 7px; align-items: center; }
.dot-c { width: 13px; height: 13px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.08); }
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.section-head-row .right-link { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); padding-bottom: 6px; }
.section-head-row .right-link:hover { color: var(--ink); }

/* 故事带斜体叠字 */
.story-italic { font-family: Georgia, serif; font-style: italic; font-size: 20px; margin-top: 30px; }

/* 护理区调整 */
.care-btn { margin-top: 18px; }

/* ===== Hero v4：照片做底图 + 文字压图 ===== */
.hero-photo-bg { position: relative; aspect-ratio: 12/5; display: flex; align-items: center; overflow: hidden; }
.hero-photo-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }
.hero-photo-bg-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.55) 42%, rgba(255,255,255,0.08) 72%, rgba(255,255,255,0) 100%); }
.hero-photo-bg-content { position: relative; z-index: 2; padding: 120px 0 100px 5.5vw; max-width: 640px; }
.hero-photo-bg-content .label { font-size: 13px; letter-spacing: 4px; text-transform: uppercase; font-weight: 600; color: var(--ink); margin-bottom: 18px; }
.hero-photo-bg-content h1 { font-family: "Perpetua Titling MT", Georgia, "Times New Roman", serif; font-size: 42px; line-height: 1.25; margin-bottom: 18px; color: var(--ink); }
.hero-photo-bg-content .desc { font-size: 15px; color: #4a443e; margin-bottom: 30px; max-width: 460px; line-height: 1.75; }
.hero-heart-svg { display: inline-block; vertical-align: 2px; margin-left: 2px; color: var(--accent); }
@media (max-width: 860px) {
  .story-band { aspect-ratio: auto; height: 500px; }
  .story-band .story-content { margin-left: 24px; }
  .hero-photo-bg { aspect-ratio: auto; height: 500px; }
  .hero-photo-bg-content { padding: 90px 24px 70px; }
  .hero-photo-bg-content h1 { font-size: 30px; }
  .hero-photo-bg-scrim { background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.72) 55%, rgba(255,255,255,0.15) 100%); }
}

/* Care 三栏样板布局 */
.care-3col { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 36px; align-items: center; }
.care-photo img { width: 100%; border-radius: 14px; display: block; }
.care-copy .eyebrow { margin-bottom: 10px; }
.care-copy h2 { font-size: 26px; line-height: 1.25; margin-bottom: 14px; }
.care-body { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 22px; }
.care-tips { border-left: 1px solid var(--line); padding-left: 28px; }
.care-tip { display: flex; align-items: center; gap: 14px; padding: 10px 0; font-size: 14px; font-weight: 600; }
.care-tip svg { color: var(--accent); flex-shrink: 0; }
.care-tip img { width: 40px; height: 40px; flex-shrink: 0; }
.care-tip span { font-family: "Perpetua Titling MT", Georgia, "Times New Roman", serif; text-transform: uppercase; letter-spacing: 1px; font-size: 13px; font-weight: 600; color: var(--ink); }
@media (max-width: 480px) { .care-tip img { width: 32px; height: 32px; } .care-tip span { font-size: 11px; } }
@media (max-width: 860px) {
  .care-3col { grid-template-columns: 1fr; gap: 24px; }
  .care-photo img { max-width: 420px; margin: 0 auto; }
  .care-tips { border-left: none; padding-left: 0; }
}

/* Brand Story 页 Hero（参考图版式：白底红框容器 + 左对齐） */
.story-hero-photo { position: relative; aspect-ratio: 32/11; display: flex; align-items: center; overflow: hidden; }
.story-hero-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }

.story-hero-photo .box {
  position: relative; z-index: 2;
  max-width: 720px;
  margin-left: 5.5vw;
  padding: 0;
  text-shadow: 0 1px 3px rgba(255,255,255,0.95), 0 0 14px rgba(255,255,255,0.75);
}
.story-hero-photo .box h1 { font-family: "Perpetua Titling MT", Georgia, "Times New Roman", serif; font-size: 35px; line-height: 1.25; margin-bottom: 18px; color: var(--ink); }
.story-hero-photo .box .desc { font-size: 15px; color: #4a443e; margin-bottom: 22px; max-width: 470px; line-height: 1.75; }
.story-hero-photo .box .story-italic { margin-top: 0; margin-bottom: 26px; color: var(--accent-deep); }
@media (max-width: 860px) {
  .story-hero-photo { aspect-ratio: auto; height: 620px; align-items: flex-start; }
  .story-hero-photo .box { margin: 100px 24px 0; padding: 0; max-width: none; }
  .story-hero-photo .box h1 { font-size: 30px; }
}

/* 叠图标语（附图版式：全大写衬线、三行、右对齐、叠在照片右侧） */
.story-slogan {
  position: absolute;
  right: 38vw;
  bottom: 6%;
  z-index: 2;
  font-family: "Perpetua Titling MT", Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: right;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4), 0 0 18px rgba(0,0,0,0.35);
}
.story-band .eyebrow, .story-hero-photo .eyebrow { color: var(--accent); }
@media (max-width: 860px) {
  .story-slogan {
    position: static;
    transform: none;
    margin: 20px 24px 0;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-align: left;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
  }
}

/* 台湾产地页脚（附图版式：白卡 + 台湾轮廓 + 产地文字） */
.footer-taiwan { border-top: 1px solid var(--line); padding: 52px 24px 60px; }
.taiwan-badge {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.taiwan-badge .taiwan-map { flex-shrink: 0; width: auto; height: 66px; display: block; }
.taiwan-badge .t1 { font-size: 15px; font-weight: 600; color: #1a1a1a; line-height: 1.5; }
.taiwan-badge .t2 { font-size: 13px; color: var(--muted); line-height: 1.55; margin-top: 8px; }
@media (max-width: 480px) {
  .taiwan-badge { gap: 20px; padding: 24px 22px; }
  .taiwan-badge .taiwan-map { height: 54px; }
}

/* ===== 移动端体验优化 2026-08-21 ===== */
html, body { overflow-x: hidden; }

/* 汉堡菜单按钮(默认隐藏) */
.nav-toggle { display: none; }
@media (min-width: 861px) { .mobile-menu { display: none !important; } }
@media (max-width: 860px) {
  .nav-inner { padding: 8px 16px; }
  .nav .brand-logo { height: 54px; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; background: none; border: none;
    color: var(--ink); cursor: pointer; padding: 0;
  }
  .mobile-menu {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 200;
    width: 100%; height: 100vh;
    background: rgba(255,255,255,0.98);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 24px;
    transform: translateX(100%); transition: transform .25s ease;
    visibility: hidden;
  }
  .mobile-menu.open { transform: translateX(0); visibility: visible; }
  .mobile-menu a { font-size: 19px; color: var(--ink); text-transform: uppercase; letter-spacing: 2px; text-decoration: none; }
  .mobile-menu a:hover { color: var(--accent); }
  .mobile-menu .nav-cta { margin-top: 12px; font-size: 14px; }
  .mobile-menu .mnav-close {
    position: absolute; top: 14px; right: 14px;
    width: 44px; height: 44px; text-decoration: none; display: block; z-index: 3;
  }
  .mobile-menu .mnav-close::before, .mobile-menu .mnav-close::after {
    content: ""; position: absolute; top: 50%; left: 50%;
    width: 26px; height: 2px; background: var(--ink); border-radius: 1px;
  }
  .mobile-menu .mnav-close::before { transform: translate(-50%, -50%) rotate(45deg); }
  .mobile-menu .mnav-close::after { transform: translate(-50%, -50%) rotate(-45deg); }
}
/* Hero 手机端收紧 */
@media (max-width: 860px) {
  .hero-photo-bg { height: 420px; }
  .hero-photo-bg-content { padding: 48px 24px 40px; max-width: none; }
  .hero-photo-bg-content h1 { font-size: 26px; line-height: 1.25; }
  .hero-photo-bg-content .lead, .hero-photo-bg-content .desc { font-size: 13.5px; line-height: 1.6; max-width: 300px; overflow-wrap: break-word; }
  .hero-photo-bg-content .btn-line { font-size: 11px; padding: 10px 18px; }
}
/* 功能区手机端:图标缩小防溢出 */
@media (max-width: 860px) {
  .features-line { gap: 22px 16px; margin-top: 26px; }
  .feature-line img { height: 62px; max-width: 100%; }
  .feature-line p { font-size: 11px; line-height: 1.55; max-width: none; padding: 0 2px; overflow-wrap: break-word; word-break: break-word; }
  .feature-line { padding-bottom: 16px; }
}
/* Best Sellers 手机端 */
@media (max-width: 860px) {
  .best-grid { gap: 14px 12px; margin: 24px 0 20px; }
  .best-meta { padding: 10px 2px 0; }
  .best-meta .sku { font-size: 12px; letter-spacing: 0.5px; }
  .section-head-row { margin-bottom: 20px; }
  .section-head-row .right-link { font-size: 11px; letter-spacing: 1.5px; }
}
/* 小屏容器边距 */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
}


/* ===== 品牌故事页 v6(严格按原稿像素测量,2026-08-25) ===== */
.ns-ph { position: relative; background: #e8e4de; border: 2px dashed #c9c4bc; border-radius: 6px; aspect-ratio: var(--ratio, 4/3); display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; }
.ph-label { font-size: 12px; font-weight: 600; color: #8c867e; text-transform: uppercase; letter-spacing: 1px; text-align: center; padding: 0 8px; }
.ph-size { font-size: 10px; color: #b0a9a0; margin-top: 4px; }
.ph-bg { position: absolute; inset: 0; background: #e8e4de; border: 2px dashed #c9c4bc; border-radius: 6px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ns-label { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 8px; }
.ns-h2 { font-family: "Perpetua Titling MT", Georgia, "Times New Roman", serif; font-size: 32px; line-height: 1.18; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.ns-h3 { font-family: "Perpetua Titling MT", Georgia, serif; font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 6px; }
.ns-body { font-size: 14px; color: var(--muted); line-height: 1.75; max-width: 480px; }
.ns-sub { font-size: 15px; color: var(--muted); line-height: 1.6; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* 1. Hero 全宽照片 2.2:1,文字叠左 */
.ns-hero { position: relative; }
.ns-hero .ns-ph { border-radius: 0; }
.ns-hero-box { position: absolute; top: 50%; left: 5.5vw; transform: translateY(-50%); max-width: 520px; z-index: 2; }
.ns-h1 { font-family: "Perpetua Titling MT", Georgia, serif; font-size: 40px; line-height: 1.15; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin: 8px 0 14px; }
.ns-hero-overline { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; color: var(--accent); }
.ns-hero-box .ns-h1 { color: #ffffff; }
.ns-hero-box .ns-body { color: #ffffff; }
.ns-hero-box .btn-line { margin-top: 18px; background: #ffffff; border-color: #ffffff; color: #23201d; }
.ns-hero-box .btn-line:hover { background: var(--accent); border-color: var(--accent); color: #ffffff; }

/* 2. MEANING 纯文字三栏 + 水印 */
.ns-meaning { padding: 45px 0 20px; position: relative; background: #EFEAE7; }
.ns-meaning-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; max-width: 1080px; margin: 48px auto 0; padding: 0 24px; }
.ns-mcol { position: relative; text-align: left; padding: 44px 18px 44px 108px; min-height: 380px; }
.ns-mcol:nth-child(1), .ns-mcol:nth-child(2) { padding-left: 88px; }
.ns-mcol:nth-child(3) { padding-left: 157px; }
.ns-mcol:nth-child(3) .ns-mframe { width: calc(100% + 55px); }
.ns-mcol:nth-child(2)::before, .ns-mcol:nth-child(3)::before { content: ""; position: absolute; top: calc(50% - 148px); height: 243px; left: -24px; width: 1px; background: #A2A0A1; }
.ns-mframe { border: none; padding: 0; position: relative; z-index: 1; }
.ns-mcol .ns-mletter { position: absolute; left: -8px; top: 50%; transform: translateY(-50%) scaleX(0.72); transform-origin: left center; font-family: "AppleMyungjo", "PCMyungjo", "Hiragino Mincho ProN", "Songti SC", "Noto Serif KR", "NSimSun", "Times New Roman", serif; font-size: 380px; font-weight: 200; line-height: 1; letter-spacing: -6px; color: #A2A0A1; z-index: 0; pointer-events: none; margin: 0; }
.ns-mcol h3, .ns-mcol p.ns-body, .ns-mcol .ns-mpair { position: relative; z-index: 1; }
.ns-mcol .ns-mpair { margin-bottom: 4px; }
.ns-mcol .ns-body { margin: 0; }

/* 3. 台湾故事:40/25/35 三栏, 顶对齐, 米色底 */
.ns-taiwan { display: grid; grid-template-columns: 40fr 37.5fr 22.5fr; gap: 0; padding: 0; background: #ffffff; align-items: stretch; }
.ns-t-left { padding: 10px 0; align-self: start; }
.ns-t-left .ns-ph { border-radius: 0; width: 100%; aspect-ratio: 4/3; }
.ns-t-center { background: #ffffff; padding: 44px 14px 44px 20px; }
.ns-t-center .ns-label { margin-bottom: 10px; }
.ns-t-center .ns-h2 { font-size: 30px; line-height: 1.18; margin-bottom: 16px; }
.ns-t-center .ns-body { font-size: 14px; line-height: 1.7; }
.ns-t-center .ns-quote2 { margin-top: 20px; }
.ns-quote2 { font-family: "Perpetua Titling MT", Georgia, serif; font-size: 16px; line-height: 1.5; letter-spacing: 1px; text-transform: uppercase; color: var(--ink); margin-top: 26px; }
.ns-t-right { padding: 10px 0; display: flex; flex-direction: column; align-self: start; }
.ns-cat-t { font-family: "Perpetua Titling MT", Georgia, "Times New Roman", serif; font-size: 21px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #111; }
.ns-frame { width: 100%; aspect-ratio: 900/480; background: #EAF4F8; border-radius: 10px; overflow: hidden; }
.ns-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* 4. CRAFTED:左图 42% + 右文 + 底部编号条 */
.ns-crafted { display: grid; grid-template-columns: 42fr 58fr; background: #E8E1DA; }
.ns-c-left .ns-ph { border-radius: 0; width: 100%; aspect-ratio: 2.67/1; }
.ns-c-right { padding: 56px 56px 40px; display: flex; flex-direction: column; justify-content: center; }


/* 5. 五列流程 */
.ns-process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; max-width: 1180px; margin: 0 auto; padding: 64px 24px; background: #FFFFFF; }
.ns-col { display: flex; flex-direction: column; }
.ns-step { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; color: var(--accent); margin-bottom: 6px; }
.ns-col .ns-ph { margin-top: auto; padding-top: 16px; }

/* 6. 场景三栏 */
.ns-scenes { padding: 90px 0 80px; background: #F7F4F0; }
.ns-scene-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1080px; margin: 44px auto 0; padding: 0 24px; }
.ns-caption { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; color: var(--accent); margin-top: 10px; text-align: center; }

/* 7. JOURNEY:25% / 75% */
.ns-journey { display: grid; grid-template-columns: 17.5fr 82.5fr; gap: 0; background: #FFFFFF; }
.ns-j-img .ns-ph { border-radius: 0; width: 100%; aspect-ratio: 0.89/1; }
.ns-j-copy { padding: 64px 56px; }
.ns-tl { margin-top: 32px; position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.ns-tl::before { content: ""; position: absolute; top: 6px; left: 7px; right: 7px; height: 2px; background: var(--accent); }
.ns-tl-item { padding-top: 28px; position: relative; }
.ns-tl-item::before { content: ""; position: absolute; top: 0; left: 0; width: 14px; height: 14px; border-radius: 50%; border: 2px solid var(--accent); background: #fff; }
.ns-tl-item .ns-body { font-size: 12.5px; line-height: 1.6; }
.ns-tl-t { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }

/* 8. VALUES */
.ns-values { padding: 80px 0; background: #EFE9E2; }
.ns-value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; max-width: 1080px; margin: 40px auto 0; padding: 0 24px; }
.ns-vnum { font-family: "Perpetua Titling MT", Georgia, serif; font-size: 46px; color: #A2A0A1; margin-bottom: 8px; }

/* 9. CTA 全宽 3.6:1 + 左侧卡片 */
.ns-cta { position: relative; aspect-ratio: 3.6/1; }
.ns-cta-bg { border-radius: 0; }
.ns-cta-box { position: absolute; left: 5.5vw; top: 50%; transform: translateY(-50%); max-width: 520px; padding: 40px; background: rgba(255,255,255,0.82); border-radius: 10px; z-index: 2; }
.ns-cta-box .ns-body { margin-bottom: 22px; }

/* 10. 页脚 */
.ns-footer { background: #f4f1ec; padding: 44px 24px; border-top: 1px solid #e8e4de; }
.ns-footer-inner { max-width: 1080px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.ns-footer-logo { height: 40px; width: auto; }
.ns-footer-slogan { font-size: 12px; color: var(--muted); letter-spacing: 1px; margin-top: 6px; }
.ns-footer-links { display: flex; gap: 26px; }
.ns-footer-links a { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--muted); text-decoration: none; }
.ns-footer-links a:hover { color: var(--ink); }
.ns-footer-copy { font-size: 11px; color: var(--muted); width: 100%; text-align: center; margin-top: 8px; }

/* 移动端 */
@media (max-width: 860px) {
  .ns-hero { aspect-ratio: auto; min-height: 400px; }
  .ns-hero .ns-ph { position: absolute; inset: 0; aspect-ratio: auto; }
  .ns-hero-box { left: 20px; max-width: 78%; }
  .ns-h1 { font-size: 26px; }
  .ns-hero-box .ns-body { font-size: 12px; line-height: 1.55; }
  .ns-hero-box .btn-line { padding: 8px 14px; font-size: 10px; }
  .ns-meaning-grid { grid-template-columns: 1fr; gap: 28px; }
  .ns-mcol { padding: 30px 8px 30px 26px; min-height: 0; }
  .ns-mcol .ns-mletter { font-size: 240px; left: -4px; }
  .ns-mframe { border: none; padding: 0; }
  .ns-mcol { padding-top: 44px; }
  .ns-taiwan { grid-template-columns: 1fr; }
  .ns-t-left { min-height: 320px; }
  .ns-t-left .ns-ph { width: 100%; }
  .ns-t-center { padding: 36px 16px; }
  .ns-t-center .ns-h2 { font-size: 22px; line-height: 1.25; letter-spacing: 0.5px; }
  .ns-t-center .ns-body { font-size: 13px; }
  .ns-t-right { padding: 20px; }
  .ns-t-right .ns-tall { height: auto; width: 100%; aspect-ratio: 3/4; }
  .ns-cat-t { font-size: 18px; }
  .ns-frame { border-radius: 8px; }
  .ns-crafted { grid-template-columns: 1fr; }
  .ns-c-right { padding: 36px 24px; }

  .ns-process { grid-template-columns: 1fr; gap: 32px; margin-top: 44px; }
  .ns-scene-grid { grid-template-columns: 1fr; gap: 28px; }
  .ns-journey { grid-template-columns: 1fr; }
  .ns-j-img .ns-ph { aspect-ratio: 0.89/1; }
  .ns-j-copy { padding: 36px 24px; }
  .ns-tl { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .ns-tl-item:nth-child(3)::after { content: ""; position: absolute; top: 6px; left: 18px; width: calc(100% + 20px); height: 2px; background: var(--accent); }
  .ns-value-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .ns-cta { aspect-ratio: auto; min-height: 420px; }
  .ns-cta-box { left: 20px; right: 20px; max-width: none; padding: 24px; }
}
@media (max-width: 480px) {
  .ns-value-grid { grid-template-columns: 1fr; }
  .ns-footer-inner { flex-direction: column; text-align: center; }
  .ns-footer-links { flex-wrap: wrap; justify-content: center; gap: 14px; }
}

/* ===== v10 官方文案区块样式 ===== */
.ns-slogan { padding: 44px 24px 45px; text-align: center; background: #F0E7DA; }
.ns-slogan-body { margin: 14px auto 0; max-width: 720px; }
.ns-meaning-lead { margin: 0 auto 40px; max-width: 640px; }
.ns-mpair { font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600; color: #E6204C; position: relative; z-index: 1; margin-bottom: 2px; }
.ns-innovation { padding: 30px 24px; background: #F6F1EC; text-align: center; }
.ns-inn-body { margin: 12px auto 0; max-width: 720px; }
.ns-scenes-lead { margin: 16px auto 0; max-width: 640px; }
.ns-scene-desc { margin: 8px auto 0; font-size: 12.5px; text-align: center; max-width: 320px; line-height: 1.6; }
.ns-values-lead { margin: 0 auto 8px; max-width: 640px; }


/* 真实图片替换占位:ns-ph 内 img 撑满,去虚线 */
.ns-ph-img { border: none !important; background: none !important; }
.ns-ph-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ns-cta-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ns-cta-bg { border: none; background: none; }
.ns-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }


/* ===== Partner 页 2026-08-26 ===== */
.pt-hero { padding: 92px 24px 78px; background: #F0E7DA; text-align: center; }
.pt-h1 { font-size: 46px; line-height: 1.22; font-weight: 700; letter-spacing: 3px; margin: 12px 0 26px; }
.pt-lead { margin: 12px auto 0; max-width: 720px; }
.pt-lead-strong { font-weight: 600; color: var(--ink); }
.pt-section { padding: 84px 24px; }
.pt-white { background: #fff; }
.pt-cream { background: #F6F1EC; }
.pt-sand { background: #EFE9E2; }

.pt-why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 1040px; margin: 42px auto 0; padding: 0 24px; }
.pt-why { background: #F6F1EC; border-radius: 14px; padding: 30px 28px; text-align: left; }
.pt-why h3 { font-family: "Perpetua Titling MT", Georgia, serif; font-size: 15px; font-weight: 600; letter-spacing: 1.5px; margin-bottom: 10px; text-transform: uppercase; }
.pt-why p { font-size: 13.5px; color: var(--muted); line-height: 1.75; }

.pt-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1000px; margin: 40px auto 0; padding: 0 24px; }
.pt-trio-item { background: #fff; border-radius: 12px; padding: 38px 26px; box-shadow: 0 2px 12px rgba(35,32,29,0.05); }
.pt-trio-en { font-family: "Perpetua Titling MT", Georgia, serif; font-size: 20px; font-weight: 600; letter-spacing: 2px; }
.pt-trio-zh { font-size: 16px; color: var(--muted); margin-top: 8px; letter-spacing: 2px; }

.pt-axes { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px 22px; max-width: 980px; margin: 36px auto 0; }
.pt-axis { font-family: "Perpetua Titling MT", Georgia, serif; font-size: 18px; font-weight: 600; letter-spacing: 3px; color: var(--ink); }
.pt-axes .pt-axis:nth-child(even) { color: var(--accent); font-size: 16px; }

.pt-channels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 900px; margin: 38px auto 0; padding: 0 24px; }
.pt-channel { display: flex; align-items: center; gap: 14px; background: #fff; border-radius: 10px; padding: 17px 22px; font-size: 15px; letter-spacing: 0.5px; box-shadow: 0 2px 8px rgba(35,32,29,0.04); }
.pt-channel::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none; }

.pt-supports { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 1100px; margin: 42px auto 0; padding: 0 24px; }
.pt-support { background: #F6F1EC; border-radius: 14px; padding: 32px 28px; }
.pt-support-en { font-size: 12px; font-weight: 600; letter-spacing: 2px; color: var(--accent); text-transform: uppercase; margin-bottom: 8px; }
.pt-support-zh { font-size: 16px; font-weight: 700; margin-bottom: 10px; letter-spacing: 1px; }
.pt-support p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

.pt-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 1000px; margin: 28px auto 0; padding: 0 24px; }
.pt-tag { background: #fff; border: 1px solid #e8e1da; border-radius: 999px; padding: 11px 22px; font-size: 14px; letter-spacing: 1px; }

.pt-cta { background: #23201D; color: #fff; text-align: center; padding: 96px 24px 88px; }
.pt-cta .ns-h2 { color: #fff; margin-bottom: 6px; }
.pt-cta-lead { color: rgba(255,255,255,0.82) !important; margin: 10px auto 0; max-width: 720px; }
.pt-cta-btn { display: inline-block; margin-top: 34px; background: var(--accent); color: #fff !important; padding: 16px 40px; border-radius: 999px; font-weight: 600; font-size: 15px; letter-spacing: 2px; transition: background .15s; }
.pt-cta-btn:hover { background: var(--accent-deep); }
.pt-cta-tags { margin-top: 42px; font-size: 12px; letter-spacing: 2.5px; color: rgba(255,255,255,0.6); }
.pt-cta-slogan { margin-top: 26px; font-family: "Perpetua Titling MT", Georgia, serif; font-size: 15px; letter-spacing: 3px; color: rgba(255,255,255,0.85); }

/* 移动端 */
@media (max-width: 860px) {
  .pt-hero { padding: 60px 20px 52px; }
  .pt-h1 { font-size: 32px; letter-spacing: 2px; }
  .pt-section { padding: 56px 20px; }
  .pt-trio { grid-template-columns: 1fr; gap: 16px; padding: 0; }
  .pt-why-grid { grid-template-columns: 1fr; padding: 0; }
  .pt-channels { grid-template-columns: 1fr; padding: 0; }
  .pt-supports { grid-template-columns: 1fr; padding: 0; }
  .pt-cta { padding: 64px 20px 60px; }
}

.ns-t-right .ns-tall { width: 100%; aspect-ratio: 3/4; border-radius: 0; }

/* ===== 首页移动端大图完整显示(2026-08-26) ===== */
@media (max-width: 860px) {
  /* Hero: 遮罩减弱, 图片完整露出(与故事页一致) */
  .hero-photo-bg-scrim { background: linear-gradient(180deg, rgba(255,255,255,0.62) 0%, rgba(255,255,255,0.34) 48%, rgba(255,255,255,0.05) 100%); }
  /* 底部大图: 图片作背景cover填满, 文字叠图上(同故事页CTA), 高度刚好容纳文字 */
  .story-band { height: auto; min-height: 0; display: flex; align-items: center; }
  .story-band .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .story-band .container { position: relative; z-index: 2; width: 100%; max-width: none; padding: 52px 0 0; background: transparent; }
  .story-band .story-content { margin-left: 0; max-width: none; padding: 0 24px; text-shadow: 0 1px 3px rgba(255,255,255,0.95), 0 0 14px rgba(255,255,255,0.75); }
  /* LIGHTER STEPS 标语: 全宽白底, 位于图片下方 */
  .story-band .story-slogan { position: static; z-index: auto; display: block; width: 100%; margin: 28px 0 0; padding: 22px 24px; background: #ffffff; color: var(--accent-deep); text-shadow: none; font-size: 14px; letter-spacing: 1.5px; text-align: left; }
  /* 标题防截断 */
  .story-band h2 { font-size: 22px; line-height: 1.3; overflow-wrap: break-word; }
}
