/* ==========================================================================
   内页组件 —— 承接 design.css 的变量，不重复定义配色
   编排原则：单一左边缘、宽松的竖向节奏、层次靠留白和细线而不是色块
   ========================================================================== */

main { display: block; }

/* 统一的竖向节奏：区块间距只由 padding 决定，避免 margin 叠加 */
.section { padding-block: clamp(3.4rem, 6.5vw, 7.5rem); }
.section + .section { padding-block-start: 0; }
/* 紧跟刊头的区块：刊头已经有下内边距，这里减半，否则中间是一片空档 */
.page-head + .section { padding-block-start: clamp(2.2rem, 3.5vw, 3.6rem); }

/* ---------- 面包屑 ---------- */
.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--text-mute);
  margin-bottom: 1.6rem;
}
.crumbs a { color: var(--text-dim); transition: color .3s; }
.crumbs a:hover { color: var(--gold); }
.crumbs span { opacity: .45; }
.crumbs b { color: var(--text); font-weight: 500; }

/* ---------- 页头刊头 ----------
   单栏页头在宽屏上会留下半屏死白。双栏：文字在左，右侧放图或信息面板，
   两栏顶部对齐到同一条基线。 */
.page-head {
  padding-block: clamp(2rem, 4vw, 3.4rem) clamp(2.2rem, 4vw, 3.4rem);
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(120% 140% at 88% 0%, rgba(185,112,39,.07) 0%, transparent 58%),
    var(--bg-0);
}
.page-head h1 { margin-block: 0.9rem 1.1rem; }
.page-head .lead { max-width: 46ch; margin-bottom: 0; }
.page-head .eyebrow { margin: 0; }

.page-head__inner { display: block; }
.page-head--split .page-head__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 4.5vw, 4.5rem);
  align-items: center;
}
.page-head--split h1 { max-width: 14ch; }

/* 刊头右侧的图：高度跟着左栏走，不是一张飘着的图 */
.head-fig {
  margin: 0; border-radius: 4px; overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
  box-shadow: var(--shadow-lg);
}
.head-fig img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* 分类刊头的车间实拍：比 4:3 更宽，横着压住右栏 */
.head-fig--wide { aspect-ratio: 3 / 2; }

/* 信息面板：每个「标签+数值」是一个不可拆的单元。
   直接把 dt/dd 铺进网格会把标签和数值拆到左右两列去。 */
.head-facts {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem 1.4rem; margin: 0;
  padding-top: 1.2rem; border-top: 1px solid var(--line);
}

/* 通栏横条版：跨过左右两栏，指标一字排开，比挤在右栏 2×2 舒展得多 */
.head-facts--strip {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.6rem 2rem;
  margin-top: clamp(2rem, 3.5vw, 3.2rem);
  padding-top: 1.6rem;
}
.head-facts--strip .head-facts__i { position: relative; }
.head-facts--strip dd { font-size: clamp(1.25rem, 1.8vw, 1.7rem); }
.head-facts__i { min-width: 0; }
.head-facts dt {
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-mute);
}
.head-facts dd {
  margin: 0.32rem 0 0;
  font-family: var(--font-display);
  font-size: 1.12rem; line-height: 1.25; color: var(--text);
}

@media (max-width: 900px) {
  .page-head--split .page-head__inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .page-head--split h1 { max-width: 18ch; }
  .head-fig { aspect-ratio: 16 / 9; }
}

/* ---------- 图 ---------- */
.fig { margin: 0; border-radius: 4px; overflow: hidden; background: var(--bg-2); }
.fig img { width: 100%; height: 100%; object-fit: cover; display: block; }
.fig--wide { aspect-ratio: 21 / 9; box-shadow: var(--shadow-md); }
.hero-media { padding-block: clamp(2rem, 4vw, 3.4rem); }

@media (max-width: 720px) {
  .fig--wide { aspect-ratio: 4 / 3; }
}

/* ---------- 介绍：正文 + 侧栏参数 ---------- */
.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(240px, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.intro__body p {
  font-size: clamp(1rem, 1.05vw, 1.14rem);
  line-height: 1.78;
  color: var(--text-dim);
  max-width: var(--measure);
  margin-bottom: 1.15em;
}
.intro__body p:first-child {
  font-size: clamp(1.1rem, 1.35vw, 1.32rem);
  line-height: 1.62;
  color: var(--text);
}
.intro__meta {
  border-top: 2px solid var(--gold);
  padding-top: 1.4rem;
  background: var(--bg-1);
  padding: 1.5rem 1.5rem 1.7rem;
  border-radius: 3px;
}
.intro__meta dl {
  margin: 0 0 1.4rem;
  display: grid; grid-template-columns: 1fr; gap: 0;
}
.intro__meta dt {
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-mute); margin-top: 1rem;
}
.intro__meta dt:first-child { margin-top: 0; }
.intro__meta dd {
  margin: 0.3rem 0 0; font-size: 0.94rem; color: var(--text);
  padding-bottom: 0.85rem; border-bottom: 1px solid var(--line-soft);
}
.intro__meta dd:last-of-type { border-bottom: 0; }

@media (max-width: 900px) {
  .intro__grid { grid-template-columns: 1fr; }
}

/* ---------- 参数表 ---------- */
.spec h2 { margin-block: 0.9rem 1.8rem; }
.spec__scroll {
  overflow-x: auto;                 /* 宽表在自己的容器里横滚，页面不横向溢出 */
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--bg-3);
}
.spec table {
  width: 100%; border-collapse: collapse;
  font-size: 0.92rem; min-width: 560px;
}
.spec thead th {
  background: var(--navy); color: #fff;
  font-family: var(--font-display); font-weight: 400;
  text-align: left; letter-spacing: 0.02em;
  padding: 0.95rem 1.15rem;
  white-space: nowrap;
}
.spec tbody td {
  padding: 0.85rem 1.15rem;
  border-top: 1px solid var(--line-soft);
  color: var(--text-dim);
  vertical-align: top;
}
.spec tbody td:first-child { color: var(--text); font-weight: 500; }
.spec tbody tr:nth-child(even) { background: var(--bg-1); }
.spec tbody tr:hover { background: rgba(185,112,39,.055); }

/* ---------- 卡片网格 ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 1.8rem;
}
.card {
  background: var(--bg-3);
  padding: 2rem 1.7rem 2.1rem;
  transition: background .45s var(--ease-out);
}
.card:hover { background: var(--bg-1); }
.card__n {
  font-family: var(--font-display);
  font-size: 0.8rem; letter-spacing: 0.14em;
  color: var(--gold);
}
.card h3 { margin-block: 0.85rem 0.7rem; }
.card p { color: var(--text-dim); font-size: 0.93rem; line-height: 1.7; margin: 0; }

/* ---------- 正文 ---------- */
.prose { max-width: var(--measure); }
.prose h2 { margin-block: 0 1.1rem; }
.prose p { color: var(--text-dim); line-height: 1.78; margin-bottom: 1.15em; }
/* 块内最后一个元素不留下边距 —— 否则和块间的 margin-top 叠加，
   About 页实测两段之间空出约 70px */
.prose > :last-child { margin-bottom: 0; }
.prose__list { margin: 1.2rem 0 0; padding-inline-start: 1.15em; }
.prose__list li { color: var(--text-dim); line-height: 1.72; margin-bottom: 0.7em; }
.prose__list b { color: var(--text); font-weight: 600; }

.article__body > .prose + .prose { margin-top: clamp(1.8rem, 3vw, 2.6rem); }

/* ---------- 图库 ---------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.1rem;
  margin-top: 1.8rem;
}
.gallery__item {
  margin: 0; border-radius: 3px; overflow: hidden;
  background: var(--bg-2); border: 1px solid var(--line-soft);
}
.gallery__item img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block;
  transition: transform .9s var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item figcaption {
  padding: 0.75rem 0.9rem;
  font-size: 0.78rem; color: var(--text-mute);
  border-top: 1px solid var(--line-soft);
}

/* ---------- FAQ ---------- */
.faq h2 { margin-block: 0.9rem 1.8rem; }
.faq__list { border-top: 1px solid var(--line); max-width: 62rem; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  cursor: pointer; list-style: none;
  padding: 1.25rem 2.5rem 1.25rem 0;
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  color: var(--text);
  transition: color .3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ''; position: absolute; right: 0.4rem; top: 50%;
  width: 10px; height: 10px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .35s var(--ease-out);
}
.faq__item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq__item summary:hover { color: var(--gold); }
.faq__a { padding: 0 2.5rem 1.5rem 0; }
.faq__a p { color: var(--text-dim); line-height: 1.78; margin: 0; max-width: var(--measure); }

/* ---------- 分类目录 ---------- */
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.4rem;
}
.prod {
  display: flex; flex-direction: column;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 3px; overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .5s;
}
.prod:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--line-warm); }
.prod__media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-2); }
.prod__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .9s var(--ease-out);
}
.prod:hover .prod__media img { transform: scale(1.05); }
.prod__ph { display: block; width: 100%; height: 100%; background: var(--bg-2); }
.prod__body { display: flex; flex-direction: column; flex: 1; padding: 1.4rem 1.35rem 1.5rem; }
.prod__title {
  font-family: var(--font-display);
  font-size: 1.08rem; line-height: 1.3; color: var(--text);
}
.prod__desc {
  margin-top: 0.6rem; font-size: 0.88rem; line-height: 1.62;
  color: var(--text-dim); flex: 1;
}
.prod__more {
  display: inline-flex; align-items: center; gap: 0.45rem;
  margin-top: 1.1rem;
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
}
.prod__more svg { width: 13px; height: 13px; transition: transform .4s var(--ease-out); }
.prod:hover .prod__more svg { transform: translateX(4px); }

/* ---------- 收口 CTA ---------- */
.cta-band {
  background: var(--navy);
  color: #fff;
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
  margin-top: clamp(3rem, 6vw, 6rem);
}
.cta-band__inner { max-width: 54rem; }
.cta-band h2 { color: #fff; margin-block: 1rem 1rem; }
.cta-band .lead { color: rgba(255,255,255,.72); margin-bottom: 2.2rem; }
.cta-band .eyebrow { color: var(--gold-bright); }
.cta-band .btn--primary { box-shadow: none; }
.cta-band .btn--primary::before { background: #fff; }
.cta-band .btn--primary:hover { color: var(--navy); }

/* ---------- 进场动画 ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
  transition-delay: var(--d, 0ms);
}
[data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .prod, .gallery__item img, .card { transition: none; }
}

/* ---------- 关于 ---------- */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.9fr);
  gap: clamp(2.2rem, 5vw, 5rem);
  align-items: start;
}
/* 块间距收紧，改用细线分节：靠分隔线建立结构，不靠大片留白 */
.about__body > .prose + .prose {
  margin-top: clamp(1.6rem, 2.6vw, 2.4rem);
  padding-top: clamp(1.6rem, 2.6vw, 2.4rem);
  border-top: 1px solid var(--line-soft);
}
/* 侧栏只剩事实面板了 —— 图片挪到下面的横向图带，
   竖排在窄栏里挤成一条，横着铺才有厂区的体量感 */
.about__aside { position: sticky; top: 96px; }
.about__facts {
  margin: 0; padding: 1.5rem 1.6rem;
  background: var(--bg-1); border-top: 2px solid var(--gold); border-radius: 3px;
}
/* 每个「标签+数值」是一个单元，避免被网格拆开 */
.about__fact + .about__fact {
  margin-top: 0.9rem; padding-top: 0.9rem;
  border-top: 1px solid var(--line-soft);
}
.about__facts dt {
  font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-mute);
}
.about__facts dd {
  margin: 0.3rem 0 0; font-size: 0.95rem; line-height: 1.5; color: var(--text);
}

/* ---------- 横向图带 ---------- */
.about-strip { padding-block-start: 0; }
.about-strip__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.6vw, 1.4rem);
}
.about-strip__i {
  margin: 0; border-radius: 3px; overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--bg-2);
  box-shadow: var(--shadow-md);
}
.about-strip__i img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .9s var(--ease-out);
}
.about-strip__i:hover img { transform: scale(1.04); }

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__aside { position: static; }
  .about-strip__row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-strip__i:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
}
@media (max-width: 560px) {
  .about-strip__row { grid-template-columns: 1fr; }
  .about-strip__i:first-child { aspect-ratio: 4 / 3; }
}

/* ---------- 联系 ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: start;
}
.contact__info h2 { margin-bottom: 1.6rem; }
.contact__list { list-style: none; margin: 0 0 2.2rem; padding: 0; border-top: 1px solid var(--line); }
.contact__list li { padding: 1.05rem 0; border-bottom: 1px solid var(--line-soft); }
.contact__k {
  display: block; font-size: 0.64rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-mute); margin-bottom: 0.35rem;
}
.contact__v { font-size: 1.02rem; color: var(--text); transition: color .3s; }
a.contact__v:hover { color: var(--gold); }
.contact__note {
  background: var(--bg-1); border-left: 2px solid var(--gold);
  padding: 1.3rem 1.4rem; border-radius: 0 3px 3px 0;
}
.contact__note p:last-child { margin: 0.7rem 0 0; color: var(--text-dim); font-size: 0.93rem; line-height: 1.7; }

.contact__form {
  background: var(--bg-3); border: 1px solid var(--line);
  border-radius: 3px; padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
}
.f__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.1rem; }
.f__row { display: block; margin-bottom: 1.1rem; }
.f__grid .f__row { margin-bottom: 0; }
.f__label {
  display: block; font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-mute); margin-bottom: 0.45rem;
}
.f__label b { color: var(--gold); font-weight: 400; }
.f__input {
  width: 100%; padding: 0.75rem 0.9rem;
  font: inherit; font-size: 0.95rem; color: var(--text);
  background: var(--bg-0); border: 1px solid var(--line);
  border-radius: 2px; transition: border-color .3s, background .3s;
}
.f__input:focus {
  outline: none; border-color: var(--gold);
  background: #fff; box-shadow: 0 0 0 3px rgba(185,112,39,.1);
}
.f__area { resize: vertical; min-height: 118px; }
.contact__form .btn { margin-top: 1.4rem; }
.f__hint { margin: 0.9rem 0 0; font-size: 0.8rem; color: var(--text-mute); }

@media (max-width: 900px) { .contact__grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .f__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   特性列表
   替代原来的方块卡片网格：那种 4 列格子在条目数不是 4 的倍数时
   会在右侧留一大片灰色空洞，而且边框把每条割裂开，扫读很累。
   这里改成两栏细线列表，靠编号 / 字重 / 分隔线建立层级。
   ========================================================================== */
.featlist {
  list-style: none;
  margin: clamp(1.4rem, 2.5vw, 2.2rem) 0 0;
  padding: 0;
  columns: 2;
  column-gap: clamp(2.5rem, 5vw, 5rem);
}
.featlist__i {
  break-inside: avoid;          /* 条目不被分栏切断 */
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0 0.6rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line-soft);
}
.featlist__i:first-child { border-top: 0; padding-top: 0; }

.featlist__n {
  font-family: var(--font-display);
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--gold);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}
.featlist__t { min-width: 0; }
.featlist__t b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.06rem;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 0.28rem;
}
.featlist__t span {
  display: block;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-dim);
}
/* 只有正文没有小标题时，正文本身就是主信息，字号提一档 */
.featlist__t b + span { font-size: 0.92rem; }
.featlist__t > span:only-child { font-size: 1rem; color: var(--text); }

@media (max-width: 780px) {
  .featlist { columns: 1; }
}

/* ==========================================================================
   产品页收口 + 询价弹窗
   ========================================================================== */
.contact-band {
  background: var(--navy);
  color: #fff;
  margin-top: clamp(2.5rem, 5vw, 5rem);
  padding-block: clamp(2.4rem, 4.5vw, 4rem) !important;
}
.contact-band__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.contact-band .eyebrow { color: var(--gold-bright); margin: 0 0 0.6rem; }
.contact-band h2 {
  color: #fff !important;
  font-size: clamp(1.4rem, 2.2vw, 2.05rem) !important;
  line-height: 1.22 !important;
  margin: 0 !important;
  max-width: 24ch;
}

.modal[hidden] { display: none; }
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: 1.2rem;
}
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 16, 34, 0.55);
  backdrop-filter: blur(4px);
  animation: modalFade .3s var(--ease-out);
}
.modal__panel {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100dvh - 2.4rem);
  overflow-y: auto;
  background: var(--bg-0);
  border-radius: 5px;
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  box-shadow: 0 30px 80px rgba(20, 32, 63, .28);
  animation: modalIn .42s var(--ease-out);
}
@keyframes modalFade { from { opacity: 0 } }
@keyframes modalIn { from { opacity: 0; transform: translateY(14px) scale(.985) } }

.modal__x {
  position: absolute; top: 0.7rem; right: 0.9rem;
  width: 36px; height: 36px;
  border: 0; background: none; cursor: pointer;
  font-size: 1.6rem; line-height: 1; color: var(--text-mute);
  border-radius: 3px; transition: color .25s, background .25s;
}
.modal__x:hover { color: var(--navy); background: var(--bg-2); }
.modal__panel h2 { margin: 0.5rem 0 0.6rem !important; }
.modal__lead { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 1.4rem; }

.modal__form { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.modal__form label {
  display: grid; gap: 0.35rem;
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-mute);
}
.modal__wide, .modal__form .btn { grid-column: 1 / -1; }
.modal__form input, .modal__form textarea {
  font: inherit; font-size: 0.95rem; letter-spacing: normal; text-transform: none;
  color: var(--text);
  padding: 0.66rem 0.8rem;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 3px;
  transition: border-color .25s, box-shadow .25s;
}
.modal__form input:focus, .modal__form textarea:focus {
  outline: 0; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(185, 112, 39, .13);
}
.modal__form .btn { justify-content: center; margin-top: 0.3rem; }
.modal__alt {
  margin: 1.2rem 0 0; font-size: 0.85rem; color: var(--text-mute);
}
.modal__alt a { color: var(--gold); border-bottom: 1px solid transparent; }
.modal__alt a:hover { border-bottom-color: currentColor; }

@media (max-width: 520px) {
  .modal__form { grid-template-columns: 1fr; }
}

/* ==========================================================================
   产品页栏目结构
   改前是 6 个区块平铺，其中两节没有任何标识。
   现在统一成「左侧固定标签栏 + 右侧内容」，标签在滚动时吸顶，
   读者随时知道自己在看哪一节。
   ========================================================================== */

/* 栏目导航：粘在主导航下方 */
.chapnav {
  position: sticky; top: 72px; z-index: 40;
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--line-soft);
}
.chapnav__inner {
  display: flex; gap: clamp(1.2rem, 2.5vw, 2.4rem);
  overflow-x: auto; scrollbar-width: none;
  padding-block: 0.9rem;
}
.chapnav__inner::-webkit-scrollbar { display: none; }
.chapnav__a {
  position: relative; white-space: nowrap;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-mute);
  padding-block: 0.25rem;
  transition: color .3s var(--ease-out);
}
.chapnav__a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease-out);
}
.chapnav__a:hover, .chapnav__a.is-active { color: var(--navy); }
.chapnav__a:hover::after, .chapnav__a.is-active::after {
  transform: scaleX(1); transform-origin: left;
}

.chapter {
  padding-block: clamp(2.8rem, 5.5vw, 5.5rem);
  border-top: 1px solid var(--line-soft);
  scroll-margin-top: 130px;      /* 锚点跳转时给两条导航让位 */
}
.chapter:first-of-type { border-top: 0; }

.chapter__grid {
  display: grid;
  grid-template-columns: minmax(0, 15rem) minmax(0, 1fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: start;
}
.chapter__label { position: sticky; top: 132px; }
.chapter__label .eyebrow { margin: 0; }
.chapter__label h2 { margin-top: 0.7rem; }
.chapter__body { min-width: 0; }
.chapter__body > p { max-width: var(--measure); }

/* 参数表那一节内容更宽，标签栏收窄 */
.chapter--wide .chapter__grid { grid-template-columns: minmax(0, 11rem) minmax(0, 1fr); }

/* 概述：正文 + 关键信息 */
.lede p { font-size: clamp(1rem, 1.05vw, 1.12rem); line-height: 1.75; max-width: var(--measure); }
.keyfacts {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.2rem 1.8rem; margin: 2rem 0 0;
  padding-top: 1.4rem; border-top: 1px solid var(--line);
}
.keyfacts > div { min-width: 0; }
.keyfacts dt {
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-mute);
}
.keyfacts dd {
  margin: 0.3rem 0 0;
  font-family: var(--font-display); font-size: 1.02rem; line-height: 1.35;
  color: var(--text);
}

@media (max-width: 860px) {
  .chapnav { top: 64px; }
  .chapter__grid, .chapter--wide .chapter__grid { grid-template-columns: 1fr; }
  .chapter__label { position: static; }
  .chapter { scroll-margin-top: 118px; }
}

/* ==========================================================================
   连贯化 —— 打破「一块一块」
   原站是 Elementor 模板拼的，内容天然按区块组织；我的生成器又沿用了这个结构，
   每个 section 各自带内边距、背景色和分隔线，等于在画格子。
   这里从四个方向缝合：
     ① 去掉所有横向分隔线，改用一条纵向主脉贯穿全页
     ② 背景不再逐节切换，整页一条连续渐变
     ③ 刊头图向右出血并向下压过节界，用重叠消除边界
     ④ 每节的标签挂在主脉上，读起来是「一条线上的站点」而不是并列的盒子
   ========================================================================== */

/* ---------- ① 拆掉横向分隔线 ---------- */
.page-head { border-bottom: 0 !important; }
.chapter { border-top: 0 !important; }
.about__body > .prose + .prose { border-top: 0; }

/* ---------- ② 整页连续背景 ----------
   逐节换底色最能强化块感。改成 body 上一条从上到下缓慢过渡的渐变，
   各节自身透明，视觉上就是一张连续的纸。 */
body {
  background:
    linear-gradient(180deg,
      var(--bg-0) 0%,
      #f8f6f1 34%,
      var(--bg-1) 68%,
      #f2efe8 100%) no-repeat;
  background-attachment: fixed;
}
.section, .chapter, .page-head, .catalog, .about, .about-strip, .faq, .gallery {
  background: transparent !important;
}
/* 这里原本想「让需要色块的组件保留自己的底」，写成了 background: initial —— 
   但 initial 是重置为透明，等于把 .contact-band 的深蓝底抹掉了，
   白色标题直接落在浅色背景上，看不见。
   而且这些组件本来就不在上面那条 transparent 规则的作用域里，
   这条豁免既错误又多余，删掉即可。 */

/* ---------- ③ 主脉 ---------- */
.flow { position: relative; }
.spine {
  position: absolute;
  left: calc(var(--gutter) / 2);
  top: 0; bottom: 0;
  width: 1px;
  background: var(--line-soft);
  pointer-events: none;
  z-index: 1;
}
/* 用 scaleY 而不是百分比高度：
   .spine 的高度是 top:0/bottom:0 撑出来的（height:auto），
   浏览器不把这种高度当确定值，子元素的百分比高度会解析成 0。
   绝对定位 inset:0 拿到父级实际高度，再靠 transform 做进度。 */
.spine__fill {
  position: absolute; inset: 0;
  transform: scaleY(var(--spine, 0));
  transform-origin: top;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  opacity: .55;
  /* 不要 transition：值每帧都在变，过渡会不断重启，
     CSSTransition 永远走不完，transform 被钉死在起点 scaleY(0)。 */
  will-change: transform;
}

/* 窄屏没有足够的边距容纳主脉 */
@media (max-width: 900px) { .spine { display: none; } }

/* ---------- ④ 节点挂在主脉上 ----------
   eyebrow 左侧那截短线延长出去，正好触到主脉，
   于是每节看起来是从同一条线上生长出来的分支。 */
@media (min-width: 901px) {
  .chapter__label .eyebrow::before,
  .page-head .eyebrow::before,
  .section > .wrap > .eyebrow::before {
    width: 40px;
  }
  .chapter { position: relative; }
  .chapter::before {
    content: '';
    position: absolute;
    left: calc(var(--gutter) / 2);
    top: clamp(2.8rem, 5.5vw, 5.5rem);
    width: 7px; height: 7px;
    margin-left: -3px;
    border-radius: 50%;
    background: var(--bg-0);
    border: 1px solid var(--gold);
    z-index: 2;
  }
}

/* ---------- ③ 刊头图出血 + 重叠 ----------
   图向右铺到视口边缘，并向下压过刊头与正文的交界。
   重叠是消解块界最有效的手段：两节在空间上咬合，就不再是上下堆叠。 */
@media (min-width: 901px) {
  .page-head--split .page-head__inner { align-items: start; }
  .page-head__aside { position: relative; }
  .head-fig--bleed {
    /* 出血量必须按「页宽」算。var(--gutter) 是 5.5%，在图片这一栏里
       会被解析成该栏宽度的 5.5%，只有实际需要的一半多，出不到视口边。
       改用 vw：.wrap 是满宽容器，5.5vw 就等于它的左右内边距。 */
    margin-right: -5.5vw;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 24px 60px rgba(20, 32, 63, .13);
    /* 向下压过节界。刊头自身还有下内边距会抵消一部分，
       所以下面把那份内边距去掉，让负边距全额生效。 */
    margin-bottom: clamp(-5.5rem, -6vw, -3.5rem);
  }
  .page-head--split { padding-block-end: 0 !important; }

  /* 刊头内部还有指标条时不能出血 —— 负边距会让图直接盖住指标文字
     （实测 About 页 8 个指标 100% 被覆盖）。这类刊头图到底为止。 */
  .page-head--stripped .head-fig--bleed { margin-bottom: 0; }
  .page-head--stripped { padding-block-end: clamp(2.2rem, 4vw, 3.4rem) !important; }

  /* 被压住的下一节留出咬合空间，避免文字被图盖住。
     只在刊头真有出血图时才留 —— 产品页没有刊头图，
     这份预留就成了纯空白（实测白空 115px）。 */
  .page-head--split:not(.page-head--stripped) + .section,
  .page-head--split:not(.page-head--stripped) + .chapnav + .chapter,
  .page-head--split:not(.page-head--stripped) + .chapter {
    padding-block-start: clamp(5rem, 8vw, 8rem);
  }
}

/* ---------- 节与节之间的呼吸 ----------
   分隔线拿掉后，靠节奏而不是线条区分层次 */
.chapter { padding-block: clamp(3.2rem, 6vw, 6rem); }
.section { padding-block: clamp(3.2rem, 6vw, 6.5rem); }

/* ==========================================================================
   主脉柔化
   原来是一条从头贯到底的实线，边缘硬、颜色实，像页面被划了一刀。
   改成：两端淡出、更细、更低对比，只在滚动经过时才亮起来。
   ========================================================================== */
.spine {
  width: 2px;
  background: none;
  /* 两端渐隐，线不再有明确的起点和终点 */
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}
.spine::before {
  content: ''; position: absolute; inset: 0;
  background: var(--line-soft);
}
.spine__fill {
  opacity: .38;                       /* 原来 .55，太抢眼 */
  background: linear-gradient(180deg,
    rgba(216,138,56,0) 0%,
    var(--gold-bright) 8%,
    var(--gold-bright) 92%,
    rgba(185,112,39,0) 100%);
  filter: blur(.2px);
}
/* 章节节点跟着变淡，不再是描边圆点 */
@media (min-width: 901px) {
  .chapter::before {
    width: 5px; height: 5px; margin-left: -1.5px;
    background: var(--gold-bright);
    border: 0; opacity: .45;
  }
}

/* ==========================================================================
   参数表
   原来是通栏斑马纹，行高小、表头轻，数据密的时候很难扫读。
   ========================================================================== */
.spec__wrap {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.spec__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.spec table {
  width: 100%;
  border-collapse: collapse;
  font-size: .93rem;
  min-width: 34rem;
}
.spec thead th {
  position: sticky; top: 0; z-index: 1;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-body);
  font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  text-align: left;
  padding: .95rem 1.15rem;
  white-space: nowrap;
}
.spec thead th:not(:first-child) { text-align: right; }

.spec tbody td {
  padding: .85rem 1.15rem;
  border-top: 1px solid var(--line-soft);
  color: var(--text-dim);
  vertical-align: top;
}
.spec tbody td:not(:first-child) {
  text-align: right;
  font-variant-numeric: tabular-nums;   /* 数字等宽，纵向对齐 */
  color: var(--text);
}
/* 首列是参数名，锁在左侧，横向滚动时不跟着跑 */
.spec tbody td:first-child {
  color: var(--text); font-weight: 500;
  white-space: nowrap;
}
.spec tbody tr:nth-child(even) { background: rgba(20,32,63,.022); }
.spec tbody tr:hover { background: rgba(185,112,39,.07); }
.spec tbody tr:hover td { color: var(--text); }

.spec__note {
  margin: 0; padding: .85rem 1.15rem;
  border-top: 1px solid var(--line-soft);
  background: var(--bg-1);
  font-size: .8rem; color: var(--text-mute);
}
.spec h2 { margin-block: .9rem 1.6rem; }

/* ==========================================================================
   产品图库
   ========================================================================== */
.pgal__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.7rem, 1.3vw, 1.1rem);
}
.pgal__i {
  margin: 0; border-radius: 5px; overflow: hidden;
  background: var(--bg-2);
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-sm);
}
/* 首图占两格宽两格高，其余在右侧排开 —— 避免四张一样大的呆板网格 */
.pgal__i--lead { grid-column: span 2; grid-row: span 2; aspect-ratio: 1 / 1; }
.pgal__i img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .9s var(--ease-out);
}
.pgal__i:hover img { transform: scale(1.04); }

@media (max-width: 760px) {
  .pgal__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pgal__i--lead { grid-column: span 2; grid-row: auto; aspect-ratio: 4 / 3; }
}

/* ==========================================================================
   Overview + Application 合并区
   一个四象限网格：正文 / 关键指标 / 特性 / 应用场景
   ========================================================================== */
.ov__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, .85fr);
  gap: clamp(1.8rem, 3.5vw, 3.4rem) clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.ov__lead { grid-column: 1; }
.ov__lead h2 { margin-block: .9rem 1.1rem; }
.ov__lead p { color: var(--text-dim); max-width: 60ch; }

.ov__figures {
  grid-column: 2; grid-row: 1 / span 2;
  position: sticky; top: 96px;
  padding: 1.5rem 1.6rem;
  background: var(--bg-1);
  border-top: 2px solid var(--gold);
  border-radius: 4px;
}
.ov__figures dl { margin: 0; }
.ov__fig + .ov__fig {
  margin-top: .95rem; padding-top: .95rem;
  border-top: 1px solid var(--line-soft);
}
.ov__fig dt {
  font-size: .62rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-mute);
}
.ov__fig dd {
  margin: .3rem 0 0;
  font-family: var(--font-display);
  font-size: 1.08rem; line-height: 1.3; color: var(--text);
  font-variant-numeric: tabular-nums;
}
.ov__jump {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.4rem;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold);
}
.ov__jump svg { width: 13px; height: 13px; transition: transform .35s var(--ease-out); }
.ov__jump:hover svg { transform: translateX(4px); }

.ov__feats, .ov__apps { grid-column: 1; }
.ov__feats h3, .ov__apps h3 {
  font-size: .72rem; font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem;
}
.ov__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .95rem; }
.ov__list li {
  padding-left: 1.1rem; position: relative;
  color: var(--text-dim); font-size: .93rem; line-height: 1.66;
}
.ov__list li::before {
  content: ''; position: absolute; left: 0; top: .62em;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); opacity: .7;
}
.ov__list b { display: block; color: var(--text); font-weight: 600; margin-bottom: .18rem; }
/* 应用场景条目短，两栏排 */
.ov__list--apps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .95rem 2rem; }

@media (max-width: 900px) {
  .ov__grid { grid-template-columns: 1fr; }
  .ov__lead, .ov__feats, .ov__apps { grid-column: 1; }
  .ov__figures { grid-column: 1; grid-row: auto; position: static; }
  .ov__list--apps { grid-template-columns: 1fr; }
}

/* ==========================================================================
   关于页 —— 重构
   原来是「正文栏 + 侧栏」两栏，正文栏窄、侧栏空，右侧大片留白。
   改成正文自己分块成多栏流，事实面板挪到刊头下的通栏横条。
   ========================================================================== */
.abt__grid {
  display: grid;
  /* 固定两列，不用 auto-fit。
     auto-fit 在 2000px 宽下会算出 3 条轨道，而首个区块设了 grid-column:1/-1
     跨满全部轨道 —— 于是没有一条是「空轨道」，auto-fit 不折叠，
     正文只有两块，右边就空出一整列（实测 1260–1876 是死区）。 */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.6rem) clamp(2.4rem, 5vw, 5rem);
  align-items: start;
  /* 超宽屏收住并居中，否则单行会长到读不动 */
  max-width: 100rem;
  margin-inline: auto;
}
@media (max-width: 860px) {
  .abt__grid { grid-template-columns: 1fr; }
}
.abt__blk h2 {
  font-size: clamp(1.3rem, 1.9vw, 1.75rem);
  margin-bottom: .9rem;
}
.abt__blk p { color: var(--text-dim); margin-bottom: .9rem; }
.abt__blk p:last-child { margin-bottom: 0; }
/* 第一块（KITANOCRANE Corporate）横铺整行。
   跨列只是第一步 —— 段落上原来还有 max-width:62ch，文字仍旧挤在左侧。
   去掉宽度上限，两段分列并排：既铺满整行，单行又不会长到读不动。 */
.abt__blk:first-child {
  grid-column: 1 / -1;
  display: grid;
  /* 同样固定两列：这里只有两段正文，auto-fit 在宽屏上会多算一条轨道 */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .4rem clamp(2.4rem, 5vw, 5rem);
  align-items: start;
}
@media (max-width: 860px) {
  .abt__blk:first-child { grid-template-columns: 1fr; }
}
.abt__blk:first-child > h2 { grid-column: 1 / -1; }
.abt__blk:first-child p {
  font-size: clamp(1rem, 1.1vw, 1.14rem);
  line-height: 1.72; color: var(--text-dim); margin-bottom: 0;
}
.abt__list { list-style: none; margin: .6rem 0 0; padding: 0; display: grid; gap: .7rem; }
.abt__list li {
  padding-left: 1.05rem; position: relative;
  color: var(--text-dim); font-size: .93rem;
}
.abt__list li::before {
  content: ''; position: absolute; left: 0; top: .62em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: .7;
}

/* ==========================================================================
   关于页图片 —— 按构图分配容器
   之前不分构图一律塞进 4:3：红色门吊那张主梁横贯画面、32/10t 那张是 2:1
   超宽幅，被方框一裁跨度全没了。现在竖图进刊头、超宽幅做通栏影带、
   其余按各自比例排。
   ========================================================================== */

/* 竖构图：刊头右栏本来就比左栏文字高，正好用竖图填满，不留白也不裁切 */
.head-fig--tall { aspect-ratio: 4 / 5; }

/* 超宽幅影带。原来是通栏满宽，压迫感太强；收窄到内容区的 76%
   并靠左，和上方 logo 对齐成一组。 */
.abt-band {
  margin: 0;
  position: relative;
  /* 放大并居中：比原来宽 ~130px，但仍明显窄于内容区，不通栏 */
  width: min(92%, 70rem);
  margin-inline: auto;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}
.abt-band img {
  width: 100%; height: auto; display: block;
  /* 极宽的图在窄屏上会变得很扁，给一个最小高度兜底 */
  min-height: 220px; object-fit: cover;
}
.abt-band figcaption {
  position: absolute; left: 1.1rem; bottom: 1.1rem;
  padding: .5rem .9rem;
  background: rgba(20, 32, 63, .72);
  backdrop-filter: blur(8px);
  color: #fff; font-size: .74rem;
  letter-spacing: .06em; border-radius: 3px;
}

/* 图带：每张按自己的比例，不再强制统一 4:3 */
.about-strip__row {
  display: flex; flex-wrap: wrap;
  gap: clamp(.8rem, 1.6vw, 1.4rem);
  align-items: flex-start;
}
.about-strip__i {
  margin: 0; border-radius: 4px; overflow: hidden;
  background: var(--bg-2); box-shadow: var(--shadow-md);
  aspect-ratio: var(--ar, 1.4);
  /* 按宽高比分配横向占比：宽图占得多，竖图占得少 —— 高度自然对齐 */
  flex: var(--ar, 1.4) 1 clamp(12rem, calc(var(--ar, 1.4) * 13rem), 32rem);
}
.about-strip__i img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 760px) {
  .about-strip__i { flex: 1 1 100%; }
  .abt-band figcaption { left: 1rem; bottom: .8rem; font-size: .68rem; }
}

/* ==========================================================================
   跨节视差的容器约束
   图片被放大后靠 transform 上下移动，容器必须裁掉溢出，
   否则会盖到相邻内容上。
   ========================================================================== */
.abt-band, .head-fig, .about-strip__i,
.pgal__i, .gallery__i, .head-collage__i {
  overflow: hidden;
}
/* 参与视差的图交给合成器，避免每帧重排 */
.abt-band img, .head-fig img, .about-strip__i img,
.pgal__i--lead img, .gallery__i img, .head-collage__i img {
  backface-visibility: hidden;
}
/* 影带原本是 height:auto 跟随原始比例；视差需要固定高度才能裁切 */
.abt-band { aspect-ratio: 2.05; }
.abt-band img { height: 100%; object-fit: cover; min-height: 0; }

@media (prefers-reduced-motion: reduce) {
  .abt-band img, .head-fig img, .about-strip__i img,
  .pgal__i--lead img, .gallery__i img, .head-collage__i img {
    transform: none !important;
  }
}

/* ==========================================================================
   分类页：按功能分组
   ========================================================================== */
.catalog + .catalog { padding-block-start: 0; }
.catalog__head {
  display: flex; align-items: baseline; flex-wrap: wrap;
  gap: .6rem 1.2rem;
  margin-bottom: clamp(1.4rem, 2.4vw, 2.2rem);
  padding-bottom: .9rem;
  border-bottom: 1px solid var(--line-soft);
}
.catalog__head h2 { font-size: clamp(1.35rem, 2vw, 1.85rem); }
.catalog__head p {
  margin: 0; flex: 1 1 20rem;
  color: var(--text-mute); font-size: .9rem;
}
.catalog__count {
  font-size: .64rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); white-space: nowrap;
}

/* 产品名加粗，和摘要拉开层级 —— 原来两者字重相同，扫读时糊成一片 */
.prod__t {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem; font-weight: 600;
  line-height: 1.3; color: var(--text);
  margin-bottom: .45rem;
}
.prod__d { display: block; color: var(--text-mute); font-size: .88rem; line-height: 1.6; }

/* ==========================================================================
   页头右侧的品牌标记
   这块位置原本空着。放整图会把右栏撑高几百像素、左侧留出空洞；
   放 logo 则比文字栏矮，不拉高行高，正好把空白填成有意义的内容。
   ========================================================================== */
.head-mark {
  display: flex; flex-direction: column;
  /* 居中而不是靠右：把整块往左带，落在文字栏与页面右缘之间 */
  align-items: center; justify-content: center;
  gap: .8rem;
  height: 100%;
  padding-right: clamp(1rem, 4vw, 4.5rem);
  /* 略微下移：和左侧标题的视觉重心对齐，不再顶在栏的正中 */
  padding-top: clamp(1rem, 2.6vw, 2.6rem);
}
.head-mark svg { width: clamp(84px, 7.5vw, 116px); height: auto; }
.head-mark__name {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  letter-spacing: .02em; color: var(--navy);
  white-space: nowrap; line-height: 1;
}
.head-mark__name b { color: var(--gold-bright); font-weight: 400; }
.head-mark__tag {
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 900px) {
  /* 窄屏改横排，跟在文字下面，不再占一整行 */
  .head-mark {
    flex-direction: row; align-items: center; justify-content: flex-start;
    gap: .8rem; height: auto; padding-right: 0;
    margin-top: .5rem;
  }
  .head-mark svg { width: 44px; }
  .head-mark__tag {
    padding-left: .8rem; border-left: 1px solid var(--line);
  }
}

/* 影带比例：不再通栏，2.6 让它保持横向感但不压迫 */
.abt-band { aspect-ratio: 2.6; }

@media (max-width: 860px) {
  .abt-band { aspect-ratio: 2.05; }
}

/* ==========================================================================
   关于页正文的结构化排版
   原文把型号清单、工序、资质都压成了普通段落，读起来是一堵墙。
   按形态分别给形式：定义表 / 标签 / 徽章 / 引语。
   ========================================================================== */

/* 分类 + 型号清单 */
.deflist { margin: 1.2rem 0 0; display: grid; gap: 0; }
.deflist__row {
  display: grid;
  grid-template-columns: minmax(9rem, 15rem) 1fr;
  gap: .5rem 1.6rem;
  padding: .95rem 0;
  border-top: 1px solid var(--line-soft);
}
.deflist__row:last-child { border-bottom: 1px solid var(--line-soft); }
.deflist dt {
  font-family: var(--font-display);
  font-size: .95rem; color: var(--text); line-height: 1.4;
}
.deflist dd { margin: 0; display: flex; flex-wrap: wrap; gap: .4rem; }

/* 标签 */
.chip {
  display: inline-block;
  padding: .3rem .7rem;
  background: var(--bg-2);
  border-radius: 2px;
  font-size: .8rem; line-height: 1.35;
  color: var(--text-dim);
  transition: background .3s, color .3s;
}
.deflist dd .chip:hover, .chips .chip:hover { background: rgba(185,112,39,.12); color: var(--text); }

.chips {
  list-style: none; margin: 1rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .45rem;
}

/* 资质徽章 */
.certs {
  list-style: none; margin: .9rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .5rem;
}
.certs li {
  padding: .42rem .9rem;
  border: 1px solid var(--line-warm);
  border-radius: 2px;
  font-family: var(--font-display);
  font-size: .82rem; letter-spacing: .04em;
  color: var(--gold);
}

/* 企业箴言 */
.creed__q--inline {
  margin: 1.4rem 0 0;
  padding: 1.1rem 0 1.1rem 1.4rem;
  border-left: 2px solid var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  line-height: 1.4; color: var(--navy);
}
.creed__q--inline::before { content: '“'; color: var(--gold); }
.creed__q--inline::after  { content: '”'; color: var(--gold); }

@media (max-width: 700px) {
  .deflist__row { grid-template-columns: 1fr; gap: .5rem; }
  .deflist dt { color: var(--gold); font-size: .88rem; }
}

/* ==========================================================================
   企业箴言 —— 独立的陈述段
   原来它只是抽取器发现的第 4 个文本块，被当普通段落塞进两栏网格，
   靠左占半栏。这是照搬 Elementor 区块顺序的后果，不是版面需要。
   现在通栏居中，作为正文与图带之间的一个停顿。
   ========================================================================== */
.creed {
  padding-block: clamp(3.6rem, 7vw, 7rem);
  position: relative;
}
.creed::before {
  content: '';
  position: absolute; left: 50%; top: 0;
  width: 42px; height: 2px; margin-left: -21px;
  background: var(--gold);
}
.creed__inner {
  max-width: 56rem;
  margin-inline: auto;
  text-align: center;
}
.creed__q {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.32;
  color: var(--navy);
  margin: 0 0 1.4rem;
  text-wrap: balance;
}
.creed__q::before { content: '“'; color: var(--gold); }
.creed__q::after  { content: '”'; color: var(--gold); }
.creed__body {
  font-size: clamp(.98rem, 1.05vw, 1.1rem);
  line-height: 1.75;
  color: var(--text-dim);
  max-width: 62ch;
  margin-inline: auto;
  margin-bottom: 0;
}

/* 箴言拎走后，正文网格里就没有引语块了，
   之前给网格内引语准备的样式不再需要 */
.abt__blk .creed__q--inline { display: none; }

/* ==========================================================================
   语义组件 —— 全站共用
   同一种内容在任何页面都长一个样：能力条目就是能力条目，
   应用场景就是应用场景，不再因为它落在哪个模板而变形。
   ========================================================================== */

/* ---------- 能力条目 ---------- */
.feats__h, .apps__h {
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 1.1rem;
}
.feats__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.feat { display: grid; grid-template-columns: 2.4rem 1fr; gap: .3rem 0; align-items: start; }
.feat__n {
  font-family: var(--font-display);
  font-size: .82rem; color: var(--gold); opacity: .75;
  padding-top: .12rem;
}
.feat__t b { display: block; color: var(--text); font-weight: 600; margin-bottom: .22rem; }
.feat__t span { color: var(--text-dim); font-size: .93rem; line-height: 1.66; }

/* ---------- 应用场景：双栏 ---------- */
.apps__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(17rem, 100%), 1fr));
  gap: 1.1rem 2rem;
}
.app { padding-left: 1.05rem; position: relative; }
.app::before {
  content: ''; position: absolute; left: 0; top: .58em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: .7;
}
.app b { display: block; color: var(--text); font-weight: 600; margin-bottom: .2rem; }
.app span { color: var(--text-dim); font-size: .91rem; line-height: 1.62; }

/* ---------- 结语 ---------- */
.closing {
  margin-top: clamp(1.6rem, 3vw, 2.6rem);
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line);
}
.closing p {
  margin: 0; color: var(--text-mute);
  font-size: .95rem; line-height: 1.72; max-width: var(--measure);
}

/* ---------- 型号清单（原 .abt-def，现全站共用） ---------- */
.deflist { margin: 1.2rem 0 0; }

/* 文章页正文里的语义组件留出上间距 */
.prose .feats, .prose .apps, .prose .deflist, .prose .chips, .prose .certs {
  margin-top: 1.2rem;
}
.prose + .prose { margin-top: clamp(1.8rem, 3vw, 2.8rem); }
