: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 0;
}
.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: 20px; border-bottom: 1px solid #c9c4bc; }
  .feature-line:last-child { border-bottom: none; padding-bottom: 8px; }
  .feature-line + .feature-line::before { display: none; }
}
.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: #1a1a1a;
    text-shadow: none;
  }
}

/* 台湾产地页脚（附图版式：白卡 + 台湾轮廓 + 产地文字） */
.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; }
}
