/* ============================================================
   茂宠官网 — 新版视觉（V2 融合版）样式覆盖层
   风格：米白 × 品牌青 + 深炭棕 × 暖金（Glossier/Aesop × Orijen）
   说明：在 style.css 之后引入本文件即可全站换肤；
        不改动任何 HTML 文字 / TDK / JSON-LD / FAQ / 栏目 / 链接。
   ============================================================ */

:root {
  /* ---- 框架色 ---- */
  --cream: #FAF7F2;            /* 米白主底 */
  --cream-deep: #F5F0E8;       /* 暖米灰区块底 */
  --card: #FFFFFF;             /* 卡片底 */

  --teal: #2A9D8F;             /* 品牌青 500 */
  --teal-dark: #21786D;        /* 品牌青 700 */
  --teal-deep: #1B5E56;        /* 品牌青 900 */
  --teal-soft: #E5F0EE;        /* 品牌青 100 */
  --teal-mist: #F1F7F6;        /* 品牌青 50 */

  --brown: #2B2118;            /* 深炭棕 */
  --brown-deep: #1E1712;       /* 深炭棕深 */
  --brown-soft: #3B2F23;       /* 深炭棕浅 */

  --gold: #C9A227;             /* 暖金 */
  --gold-dark: #A9851C;        /* 暖金深 */
  --gold-soft: #F0E4C4;        /* 暖金淡 */
  --gold-line: rgba(201, 162, 39, 0.35);

  --ink: #3A322A;              /* 正文墨棕 */
  --ink-2: #5C5348;            /* 次级正文 */
  --gray-mid: #8A8178;         /* 次要文字 */
  --line: #E9E2D7;             /* 描边/分隔 */
  --line-soft: #F0EBE2;

  --on-dark: #F4EFE6;                       /* 深底主文字 */
  --on-dark-sub: rgba(244, 239, 230, 0.72); /* 深底次要 */

  /* ---- 字体 ---- */
  --font-serif: Georgia, "Times New Roman", "Songti SC", "STSong", "SimSun", serif;
  --font-body: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Microsoft YaHei UI", sans-serif;
  --font-en: "Montserrat", "Segoe UI", Arial, sans-serif;

  /* ---- 圆角与阴影 ---- */
  --radius: 20px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow: 0 2px 16px rgba(43, 33, 24, 0.05);
  --shadow-hover: 0 12px 32px rgba(43, 33, 24, 0.12);

  /* ---- 间距 ---- */
  --section-gap: 88px;
  --container: 1200px;
}

/* ==================== 全局 ==================== */
body {
  background: var(--cream);
  color: var(--ink);
}

a { color: var(--teal-dark); }
a:hover { color: var(--teal); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--brown);
  font-weight: 600;
  letter-spacing: 0.5px;
}
h1 { font-size: 35px; }
h2 { font-size: 28px; }
h3 { font-size: 19px; }

/* 容器与区块 */
.section { padding: var(--section-gap) 0; }
.section-alt { background: var(--cream-deep); }

.section-head { margin-bottom: 44px; }
.section-head h2 {
  display: inline-block;
  position: relative;
  margin-bottom: 10px;
}
.section-head h2::before,
.section-head h2::after {
  content: "";
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 16px;
  opacity: 0.85;
}
.section-head p { color: var(--gray-mid); }

.section-more { margin-top: 36px; }

/* ==================== 按钮 ==================== */
.btn {
  padding: 11px 30px;
  border-radius: var(--radius-pill);
  background: var(--teal);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { background: var(--teal-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(33, 120, 109, 0.25); }
.btn-outline {
  background: transparent;
  color: var(--teal-deep);
  border: 1.5px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: #fff; box-shadow: none; }
.btn-lg { padding: 14px 38px; font-size: 16px; }

/* 金色按钮（深色区主操作） */
.btn-gold {
  background: var(--gold);
  color: var(--brown);
}
.btn-gold:hover { background: var(--gold-dark); color: #fff; box-shadow: 0 6px 18px rgba(201, 162, 39, 0.30); }
.btn-gold-outline {
  background: transparent;
  color: var(--on-dark);
  border: 1.5px solid rgba(201, 162, 39, 0.65);
}
.btn-gold-outline:hover { background: var(--gold); color: var(--brown); }

/* ==================== 标签 ==================== */
.tag {
  padding: 3px 13px;
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--ink-2);
  border: 1px solid var(--line);
}
.tag-teal { background: var(--teal-soft); color: var(--teal-deep); border-color: transparent; }

/* ==================== 导航栏 ==================== */
.site-header {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(1.2) blur(6px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 10px rgba(43, 33, 24, 0.04);
}
.brand-text { color: var(--brown); letter-spacing: 2.5px; }
.brand-text small { color: var(--teal); letter-spacing: 3.5px; }

.main-nav a { color: var(--ink-2); border-radius: var(--radius-pill); }
.main-nav a:hover { color: var(--teal-deep); background: var(--teal-mist); }
.main-nav a.active { color: var(--teal-deep); font-weight: 700; position: relative; }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 2px;
  transform: translateX(-50%);
  width: 18px; height: 2px;
  border-radius: 2px;
  background: var(--teal);
}

.nav-toggle { background: var(--cream); border-color: var(--line); color: var(--brown); }

/* ==================== Hero（首页主视觉 · 深色焦点） ==================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-soft) 55%, var(--brown) 100%);
}
.hero::before { opacity: 0.10; }

.hero-inner { padding: 96px 0 76px; }

.hero-kicker {
  font-family: var(--font-serif);
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 13px;
}

.hero h1 {
  color: var(--on-dark);
  font-size: 42px;
  line-height: 1.35;
  letter-spacing: 1px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub { color: var(--on-dark-sub); }

.hero-cta .btn { background: var(--gold); color: var(--brown); }
.hero-cta .btn:hover { background: var(--gold-dark); color: #fff; box-shadow: 0 6px 18px rgba(201, 162, 39, 0.30); }
.hero-cta .btn-outline {
  background: transparent;
  color: var(--on-dark);
  border: 1.5px solid rgba(201, 162, 39, 0.65);
}
.hero-cta .btn-outline:hover { background: var(--gold); color: var(--brown); }

/* 产品浮层：浅色卡片浮于深色 hero 之上 */
.hero-products { margin-top: 56px; gap: 16px; }
.hero-product {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 14px 14px 16px;
  box-shadow: var(--shadow);
}
.hero-product:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.hero-product img { border-radius: 14px; }
.hero-product .hp-name { color: var(--brown); font-size: 13px; }

/* ==================== 品牌墙（画廊式） ==================== */
.brand-grid { gap: 22px; }

.brand-card {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 22px 26px;
  gap: 16px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.brand-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.brand-card .logo-box { height: 84px; padding: 10px; }

.brand-card .slogan {
  font-family: var(--font-serif);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.5px;
}
.brand-card .slogan-sub { font-size: 13px; color: var(--gray-mid); }
.brand-card .brand-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* 品牌专属描边与链接色（保持品牌识别） */
.brand-card.b-tunxiang { border-color: rgba(200, 16, 46, 0.30); }
.brand-card.b-tunxiang:hover { border-color: rgba(200, 16, 46, 0.65); }
.brand-card.b-tunxiang .brand-link { color: #B30E28; }
.brand-card.b-gundeqiu { border-color: rgba(244, 136, 61, 0.40); }
.brand-card.b-gundeqiu:hover { border-color: rgba(244, 136, 61, 0.70); }
.brand-card.b-gundeqiu .brand-link { color: var(--ball-orange); }
.brand-card.b-zhixuan { border-color: rgba(30, 58, 95, 0.30); }
.brand-card.b-zhixuan:hover { border-color: rgba(30, 58, 95, 0.60); }
.brand-card.b-zhixuan .brand-link { color: var(--zhixuan-navy); }
.brand-card.b-vom { border-color: rgba(201, 160, 99, 0.55); }
.brand-card.b-vom:hover { border-color: rgba(201, 160, 99, 0.85); }
.brand-card.b-vom .brand-link { color: #A9862F; }
.brand-card.b-kittybloom { border-color: rgba(139, 26, 43, 0.28); }
.brand-card.b-kittybloom:hover { border-color: rgba(139, 26, 43, 0.60); }
.brand-card.b-kittybloom .brand-link { color: var(--kb-maroon); }

/* ==================== 产品卡 ==================== */
.product-grid { gap: 22px; }

.product-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.product-card .pc-img { padding: 16px; background: #F5F1EA; }
.product-card .pc-img img { border-radius: 12px; }
.product-card .pc-body { padding: 16px 18px 18px; }
.product-card .pc-brand { color: var(--gray-mid); letter-spacing: 1.5px; }
.product-card .pc-name { font-size: 15.5px; color: var(--brown); }

/* ==================== 信任背书（深棕 + 暖金） ==================== */
.trust-strip {
  background: linear-gradient(90deg, var(--brown) 0%, var(--brown-soft) 100%);
  padding: 52px 0;
}
.trust-item { color: var(--on-dark); }
.trust-item .t-icon {
  width: 56px; height: 56px;
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.35);
}
.trust-item .t-icon svg { stroke: var(--gold); }
.trust-item h3 {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.5px;
}
.trust-item p { color: var(--on-dark-sub); }

/* ==================== 知识文章卡 ==================== */
.knowledge-grid { gap: 20px; }

.knowledge-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.knowledge-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.knowledge-card .k-cat { color: var(--teal-deep); letter-spacing: 1.5px; }
.knowledge-card h3 { font-size: 17.5px; line-height: 1.5; }
.knowledge-card h3 a { color: var(--brown); }
.knowledge-card h3 a:hover { color: var(--teal-dark); }
.knowledge-card p { color: var(--gray-mid); }

/* ==================== 企业动态 ==================== */
.news-item { border-bottom: 1px solid var(--line); }
.news-item:first-child { border-top: 1px solid var(--line); }
.news-item .n-date {
  font-family: var(--font-serif);
  color: #A9862F;
  letter-spacing: 0.5px;
}
.news-item h3 a { color: var(--brown); }
.news-item h3 a:hover { color: var(--teal-dark); }
.news-item .n-cat { background: var(--teal-soft); color: var(--teal-deep); }

/* ==================== 页脚（深炭棕） ==================== */
.site-footer {
  background: linear-gradient(180deg, var(--brown) 0%, var(--brown-deep) 100%);
  color: var(--on-dark-sub);
}
.footer-top { padding: 56px 0 8px; }
.footer-brand-wall .fbw-item { color: rgba(244, 239, 230, 0.85); }
.footer-mid h4 {
  font-family: var(--font-body);
  color: var(--on-dark);
  font-size: 15px;
  letter-spacing: 1px;
}
.footer-mid ul a { color: var(--on-dark-sub); }
.footer-mid ul a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(244, 239, 230, 0.14); color: rgba(244, 239, 230, 0.5); }

/* ==================== 面包屑 ==================== */
.breadcrumb { color: var(--gray-mid); }
.breadcrumb a { color: var(--gray-mid); }
.breadcrumb a:hover { color: var(--teal-deep); }

/* ==================== FAQ ==================== */
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
}
.faq-item summary { color: var(--brown); }
.faq-item summary::after { color: var(--gold); }
.faq-item .faq-a { color: var(--ink-2); }

/* ==================== 栏目页头 ==================== */
.page-hero {
  background: linear-gradient(180deg, var(--teal-mist) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero p { color: var(--ink-2); }

/* ==================== 品牌页 Hero（保留品牌语言 · 统一衬线标题） ==================== */
.brand-hero-slogan { font-family: var(--font-serif); font-size: 32px; font-weight: 600; letter-spacing: 1px; }
.brand-hero-summary { color: var(--ink-2); }

.hero-tunxiang { background: linear-gradient(135deg, #F5F1E6 0%, #EAF2EC 55%, #E5F0EE 100%); }
.hero-tunxiang .brand-hero-slogan { color: var(--tunxiang-red); }
.hero-tunxiang .brand-hero-summary { color: #5C5348; }

.hero-gundeqiu { background: linear-gradient(135deg, #FFF7EC 0%, #FDEEDC 60%, #F9F1E4 100%); }
.hero-gundeqiu .brand-hero-slogan { color: var(--ball-orange); }
.hero-gundeqiu .brand-hero-summary { color: var(--ball-brown); }

.hero-zhixuan { background: linear-gradient(135deg, #1E3A5F 0%, #2C4A73 100%); }
.hero-zhixuan .brand-hero-slogan, .hero-zhixuan .brand-hero-summary { color: #fff; }
.hero-zhixuan .brand-hero-summary { color: rgba(255, 255, 255, 0.8); }

.hero-vom { background: linear-gradient(135deg, #1F2A44 0%, #2A3760 100%); }
.hero-vom .brand-hero-slogan { color: var(--vom-gold); }
.hero-vom .brand-hero-summary { color: rgba(255, 255, 255, 0.8); }

.hero-kittybloom { background: linear-gradient(180deg, #FFFFFF 0%, #FBF6F4 100%); border-bottom: 2px solid rgba(139, 26, 43, 0.15); }
.hero-kittybloom .brand-hero-slogan { color: var(--kb-maroon); }

/* 品牌故事 / 理念区 */
.story-body p { color: var(--ink-2); }
.philosophy-box { background: var(--cream-deep); border-radius: var(--radius); }
.philosophy-box ul li::before { color: var(--teal); }

/* 品牌页产品线卡片 */
.pline-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
.pline-card h3 { color: var(--brown); }
.pline-card p { color: var(--gray-mid); }

/* 品牌中心总览大卡 */
.brand-big-card {
  background: var(--card);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
}
.brand-big-card .bbc-slogan { font-family: var(--font-serif); font-weight: 600; color: var(--brown); }
.brand-big-card .bbc-summary { color: var(--gray-mid); }
.brand-big-card .bbc-lines { color: var(--teal-deep); }

/* 产品中心筛选 */
.filter-btn { border-radius: var(--radius-pill); border: 1.5px solid var(--line); background: var(--card); color: var(--ink-2); }
.filter-btn:hover { border-color: var(--teal); color: var(--teal-deep); }
.filter-btn.active { background: var(--teal); border-color: var(--teal); color: #fff; }
.ps-brand-head span { font-family: var(--font-serif); color: var(--brown); }

/* 产品详情页 */
.detail-img img { border-radius: var(--radius); border: 1px solid var(--line); }
.detail-col h2 { border-bottom: 2px solid var(--teal-soft); color: var(--brown); }
.detail-text { color: var(--ink-2); }
.guarantee-list li { background: var(--teal-soft); color: var(--teal-deep); }
.spec-table th { background: var(--cream-deep); color: var(--gray-mid); }
.spec-table th, .spec-table td { border-bottom: 1px solid var(--line); }

/* 检测报告表（第三方检测结果 6 列表格） */
.report-table th { width: auto; }
.report-table thead th { background: var(--brown); color: #FBF7EF; font-weight: 600; white-space: nowrap; }
.report-table td { font-size: 13.5px; }
.report-table tr:hover td { background: rgba(42,157,143,.05); }
.report-table-wrap { overflow-x: auto; }

/* 数据标注 */
.data-notes li { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--ink-2); }
.data-notes li::before { color: var(--teal); }

/* ==================== 养宠知识 ==================== */
.article-page { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
.article-page h1 { font-size: 27px; line-height: 1.5; }
.article-meta { border-bottom: 1px solid var(--line); color: var(--gray-mid); }
.article-body { color: var(--ink); }
.article-body strong { color: var(--brown); }
.article-related { background: var(--cream-deep); border-radius: var(--radius-sm); }

.kcat-block h2 { border-left: 4px solid var(--teal); color: var(--brown); }
.kcat-list a { color: var(--ink); }
.kcat-list a:hover { color: var(--teal-dark); }

/* ==================== 猫舍 ==================== */
.cat-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
.cat-card p { color: var(--gray-mid); }
.cats-badge-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.cats-badge-item strong { color: var(--teal-deep); }
.cats-badge-item span { color: var(--gray-mid); }

.star-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
.star-tag { color: var(--teal-deep); background: var(--teal-soft); }

.cert-card {
  background: linear-gradient(160deg, #FDF9EC 0%, #F7F0DC 100%);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius);
}
.cert-card h2 { color: #8A6D2F; }
.cert-card p { color: #5A4F36; }
.award-fig img { border: 1px solid var(--line); }

/* ==================== 公司历史 ==================== */
.timeline::before { background: var(--teal-soft); }
.tl-item::before { background: var(--teal); box-shadow: 0 0 0 2px var(--teal); }
.tl-year { color: var(--teal-deep); }
.tl-body { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
.tl-body p { color: var(--ink-2); }

/* 使命句：深色叙事区（暖金衬线） */
.mission-box {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-soft) 100%);
  border-radius: var(--radius);
  padding: 44px 40px;
}
.mission-box h2 { color: var(--gold); font-family: var(--font-serif); letter-spacing: 1px; }
.mission-box p { color: var(--on-dark); font-weight: 500; }

/* ==================== 联系我们 ==================== */
.contact-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
.contact-card p { color: var(--ink-2); }
.map-placeholder { background: var(--teal-mist); border: 1px dashed var(--teal); border-radius: var(--radius-sm); }
.map-placeholder p { color: var(--teal-deep); }
.map-placeholder .map-note { color: var(--gray-mid); }
.contact-form-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
.contact-form label { color: var(--brown); }
.contact-form input, .contact-form textarea { border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: #FFFDF9; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--teal); }
.form-tip { color: var(--teal-deep); }

/* ==================== 焦点与动效 ==================== */
:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

/* ==================== 响应式 ==================== */
@media (max-width: 1024px) {
  :root { --section-gap: 72px; }
  .hero h1 { font-size: 34px; }
}

@media (max-width: 768px) {
  :root { --section-gap: 56px; }
  h1 { font-size: 26px; }
  h2 { font-size: 22px; }

  .site-header { background: var(--cream); }
  .main-nav { background: var(--cream); border-bottom: 1px solid var(--line); }

  .hero-inner { padding: 64px 0 48px; }
  .hero h1 { font-size: 28px; line-height: 1.4; }
  .hero-sub { font-size: 15px; }

  .section-head h2::before,
  .section-head h2::after { width: 20px; margin: 0 10px; }

  .brand-card { padding: 24px 16px 20px; }
  .brand-card .logo-box { height: 64px; }

  .trust-strip { padding: 40px 0; }

  .mission-box { padding: 32px 24px; }
  .mission-box p { font-size: 16px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .section-head h2::before,
  .section-head h2::after { display: none; }
  .brand-card .slogan { font-size: 14px; }
}

/* ============================================================
   V2.1 素材应用层（hero 深色摄影 / 信任条暖金质感 / 品牌页氛围）
   说明：仅替换氛围与背景，真实产品图（罐身/包装/猫砂袋等）一律不动。
   ============================================================ */

/* ---- 首页 Hero：深炭棕电影感摄影背景（猫+自然食材，主体偏右） ---- */
.hero::before {
  background-image: url("../images/hero-home.webp");
  background-size: cover;
  background-position: 78% center;
  opacity: 0.92;
}

/* ---- 首页信任背书条：深棕渐变 + 暖金光晕质感 ---- */
.trust-strip {
  background:
    linear-gradient(90deg, rgba(43, 33, 24, 0.90) 0%, rgba(59, 47, 35, 0.86) 100%),
    url("../images/trust-bg.webp") center / cover no-repeat;
}

/* ---- 品牌页 Hero 氛围（叠品牌色遮罩，保留品牌专属文字语言） ---- */
.hero-tunxiang {
  background:
    linear-gradient(135deg, rgba(245, 241, 230, 0.62) 0%, rgba(234, 242, 236, 0.58) 55%, rgba(230, 244, 242, 0.66) 100%),
    url("../images/brand-tunxiang.webp") center / cover no-repeat;
}
.hero-gundeqiu {
  background:
    linear-gradient(135deg, rgba(255, 247, 236, 0.66) 0%, rgba(253, 238, 220, 0.60) 60%, rgba(249, 241, 228, 0.66) 100%),
    url("../images/brand-gundeqiu.webp") center / cover no-repeat;
}
.hero-zhixuan {
  background:
    linear-gradient(135deg, rgba(30, 58, 95, 0.82) 0%, rgba(44, 74, 115, 0.78) 100%),
    url("../images/brand-zhixuan.webp") center / cover no-repeat;
}
.hero-vom {
  background:
    linear-gradient(135deg, rgba(31, 42, 68, 0.80) 0%, rgba(42, 55, 96, 0.76) 100%),
    url("../images/brand-vom.webp") center / cover no-repeat;
}
.hero-kittybloom {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(251, 246, 244, 0.72) 100%),
    url("../images/brand-kittybloom.webp") center / cover no-repeat;
}

/* ============================================================
   V2.2 大胆版式（V2B）段 —— 首页 v2b 版式 + 内页增强
   来源：视觉设计确认稿 新版视觉实现/v2b/index-v2b.html
   说明：仅作用于首页新结构类（.hero-grid/.bimg/.p-feature 等）
         与全站通用增强；文字/TDK/JSON-LD/FAQ/栏目/链接零改动。
   ============================================================ */

/* ---- 全屏沉浸 Hero（首页新结构） ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  background: var(--brown);
}
.hero::before { content: none; }           /* 关闭旧伪元素背景，改用 .hero-bg */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url("../images/hero-home.webp") center 55% / cover no-repeat;
  opacity: 0.6;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(30,23,18,.93) 0%, rgba(30,23,18,.62) 48%, rgba(30,23,18,.28) 100%);
}
.hero .container.hero-inner { position: relative; z-index: 2; width: 100%; padding: 120px 24px 80px; text-align: left; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
.hero-kicker {
  font-family: var(--font-serif); color: var(--gold); font-size: 14px;
  letter-spacing: 5px; margin-bottom: 24px; display: flex; align-items: center; gap: 14px;
}
.hero-kicker::before { content: ""; width: 52px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: var(--font-serif); font-weight: 600; color: var(--on-dark);
  font-size: clamp(38px, 5vw, 62px); line-height: 1.24; letter-spacing: 2px; margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub { color: var(--on-dark-sub); font-size: 17px; max-width: 540px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-gold { background: var(--gold); color: var(--brown); }
.btn-gold:hover { background: var(--gold-dark); color: #fff; }
.btn-ghost { border: 1.5px solid rgba(201,162,39,.6); color: var(--on-dark); background: transparent; }
.btn-ghost:hover { background: var(--gold); color: var(--brown); }
.hero-side { position: absolute; left: 24px; bottom: 30px; display: block; z-index: 2; }
.hero-card {
  width: min(420px, 92%); border-radius: 28px; background: var(--card);
  padding: 24px; box-shadow: 0 40px 80px rgba(0,0,0,.45); transform: rotate(2.5deg);
}
.hero-card img { border-radius: 18px; }
.hero-card .cap {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 6px 2px; font-size: 12.5px; color: var(--gray-mid); letter-spacing: 1px;
}
.hero-card .cap b { font-family: var(--font-serif); font-size: 15px; color: var(--brown); letter-spacing: 0; }
.hero-year {
  writing-mode: vertical-rl;
  font-family: var(--font-serif); color: var(--gold); font-size: 15px; letter-spacing: 8px; opacity: .85;
}

/* ---- 区块通用（首页） ---- */
.brands, .products, .mags { padding: 110px 0; }
.sec-eyebrow {
  font-family: var(--font-serif); color: var(--gold-dark); font-size: 13px;
  letter-spacing: 5px; text-transform: uppercase; display: flex; align-items: center; gap: 14px;
  margin: 0;
}
.sec-eyebrow::after { content: ""; width: 46px; height: 1px; background: var(--gold); }
.sec-title, .brands-head h2, .products h2 { font-family: var(--font-serif); font-weight: 600; color: var(--brown); font-size: clamp(28px, 3.2vw, 40px); letter-spacing: 1px; margin: 14px 0 10px; }
.sec-desc { color: var(--gray-mid); font-size: 15.5px; max-width: 640px; }

/* ---- 品牌墙（杂志式错位画廊，仅首页 .brands 容器内） ---- */
.brands-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 64px; flex-wrap: wrap; }
.brands .brand-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; align-items: start; }
.brands .brand-card {
  position: relative; border-radius: 22px; overflow: hidden; background: var(--card);
  box-shadow: 0 10px 30px rgba(43,33,24,.06); transition: transform .3s; padding: 0;
}
.brands .brand-card:nth-child(even) { transform: translateY(34px); }
.brands .brand-card:hover { transform: translateY(8px) scale(1.02); }
.brands .brand-card .bimg { aspect-ratio: 1/1; overflow: hidden; }
.brands .brand-card .bimg img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.brands .brand-card:hover .bimg img { transform: scale(1.05); }
.brands .brand-card .binfo { padding: 20px 18px 24px; text-align: center; }
.brands .brand-card h3 { font-family: var(--font-serif); font-weight: 600; color: var(--brown); font-size: 19px; margin-bottom: 4px; }
.brands .brand-card .en { font-size: 10.5px; letter-spacing: 2.5px; color: var(--gray-mid); text-transform: uppercase; margin-bottom: 10px; }
.brands .brand-card .binfo p { font-size: 13px; color: var(--ink-2); line-height: 1.7; }
.brands .brand-card .bl { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 700; }
.brands .b-tunxiang .bl { color: #B30E28; }
.brands .b-gundeqiu .bl { color: #E07A2F; }
.brands .b-zhixuan .bl { color: #1E3A5F; }
.brands .b-vom .bl { color: #A9862F; }
.brands .b-kittybloom .bl { color: #8B1A2B; }

/* ---- 核心产品（大图杂志式非对称） ---- */
.products { background: var(--cream-deep); }
.products-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; margin-top: 56px; align-items: stretch; }
.p-feature {
  background: var(--brown); border-radius: 26px; padding: 44px; color: var(--on-dark);
  display: flex; flex-direction: column; justify-content: space-between; gap: 28px;
  position: relative; overflow: hidden;
}
.p-feature .ft-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.p-feature .ft-tag { font-family: var(--font-serif); color: var(--gold); font-size: 12px; letter-spacing: 4px; }
.p-feature h3 { font-family: var(--font-serif); font-weight: 600; font-size: clamp(24px, 2.6vw, 34px); letter-spacing: 1px; margin: 10px 0 14px; color: var(--on-dark); }
.p-feature .ft-link { color: var(--gold); font-weight: 700; font-size: 14px; }
.p-feature img { width: min(340px, 80%); align-self: center; border-radius: 20px; box-shadow: 0 24px 60px rgba(0,0,0,.4); }
.p-feature .tags { margin-top: 4px; }
.p-col { display: flex; flex-direction: column; gap: 28px; }
.p-card {
  background: var(--card); border-radius: 26px; padding: 28px; display: grid;
  grid-template-columns: 150px 1fr; gap: 22px; align-items: center;
  box-shadow: 0 8px 26px rgba(43,33,24,.05); transition: transform .25s, box-shadow .25s;
}
.p-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(43,33,24,.1); }
.p-card img { border-radius: 16px; width: 150px; height: 150px; object-fit: cover; }
.p-card h4 { font-family: var(--font-serif); font-weight: 600; color: var(--brown); font-size: 18px; margin-bottom: 10px; }
.p-card .tags { display: flex; flex-wrap: wrap; gap: 6px; }
.p-card .tag {
  font-size: 11.5px; padding: 3px 12px; border-radius: 999px;
  background: var(--teal-soft); color: var(--teal-deep); font-weight: 600;
}
.p-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 28px; }

/* ---- 深色叙事区（使命 + 信任） ---- */
.narrative {
  position: relative; background: var(--brown); color: var(--on-dark);
  overflow: hidden; padding: 120px 0;
}
.narrative::before {
  content: ""; position: absolute; inset: 0;
  background: url("../images/trust-bg.webp") center / cover no-repeat; opacity: .45;
}
.narrative .container { position: relative; z-index: 2; }
.mission { max-width: 920px; text-align: center; margin: 0 auto 80px; }
.m-eyebrow { font-family: var(--font-serif); color: var(--gold); font-size: 13px; letter-spacing: 6px; margin-bottom: 24px; }
.mission h2 { font-family: var(--font-serif); font-weight: 600; font-size: clamp(30px, 3.6vw, 50px); line-height: 1.4; letter-spacing: 2px; color: var(--on-dark); margin: 0; }
.mission h2 em { font-style: normal; color: var(--gold); }
.mission p { margin-top: 22px; color: var(--on-dark-sub); font-size: 16px; }
.narrative .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.narrative .trust-item { text-align: center; padding: 10px; }
.narrative .trust-item .t-icon {
  width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%;
  border: 1px solid var(--gold-line); background: rgba(201,162,39,.12);
  display: flex; align-items: center; justify-content: center; color: var(--gold);
}
.narrative .trust-item .t-icon svg { width: 28px; height: 28px; }
.narrative .trust-item h3 { font-family: var(--font-serif); color: var(--gold); font-size: 18px; font-weight: 600; margin: 0 0 6px; letter-spacing: 1px; }
.narrative .trust-item p { color: var(--on-dark-sub); font-size: 13.5px; margin: 0; }

/* ---- 养宠知识 + 企业动态（双栏杂志） ---- */
.mags { background: var(--cream); }
.mag-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; margin-top: 40px; }
.mag-grid h2 { font-family: var(--font-serif); font-weight: 600; color: var(--brown); font-size: 24px; margin: 0 0 6px; }
.mag-desc { color: var(--gray-mid); font-size: 14px; margin: 0 0 18px; }
.k-list, .n-list { list-style: none; margin: 0; padding: 0; }
.k-list li { padding: 18px 4px; border-bottom: 1px solid var(--line); display: flex; gap: 14px; align-items: baseline; }
.k-list li:first-child { border-top: 1px solid var(--line); }
.kcat {
  flex-shrink: 0; font-size: 11.5px; color: var(--teal-deep);
  background: var(--teal-soft); border-radius: 999px; padding: 3px 12px; font-weight: 600;
}
.k-list a { font-size: 16px; color: var(--ink); font-weight: 600; }
.k-list a:hover { color: var(--teal-dark); }
.n-list li { display: grid; grid-template-columns: 74px 1fr; gap: 12px; padding: 16px 4px; border-bottom: 1px solid var(--line); }
.n-list li:first-child { border-top: 1px solid var(--line); }
.ndate { font-family: var(--font-serif); color: #A9862F; font-size: 13px; }
.n-list a { font-size: 14.5px; color: var(--ink-2); line-height: 1.6; }
.n-list a:hover { color: var(--teal-dark); }
.mag-more { display: inline-block; margin-top: 24px; font-size: 14px; font-weight: 700; color: var(--teal-deep); }

/* ---- 内页通用增强（v2b 设计语言） ---- */
.page-hero { padding: 120px 0 76px; }
.section { padding: 110px 0; }
.section-alt { background: var(--cream-deep); }
.trust-strip { padding: 76px 0; }
.product-card { transition: transform .25s, box-shadow .25s; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

/* ---- 响应式 ---- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding: 110px 0 60px; }
  .hero-side { display: none; }
  .hero .container.hero-inner { padding-top: 96px; }
  .brands .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .brands .brand-card:nth-child(even) { transform: none; }
  .products-grid, .mag-grid { grid-template-columns: 1fr; }
  .narrative .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .p-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section, .brands, .products, .mags { padding: 70px 0; }
  .narrative { padding: 84px 0; }
  .brands .brand-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .brands-head { margin-bottom: 40px; }
  .p-card { grid-template-columns: 1fr; text-align: center; }
  .p-card img { margin: 0 auto; }
  .hero h1 { font-size: 34px; }
  .narrative .trust-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta .btn { padding: 13px 26px; font-size: 14px; }
}

/* ---- 补充：品牌 slogan / 知识描述 / 动态分类（V2.2 收尾） ---- */
.brands .brand-card .slogan { font-weight: 700; color: var(--brown); margin-bottom: 6px; }
.k-body { flex: 1; min-width: 0; }
.k-body p { font-size: 12.5px; color: var(--gray-mid); margin: 3px 0 0; line-height: 1.6; }
.n-body { display: flex; gap: 10px; align-items: baseline; flex-wrap: wrap; }
.n-cat {
  flex-shrink: 0; font-size: 11px; color: var(--gold-dark);
  background: rgba(201,162,39,.12); border-radius: 999px; padding: 2px 10px; font-weight: 600;
}
