/*
Theme Name: 蜂巢环保 Fengchao Hex
Theme URI: https://example.com/themes/fengchao-hex
Author: 六边形先生
Author URI: https://example.com/hexagon-mister
Description: 蜂巢琥珀风中文企业主题,为「宁波蜂巢环保科技有限公司」(一家只存在于演示语境中的公司)定制。暖白底、琥珀金主色、规则六边形蜂窝密铺为唯一形状语言:蜂窝导航带、数据巢室密铺、六力蜂窝花、蜂窝斜管填料剖视喷淋塔 SVG。内置巢房产品 CPT、演示兜底与响应式汉堡导航,零外链资源。
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fengchao-hex
Tags: custom-menu, custom-logo, featured-images, translation-ready, full-width-template
*/

/* --------------------------------------------------
   0. 设计变量 —— 蜂巢琥珀系统
   规则六边形:120° 内角,唯一形状语言
-------------------------------------------------- */
:root {
  --fcx-bg: #fdf9f0;          /* 暖白底 */
  --fcx-amber: #e8a712;       /* 琥珀金(蜂蜜) */
  --fcx-amber-hi: #f2b62a;    /* 蜂蜜光泽·上 */
  --fcx-amber-lo: #d59509;    /* 蜂蜜光泽·下 */
  --fcx-ink: #6b4a12;         /* 深蜂蜜棕(正文,对暖白 7.6:1) */
  --fcx-ink-deep: #3d2a06;    /* 最深蜜棕(标题/琥珀底文字 6.5:1) */
  --fcx-cell: #f5dfa8;        /* 浅蜜格 */
  --fcx-cell-soft: #f9edcb;   /* 更浅蜜 */
  --fcx-card: #fffdf6;        /* 蜂蜡白卡片 */
  --fcx-line: #ecd9a9;        /* 蜜色细线 */
  --fcx-muted: #8a6524;       /* 弱化文字(≥4.5:1) */
  --fcx-honey-grad: linear-gradient(180deg, var(--fcx-amber-hi) 0%, var(--fcx-amber) 55%, var(--fcx-amber-lo) 100%);
  /* 规则六边形 clip-path:尖顶(宽:高 = 0.866)与平顶(宽:高 = 1.1547) */
  --hex-pt: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  --hex-ft: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  /* 蜂窝密铺淡纹(内嵌 SVG,零外链) */
  --fcx-comb-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='27.713' height='48'%3E%3Cg fill='none' stroke='%23e8a712' stroke-opacity='.13'%3E%3Cpath d='M13.856,0L27.713,8L27.713,24L13.856,32L0,24L0,8Z'/%3E%3Cpath d='M27.712,24L41.569,32L41.569,48L27.712,56L13.856,48L13.856,32Z'/%3E%3Cpath d='M-0.001,24L13.856,32L13.856,48L-0.001,56L-13.857,48L-13.857,32Z'/%3E%3Cpath d='M27.712,-24L41.569,-16L41.569,0L27.712,8L13.856,0L13.856,-16Z'/%3E%3Cpath d='M-0.001,-24L13.856,-16L13.856,0L-0.001,8L-13.857,0L-13.857,-16Z'/%3E%3C/g%3E%3C/svg%3E");
  --fcx-font: "PingFang SC", "HarmonyOS Sans SC", "MiSans", "Source Han Sans SC", "Noto Sans SC", "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  --fcx-radius: 10px;
  --fcx-maxw: 1160px;
}

/* --------------------------------------------------
   1. 基础
-------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--fcx-font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--fcx-ink);
  background: var(--fcx-bg);
  word-break: break-word;
}
h1, h2, h3, h4, h5, h6 {
  color: var(--fcx-ink-deep);
  line-height: 1.3;
  margin: 0 0 .55em;
  font-weight: 800;
}
p { margin: 0 0 1em; }
a { color: var(--fcx-ink); text-decoration: underline; text-decoration-color: var(--fcx-amber); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--fcx-ink-deep); text-decoration-color: var(--fcx-ink-deep); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.4em; margin: 0 0 1em; }
table { border-collapse: collapse; width: 100%; }
blockquote {
  margin: 1.2em 0; padding: .9em 1.2em;
  background: var(--fcx-cell-soft);
  border-left: 5px solid var(--fcx-amber);
  border-radius: 0 var(--fcx-radius) var(--fcx-radius) 0;
}
code, pre { background: var(--fcx-cell-soft); border-radius: 6px; }
code { padding: .1em .35em; }
pre { padding: 1em; overflow: auto; }
hr { border: 0; border-top: 2px solid var(--fcx-line); margin: 2em 0; }
::selection { background: var(--fcx-cell); color: var(--fcx-ink-deep); }
:focus-visible { outline: 3px solid var(--fcx-ink); outline-offset: 2px; border-radius: 2px; }

.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; overflow: hidden;
  padding: 0; position: absolute; word-wrap: normal;
}
.screen-reader-text:focus {
  clip: auto; clip-path: none; height: auto; width: auto;
  position: fixed; left: 8px; top: 8px; z-index: 10000;
  background: var(--fcx-card); color: var(--fcx-ink-deep);
  padding: 12px 18px; font-weight: 700; box-shadow: 0 4px 16px rgba(107, 74, 18, .25);
}
.skip-link { left: -9999px; position: absolute; }
.skip-link:focus { left: 8px; top: 8px; position: fixed; z-index: 10000; background: var(--fcx-amber); color: var(--fcx-ink-deep); padding: 12px 18px; font-weight: 800; text-decoration: none; }

.wrap { max-width: var(--fcx-maxw); margin: 0 auto; padding: 0 22px; }
.alignleft { float: left; margin: 0 1.2em .8em 0; }
.alignright { float: right; margin: 0 0 .8em 1.2em; }
.aligncenter { margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--fcx-muted); text-align: center; }
.sticky { border: 2px solid var(--fcx-amber); }
.gallery-caption, .bypostauthor { font-style: normal; }

/* 数字:等宽数字排巢室 */
.num, .comb-num, .spec-table td, .stat-strong { font-variant-numeric: tabular-nums; font-feature-settings: "tnum" 1; }

/* --------------------------------------------------
   2. 六边形原语
-------------------------------------------------- */
.hex-pt { clip-path: var(--hex-pt); aspect-ratio: 866 / 1000; }
.hex-ft { clip-path: var(--hex-ft); aspect-ratio: 1000 / 866; }
@supports not (aspect-ratio: 1) {
  .hex-pt, .comb-cell { height: calc(var(--cw, 160px) * 1.1547); }
}

/* 六边形串分隔(SVG 由模板输出) */
.hex-sep { display: flex; justify-content: center; margin: 14px auto 0; color: var(--fcx-amber); }
.hex-sep svg { display: block; }

/* 蜜滴点缀 */
.honey-drop { display: inline-flex; vertical-align: -3px; margin-right: 7px; }

/* --------------------------------------------------
   3. 按钮:切角矩形(蜂室断面),琥珀实底
-------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 13px 30px;
  font-family: inherit; font-size: 15.5px; font-weight: 800; line-height: 1.2;
  text-decoration: none; text-align: center;
  cursor: pointer; border: 0;
  clip-path: polygon(13px 0, calc(100% - 13px) 0, 100% 50%, calc(100% - 13px) 100%, 13px 100%, 0 50%);
  transition: transform .18s ease, filter .18s ease;
}
.btn-amber { background: var(--fcx-honey-grad); color: var(--fcx-ink-deep); }
.btn-amber:hover { filter: brightness(1.05); transform: translateY(-2px); color: var(--fcx-ink-deep); }
.btn-ghost {
  background: var(--fcx-card); color: var(--fcx-ink);
  box-shadow: inset 0 0 0 2px var(--fcx-ink);
}
.btn-ghost:hover { background: var(--fcx-cell-soft); color: var(--fcx-ink-deep); transform: translateY(-2px); }
.btn-sm { padding: 9px 22px; font-size: 14px; clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 10px 100%, 0 50%); }
.btn:focus-visible { outline-offset: 4px; }

/* --------------------------------------------------
   4. 站点头部:蜂蜡白横梁 + 巢门导航
-------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--fcx-card);
  border-bottom: 2px solid var(--fcx-line);
  transition: box-shadow .25s ease;
}
body.is-scrolled .site-header { box-shadow: 0 6px 22px rgba(107, 74, 18, .12); }
.header-inner { display: flex; align-items: center; gap: 26px; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 42px; height: 42px; flex: 0 0 auto;
  display: grid; place-items: center;
  color: var(--fcx-ink-deep);
}
.brand-mark svg { display: block; }
.custom-logo-link img.custom-logo { max-height: 46px; width: auto; }
.brand-text { line-height: 1.25; }
.brand-name { font-size: 19px; font-weight: 900; color: var(--fcx-ink-deep); letter-spacing: .02em; }
.brand-slogan { display: block; font-size: 11.5px; color: var(--fcx-muted); letter-spacing: .12em; }

.site-nav .menu { list-style: none; display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; }
.site-nav .menu li { position: relative; }
.site-nav .menu a {
  display: block; padding: 10px 13px;
  font-size: 15px; font-weight: 700; text-decoration: none; color: var(--fcx-ink);
  border-radius: 8px;
}
.site-nav .menu a:hover { background: var(--fcx-cell-soft); color: var(--fcx-ink-deep); }
.site-nav .menu .current-menu-item > a,
.site-nav .menu .current_page_item > a { background: var(--fcx-cell); color: var(--fcx-ink-deep); }
.site-nav .menu ul { list-style: none; margin: 0; padding: 6px; display: none; position: absolute; top: 100%; left: 0; min-width: 180px; background: var(--fcx-card); border: 2px solid var(--fcx-line); border-radius: 10px; z-index: 950; }
.site-nav .menu li:hover > ul, .site-nav .menu li:focus-within > ul { display: block; }
.header-cta { flex: 0 0 auto; }

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 42px; padding: 0 10px;
  background: var(--fcx-cell); border: 0; cursor: pointer;
  clip-path: var(--hex-ft);
}
.nav-toggle .bar { display: block; height: 3px; width: 100%; background: var(--fcx-ink-deep); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
body.nav-open .nav-toggle .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle .bar:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --------------------------------------------------
   5. Hero:蜂窝淡纹底 + 剖视喷淋塔
-------------------------------------------------- */
.hero {
  background-color: var(--fcx-bg);
  background-image: var(--fcx-comb-bg);
  border-bottom: 2px solid var(--fcx-line);
  overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1.04fr .96fr; gap: 46px;
  align-items: center; padding: 64px 0 58px;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--fcx-cell); color: var(--fcx-ink-deep);
  font-size: 13px; font-weight: 800; letter-spacing: .06em;
  padding: 7px 18px;
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 10px 100%, 0 50%);
  margin-bottom: 20px;
}
.hero-title { font-size: clamp(32px, 4.6vw, 52px); font-weight: 900; letter-spacing: .01em; margin-bottom: 16px; }
.hero-title .honey-drop svg { width: .62em; height: .62em; }
.hero-lead { font-size: 17px; max-width: 34em; color: var(--fcx-ink); margin-bottom: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-note {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--fcx-card); border: 2px solid var(--fcx-line);
  border-radius: 999px; padding: 8px 18px 8px 10px;
  font-size: 13.5px; color: var(--fcx-muted); font-weight: 700;
}
.hero-note .note-hex {
  width: 26px; height: 30px; flex: 0 0 auto;
  clip-path: var(--hex-pt); background: var(--fcx-honey-grad);
}
.hero-art { position: relative; }
.hero-art svg { width: 100%; max-width: 480px; height: auto; display: block; margin: 0 auto; }

/* --------------------------------------------------
   6. 蜂窝导航带:五个六边形巢门
-------------------------------------------------- */
.hive-band { padding: 34px 0 20px; }
.hive-band-row { display: flex; justify-content: center; gap: 8px; }
.hive-link {
  --cw: 158px;
  width: var(--cw); aspect-ratio: 866 / 1000;
  clip-path: var(--hex-pt);
  background: var(--fcx-card);
  box-shadow: inset 0 0 0 60px rgba(232, 167, 18, 0);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; padding: 20% 12%;
  text-align: center; text-decoration: none;
  border: 0; position: relative;
  transition: transform .2s ease, background-color .2s ease;
}
.hive-link::before {
  content: ""; position: absolute; inset: 0;
  clip-path: var(--hex-pt);
  background: transparent;
  box-shadow: inset 0 0 0 3px var(--fcx-cell);
  transition: box-shadow .2s ease;
}
.hive-link:hover { background: var(--fcx-cell-soft); transform: translateY(-4px); }
.hive-link:hover::before { box-shadow: inset 0 0 0 3px var(--fcx-amber); }
.hive-link__icon { color: var(--fcx-amber-lo); position: relative; }
.hive-link__icon svg { width: 30px; height: 30px; display: block; }
.hive-link__t { font-size: 15.5px; font-weight: 800; color: var(--fcx-ink-deep); position: relative; }
.hive-link__s { font-size: 11.5px; letter-spacing: .18em; color: var(--fcx-muted); position: relative; }

/* --------------------------------------------------
   7. 区块通用
-------------------------------------------------- */
.sec { padding: 66px 0; }
.sec--tint { background: var(--fcx-cell-soft); border-top: 2px solid var(--fcx-line); border-bottom: 2px solid var(--fcx-line); }
.sec--comb-bg { background-image: var(--fcx-comb-bg); }
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 42px; }
.sec-kicker {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 800; letter-spacing: .22em;
  color: var(--fcx-muted); text-transform: uppercase;
  margin-bottom: 10px;
}
.sec-title { font-size: clamp(24px, 3.2vw, 36px); margin-bottom: 10px; }
.sec-sub { color: var(--fcx-muted); font-size: 15.5px; margin: 0; }

/* --------------------------------------------------
   8. 数据巢室:真密铺蜂窝(共用壁,3 + 2)
-------------------------------------------------- */
.comb { --cw: 178px; --wall: 5px; }
.comb-row { display: flex; justify-content: center; gap: var(--wall); }
.comb-row + .comb-row { margin-top: calc(var(--cw) * -0.2887 + var(--wall)); }
.comb-cell {
  width: var(--cw); aspect-ratio: 866 / 1000;
  clip-path: var(--hex-pt);
  background: var(--fcx-cell);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; padding: 22% 13%;
  text-align: center;
}
.comb-cell--amber { background: var(--fcx-honey-grad); }
.comb-cell--card { background: var(--fcx-card); box-shadow: inset 0 0 0 2px var(--fcx-cell); }
.comb-num { font-size: 30px; font-weight: 900; color: var(--fcx-ink-deep); line-height: 1.1; }
.comb-unit { font-size: 14px; font-weight: 800; color: var(--fcx-ink-deep); }
.comb-label { font-size: 12.5px; font-weight: 700; color: var(--fcx-ink); line-height: 1.4; }
.comb-cell--amber .comb-label { color: var(--fcx-ink-deep); }
.comb-foot { text-align: center; color: var(--fcx-muted); font-size: 13.5px; margin-top: 26px; }

/* --------------------------------------------------
   9. 巢房产品卡:六边形媒体位
-------------------------------------------------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.product-card {
  background: var(--fcx-card);
  border: 2px solid var(--fcx-line);
  border-radius: var(--fcx-radius);
  padding: 30px 24px 26px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card:hover { transform: translateY(-6px); border-color: var(--fcx-amber); box-shadow: 0 14px 30px rgba(107, 74, 18, .12); }
.product-card__media {
  width: 148px; aspect-ratio: 1000 / 866;
  clip-path: var(--hex-ft);
  background: var(--fcx-honey-grad);
  display: grid; place-items: center;
  margin-bottom: 18px;
  color: var(--fcx-ink-deep);
  overflow: hidden;
}
.product-card__media svg { width: 62px; height: 62px; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; }
.product-card__model {
  display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: .14em;
  color: var(--fcx-muted); margin-bottom: 6px;
}
.product-card__title { font-size: 20px; margin-bottom: 8px; }
.product-card__title a { text-decoration: none; color: inherit; }
.product-card__title a:hover { color: var(--fcx-amber-lo); }
.product-card__desc { font-size: 14px; color: var(--fcx-ink); margin-bottom: 14px; }
.spec-mini { list-style: none; margin: 0 0 18px; padding: 12px 10px; width: 100%; background: var(--fcx-cell-soft); border-radius: 8px; display: grid; gap: 5px; }
.spec-mini li { display: flex; justify-content: space-between; gap: 10px; font-size: 13px; }
.spec-mini .k { color: var(--fcx-muted); font-weight: 700; }
.spec-mini .v { color: var(--fcx-ink-deep); font-weight: 800; font-variant-numeric: tabular-nums; }
.product-card .btn { margin-top: auto; }

/* --------------------------------------------------
   10. 蜂窝工艺 + 蜂王之选(金浩丰)
-------------------------------------------------- */
.craft-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 40px; align-items: start; }
.craft-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.craft-list li {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--fcx-card); border: 2px solid var(--fcx-line); border-radius: var(--fcx-radius);
  padding: 16px 18px;
}
.craft-list .li-hex {
  flex: 0 0 auto; width: 40px; height: 46px;
  clip-path: var(--hex-pt); background: var(--fcx-honey-grad);
  display: grid; place-items: center;
  font-weight: 900; font-size: 15px; color: var(--fcx-ink-deep);
}
.craft-list h3 { font-size: 16.5px; margin-bottom: 3px; }
.craft-list p { margin: 0; font-size: 14px; color: var(--fcx-ink); }
.kinghive {
  background: var(--fcx-card);
  border: 3px solid var(--fcx-amber);
  border-radius: var(--fcx-radius);
  padding: 28px 26px;
  position: relative;
}
.kinghive__tag {
  position: absolute; top: -16px; left: 24px;
  background: var(--fcx-honey-grad); color: var(--fcx-ink-deep);
  font-size: 13px; font-weight: 900; letter-spacing: .1em;
  padding: 6px 18px;
  clip-path: polygon(9px 0, calc(100% - 9px) 0, 100% 50%, calc(100% - 9px) 100%, 9px 100%, 0 50%);
}
.kinghive blockquote { margin: 10px 0 0; background: none; border: 0; padding: 0; font-size: 16.5px; font-weight: 700; color: var(--fcx-ink-deep); line-height: 1.9; }
.kinghive .src { display: block; margin-top: 12px; font-size: 13px; color: var(--fcx-muted); font-weight: 700; }
.kinghive .honey-drop { margin-bottom: 6px; }

/* --------------------------------------------------
   11. 六力模型:蜂窝花(中心一格 + 六格环绕,2-3-2 密铺)
-------------------------------------------------- */
.comb--flower { --cw: 208px; }
.comb--flower .comb-cell { gap: 4px; padding: 20% 13%; }
.comb--flower .cell-icon { color: var(--fcx-amber-lo); }
.comb--flower .cell-icon svg { width: 28px; height: 28px; display: block; }
.comb--flower .comb-cell--amber .cell-icon { color: var(--fcx-ink-deep); }
.comb--flower h3 { font-size: 16px; margin: 0; }
.comb--flower .comb-desc { font-size: 12px; line-height: 1.5; color: var(--fcx-ink); margin: 0; }
.comb--flower .flower-core-t { font-size: 21px; font-weight: 900; color: var(--fcx-ink-deep); margin: 0; }
.comb--flower .flower-core-s { font-size: 12px; font-weight: 800; letter-spacing: .2em; color: var(--fcx-ink-deep); margin: 0; }

/* --------------------------------------------------
   12. 采蜜实录:三案例三徽章
-------------------------------------------------- */
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.case-card {
  background: var(--fcx-card); border: 2px solid var(--fcx-line); border-radius: var(--fcx-radius);
  padding: 28px 24px; position: relative;
  transition: transform .2s ease, border-color .2s ease;
}
.case-card:hover { transform: translateY(-5px); border-color: var(--fcx-amber); }
.case-badge {
  width: 62px; aspect-ratio: 866 / 1000;
  clip-path: var(--hex-pt); background: var(--fcx-honey-grad);
  display: grid; place-items: center;
  font-size: 15px; font-weight: 900; color: var(--fcx-ink-deep);
  margin-bottom: 16px;
}
.case-card h3 { font-size: 18px; margin-bottom: 4px; }
.case-meta { font-size: 12.5px; font-weight: 800; letter-spacing: .08em; color: var(--fcx-muted); margin-bottom: 10px; }
.case-card p { font-size: 14px; margin-bottom: 12px; }
.case-result {
  display: inline-block; background: var(--fcx-cell); color: var(--fcx-ink-deep);
  font-size: 13px; font-weight: 800; padding: 6px 14px;
  clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 8px 100%, 0 50%);
}

/* --------------------------------------------------
   13. 蜂讯(文章卡通用)
-------------------------------------------------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card {
  background: var(--fcx-card); border: 2px solid var(--fcx-line); border-radius: var(--fcx-radius);
  padding: 24px; display: flex; flex-direction: column; gap: 10px;
  transition: transform .2s ease, border-color .2s ease;
}
.post-card:hover { transform: translateY(-4px); border-color: var(--fcx-amber); }
.post-card__top { display: flex; align-items: center; gap: 14px; }
.post-card__hex {
  flex: 0 0 auto; width: 52px; aspect-ratio: 866 / 1000;
  clip-path: var(--hex-pt); background: var(--fcx-cell);
  display: grid; place-items: center; text-align: center;
  color: var(--fcx-ink-deep); overflow: hidden;
}
.post-card__hex img { width: 100%; height: 100%; object-fit: cover; }
.post-card__hex .d { font-size: 16px; font-weight: 900; line-height: 1; }
.post-card__hex .m { font-size: 9.5px; font-weight: 800; letter-spacing: .05em; }
.post-card__meta { font-size: 12.5px; color: var(--fcx-muted); font-weight: 700; }
.post-card__title { font-size: 17px; margin: 0; }
.post-card__title a { text-decoration: none; color: inherit; }
.post-card__title a:hover { color: var(--fcx-amber-lo); }
.post-card__excerpt { font-size: 14px; margin: 0; color: var(--fcx-ink); }
.post-card__more { margin-top: auto; font-size: 13.5px; font-weight: 800; text-decoration: none; color: var(--fcx-muted); }
.post-card__more:hover { color: var(--fcx-ink-deep); }

/* --------------------------------------------------
   14. 入巢洽谈:琥珀蜜带
-------------------------------------------------- */
.contact-band {
  background: var(--fcx-honey-grad);
  color: var(--fcx-ink-deep);
  padding: 58px 0;
  position: relative;
}
.contact-band .sec-title, .contact-band p { color: var(--fcx-ink-deep); }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.contact-lead { font-size: 16px; font-weight: 600; max-width: 32em; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.contact-list li { display: flex; align-items: center; gap: 12px; font-size: 15.5px; font-weight: 700; }
.contact-list .c-hex {
  flex: 0 0 auto; width: 38px; height: 44px;
  clip-path: var(--hex-pt); background: var(--fcx-card);
  display: grid; place-items: center; color: var(--fcx-ink-deep);
}
.contact-list .c-hex svg { width: 19px; height: 19px; }
.contact-band .btn-ghost { background: var(--fcx-card); }

/* --------------------------------------------------
   15. 内页 / 归档 / 文章
-------------------------------------------------- */
.page-hero {
  background: var(--fcx-cell-soft);
  background-image: var(--fcx-comb-bg);
  border-bottom: 2px solid var(--fcx-line);
  padding: 46px 0 40px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 6px; }
.page-hero .desc { color: var(--fcx-muted); font-size: 15px; margin: 0 auto; max-width: 640px; }
.layout { display: grid; grid-template-columns: minmax(0, 1fr) 316px; gap: 44px; padding: 52px 0 66px; }
.layout--full { grid-template-columns: minmax(0, 1fr); }
.stream { display: grid; gap: 24px; }

.entry { background: var(--fcx-card); border: 2px solid var(--fcx-line); border-radius: var(--fcx-radius); padding: 38px clamp(22px, 4vw, 46px); }
.entry-header { margin-bottom: 22px; }
.entry-title { font-size: clamp(24px, 3vw, 32px); }
.entry-meta { font-size: 13.5px; color: var(--fcx-muted); font-weight: 700; display: flex; flex-wrap: wrap; gap: 6px 16px; }
.entry-meta a { color: inherit; }
.entry-content h2 { padding-left: 16px; border-left: 6px solid var(--fcx-amber); }
.entry-content a { color: var(--fcx-ink-deep); }
.entry-thumb { margin: 0 0 24px; }
.entry-thumb img { border-radius: var(--fcx-radius); }
.entry-tags { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; }
.entry-tags a {
  background: var(--fcx-cell-soft); color: var(--fcx-ink); text-decoration: none; font-weight: 700;
  padding: 5px 13px; clip-path: polygon(7px 0, calc(100% - 7px) 0, 100% 50%, calc(100% - 7px) 100%, 7px 100%, 0 50%);
}
.entry-tags a:hover { background: var(--fcx-cell); color: var(--fcx-ink-deep); }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; }
.post-nav a {
  display: block; background: var(--fcx-card); border: 2px solid var(--fcx-line); border-radius: var(--fcx-radius);
  padding: 14px 18px; text-decoration: none; font-size: 14px; font-weight: 700;
}
.post-nav a:hover { border-color: var(--fcx-amber); }
.post-nav .lbl { display: block; font-size: 11.5px; letter-spacing: .15em; color: var(--fcx-muted); margin-bottom: 3px; }
.post-nav .next { text-align: right; }

.pagination, .page-numbers { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 36px; padding: 0; list-style: none; }
.pagination .page-numbers, nav.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 0; }
.page-numbers a, .page-numbers span.current, span.page-numbers.dots {
  display: grid; place-items: center;
  min-width: 44px; height: 50px; padding: 0 10px;
  clip-path: var(--hex-pt);
  background: var(--fcx-card); color: var(--fcx-ink);
  font-weight: 800; text-decoration: none; font-size: 14.5px;
}
.page-numbers a:hover { background: var(--fcx-cell); color: var(--fcx-ink-deep); }
.page-numbers span.current { background: var(--fcx-honey-grad); color: var(--fcx-ink-deep); }

/* --------------------------------------------------
   16. 侧栏
-------------------------------------------------- */
.widget-area { display: grid; gap: 24px; align-content: start; }
.widget { background: var(--fcx-card); border: 2px solid var(--fcx-line); border-radius: var(--fcx-radius); padding: 24px 22px; }
.widget-title { font-size: 16px; display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.widget-title::before { content: ""; width: 12px; height: 14px; clip-path: var(--hex-pt); background: var(--fcx-amber); }
.widget ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.widget ul a { text-decoration: none; font-size: 14.5px; font-weight: 700; }
.widget ul a:hover { color: var(--fcx-amber-lo); }
.widget p { font-size: 14px; margin-bottom: 0; }

/* --------------------------------------------------
   17. 搜索表单
-------------------------------------------------- */
.search-form { display: flex; gap: 0; max-width: 520px; }
.search-form .search-field {
  flex: 1; min-width: 0;
  font-family: inherit; font-size: 15px; color: var(--fcx-ink-deep);
  background: var(--fcx-card);
  border: 2px solid var(--fcx-ink); border-right: 0;
  border-radius: 10px 0 0 10px;
  padding: 11px 16px;
}
.search-form .search-field::placeholder { color: var(--fcx-muted); }
.search-form .search-field:focus { outline: none; border-color: var(--fcx-amber-lo); }
.search-form .search-submit {
  font-family: inherit; font-size: 15px; font-weight: 800; color: var(--fcx-ink-deep);
  background: var(--fcx-honey-grad); border: 2px solid var(--fcx-ink);
  border-radius: 0 10px 10px 0;
  padding: 11px 22px; cursor: pointer;
}
.search-form .search-submit:hover { filter: brightness(1.06); }

/* --------------------------------------------------
   18. 巢房产品:归档与详情
-------------------------------------------------- */
.product-hero-badge {
  width: 84px; aspect-ratio: 866 / 1000; margin: 0 auto 14px;
  clip-path: var(--hex-pt); background: var(--fcx-honey-grad);
  display: grid; place-items: center;
  font-size: 20px; font-weight: 900; color: var(--fcx-ink-deep);
}
.single-product-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 44px; padding: 54px 0 20px; align-items: start; }
.product-figure {
  background: var(--fcx-card); border: 2px solid var(--fcx-line); border-radius: var(--fcx-radius);
  padding: 34px; display: grid; place-items: center;
  background-image: var(--fcx-comb-bg);
}
.product-figure .figure-hex {
  width: min(300px, 76%); aspect-ratio: 1000 / 866;
  clip-path: var(--hex-ft); background: var(--fcx-honey-grad);
  display: grid; place-items: center; color: var(--fcx-ink-deep); overflow: hidden;
}
.product-figure .figure-hex img { width: 100%; height: 100%; object-fit: cover; }
.product-figure .figure-hex svg { width: 44%; height: auto; }
.product-figure figcaption { margin-top: 16px; font-size: 13px; color: var(--fcx-muted); font-weight: 700; text-align: center; }
.product-intro .product-cats { font-size: 13px; font-weight: 800; letter-spacing: .1em; color: var(--fcx-muted); margin-bottom: 8px; }
.product-intro .product-cats a { color: inherit; text-decoration: none; }
.product-intro h1 { font-size: clamp(26px, 3.2vw, 36px); }
.product-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }

/* 参数表:巢室样式 */
.spec-block { padding: 30px 0 10px; }
.spec-table { border: 2px solid var(--fcx-line); border-radius: var(--fcx-radius); overflow: hidden; border-collapse: separate; border-spacing: 0; background: var(--fcx-card); }
.spec-table caption { caption-side: top; text-align: left; font-weight: 900; font-size: 17px; color: var(--fcx-ink-deep); padding: 0 0 12px; }
.spec-table th, .spec-table td { padding: 13px 18px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--fcx-line); }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.spec-table th {
  width: 34%; background: var(--fcx-cell-soft); color: var(--fcx-ink-deep); font-weight: 800;
}
.spec-table th .th-hex { display: inline-block; width: 10px; height: 12px; clip-path: var(--hex-pt); background: var(--fcx-amber); margin-right: 8px; vertical-align: -1px; }
.spec-table td { color: var(--fcx-ink); font-weight: 600; }
.spec-note { font-size: 13px; color: var(--fcx-muted); margin-top: 12px; }

.cta-inquiry {
  margin: 40px 0 64px;
  background: var(--fcx-honey-grad); border-radius: var(--fcx-radius);
  padding: 34px clamp(22px, 4vw, 44px);
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px; justify-content: space-between;
  color: var(--fcx-ink-deep);
}
.cta-inquiry h2 { margin: 0 0 4px; font-size: 22px; }
.cta-inquiry p { margin: 0; font-weight: 700; }
.related-products { padding-bottom: 66px; }
.related-products h2 { text-align: center; font-size: 24px; margin-bottom: 26px; }

/* --------------------------------------------------
   19. 404:空巢室
-------------------------------------------------- */
.error-wrap { padding: 80px 0 90px; text-align: center; }
.error-hex {
  width: 190px; aspect-ratio: 866 / 1000; margin: 0 auto 26px;
  clip-path: var(--hex-pt); background: var(--fcx-cell);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
}
.error-hex .code { font-size: 46px; font-weight: 900; color: var(--fcx-ink-deep); line-height: 1; }
.error-hex .word { font-size: 13px; font-weight: 800; letter-spacing: .3em; color: var(--fcx-muted); }
.error-wrap h1 { font-size: 28px; }
.error-wrap .search-form { margin: 26px auto 20px; }
.error-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --------------------------------------------------
   20. 页脚:浅蜜巢底(无黑底)
-------------------------------------------------- */
.site-footer { background: var(--fcx-cell); border-top: 3px solid var(--fcx-amber); color: var(--fcx-ink); }
.footer-comb { height: 26px; background-image: var(--fcx-comb-bg); background-color: var(--fcx-cell-soft); border-bottom: 2px solid var(--fcx-line); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1.1fr; gap: 40px; padding: 46px 0 30px; }
.footer-col h3 { font-size: 16px; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.footer-col h3::before { content: ""; width: 12px; height: 14px; clip-path: var(--hex-pt); background: var(--fcx-amber-lo); }
.footer-col p { font-size: 14px; margin-bottom: 10px; }
.footer-col .menu, .footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-col .menu a, .footer-col ul a { text-decoration: none; font-size: 14.5px; font-weight: 700; }
.footer-col .menu a:hover, .footer-col ul a:hover { color: var(--fcx-ink-deep); text-decoration: underline; text-decoration-color: var(--fcx-amber-lo); }
.footer-supplier {
  border-top: 2px solid rgba(107, 74, 18, .18);
  padding: 18px 0 0; margin-bottom: 14px;
  font-size: 13.5px; color: var(--fcx-ink); font-weight: 600;
}
.footer-note { font-size: 12.5px; color: var(--fcx-ink); opacity: .92; margin-bottom: 18px; }
.site-info {
  border-top: 2px solid rgba(107, 74, 18, .18);
  padding: 18px 0 24px;
  font-size: 13px; display: flex; flex-wrap: wrap; gap: 6px 18px; justify-content: space-between;
}

/* --------------------------------------------------
   21. 逐格入场(reveal)与动效兜底
-------------------------------------------------- */
.reveal { opacity: 1; }
html.js .reveal {
  opacity: 0; transform: translateY(18px) scale(.96);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2, .8, .3, 1);
}
html.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .product-card, .case-card, .post-card, .hive-link { transition: none; }
}

/* --------------------------------------------------
   22. 响应式
-------------------------------------------------- */
@media (max-width: 1024px) {
  .comb { --cw: 152px; }
  .comb--flower { --cw: 178px; }
  .hive-link { --cw: 138px; }
  .product-grid, .case-grid, .news-grid { gap: 18px; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 30px; padding: 46px 0; }
  .hero-art svg { max-width: 400px; }
  .craft-grid, .contact-grid, .single-product-grid { grid-template-columns: 1fr; }
  .layout { grid-template-columns: 1fr; }
  .product-grid, .case-grid, .news-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--fcx-card);
    border-bottom: 3px solid var(--fcx-amber);
    box-shadow: 0 18px 30px rgba(107, 74, 18, .16);
    padding: 12px 18px 18px;
  }
  body.nav-open .site-nav { display: block; }
  .site-nav .menu { flex-direction: column; align-items: stretch; gap: 2px; }
  .site-nav .menu a { padding: 12px 14px; font-size: 16px; }
  .site-nav .menu ul { display: block; position: static; border: 0; padding: 0 0 0 18px; min-width: 0; background: transparent; }
  .header-cta { display: none; }
  /* 蜂窝导航带降为两行(3 + 2) */
  .hive-band-row { flex-wrap: wrap; row-gap: 10px; }
  .hive-link { --cw: 30vw; max-width: 150px; }
  .comb { --cw: 30vw; --wall: 4px; }
  .comb--flower { --cw: 31vw; }
  .comb--flower .comb-desc { display: none; }
  .comb--flower h3 { font-size: 13.5px; }
  .comb-num { font-size: 22px; }
  .comb-label { font-size: 10.5px; }
  .sec { padding: 48px 0; }
}
@media (max-width: 560px) {
  .product-grid, .case-grid, .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .post-nav { grid-template-columns: 1fr; }
  .hero-title { font-size: 30px; }
  .comb--flower .cell-icon svg { width: 20px; height: 20px; }
  .comb--flower .flower-core-t { font-size: 15px; }
  .site-info { justify-content: center; text-align: center; }
}

/* 打印:去装饰 */
@media print {
  .site-header, .site-footer, .nav-toggle, .hero-art, .contact-band .btn { display: none; }
  body { background: #fff; color: #000; }
}
