/* ============================================================
   泓辰璟韵 · 新中式企业官网
   Palette: 宣纸 / 墨 / 朱砂 / 松黛 / 泥金
   ============================================================ */

:root {
  --paper: #f6f2e9;
  --paper-deep: #efe9db;
  --ink: #26241f;
  --ink-soft: #5d584c;
  --ink-faint: #8b8577;
  --cinnabar: #9e3b2c;
  --cinnabar-deep: #83301f;
  --pine: #41584c;
  --gold: #b08d57;
  --line: #ddd4c2;
  --white: #fffdf8;
  --serif: "Noto Serif SC", "Songti SC", "STSong", "SimSun", serif;
  --sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  /* 移动端增强 */
  --spring: cubic-bezier(0.32, 0.72, 0, 1);       /* iOS 弹簧 */
  --spring-soft: cubic-bezier(0.34, 1.56, 0.64, 1); /* 轻微回弹 */
  --sat: env(safe-area-inset-top, 0px);
  --sab: env(safe-area-inset-bottom, 0px);
  --sal: env(safe-area-inset-left, 0px);
  --sar: env(safe-area-inset-right, 0px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
  overscroll-behavior-y: none;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }

/* 触控按压反馈（移动端） */
.btn, .filter-chip, .fav-btn, .mini-btn, .nav-toggle { touch-action: manipulation; }
@media (hover: none) {
  .btn:active, .filter-chip:active, .fav-btn:active, .mini-btn:active { transform: scale(0.96); }
  .product-card:active { transform: scale(0.985); }
}

/* 焦点可见（无障碍） */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--cinnabar);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--cinnabar); color: var(--white); }

/* ---------- 通用布局 ---------- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.section { padding: 110px 0; }
.section--deep { background: var(--paper-deep); }
.section--ink { background: var(--ink); color: var(--paper); }

.section-head { margin-bottom: 64px; }
.section-head .cn-num {
  font-family: var(--serif);
  color: var(--cinnabar);
  font-size: 15px;
  letter-spacing: 0.5em;
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.3;
}
.section-head .sub {
  margin-top: 16px;
  color: var(--ink-soft);
  max-width: 56ch;
}
.section--ink .section-head .sub { color: #b8b2a4; }

.ink-divider {
  width: 56px; height: 2px;
  background: var(--cinnabar);
  margin-top: 24px;
}

/* 竖排装饰文字 */
.vertical-text {
  writing-mode: vertical-rl;
  font-family: var(--serif);
  letter-spacing: 0.45em;
  color: var(--ink-faint);
  font-size: 15px;
  user-select: none;
}

/* ---------- 印章 Logo ---------- */
.seal {
  width: 46px; height: 46px;
  background: var(--cinnabar);
  color: var(--white);
  display: grid;
  place-items: center;
  border-radius: 6px;
  flex: none;
  box-shadow: 0 2px 10px rgba(158, 59, 44, 0.28);
}
.seal span {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.15;
  writing-mode: vertical-rl;
  letter-spacing: 0.08em;
}
.seal--lg { width: 64px; height: 64px; }
.seal--lg span { font-size: 20px; }
.seal .brand-logo { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; display: none; }
/* 上传 Logo 后：图标形式（透明背景，去印章红底） */
.seal.has-logo { background: transparent; box-shadow: none; border-radius: 0; }
.seal.has-logo .brand-logo { object-fit: contain; border-radius: 0; }
.seal.has-logo .brand-logo { display: block; }

/* ---------- 顶部导航 ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 242, 233, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: transform 0.4s var(--ease-out);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-brand .brand-name {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.22em;
}
.nav-brand .brand-en {
  display: block;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink-faint);
  font-family: var(--sans);
  margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a.nav-item {
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}
.nav-links a.nav-item::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--cinnabar);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}
.nav-links a.nav-item:hover, .nav-links a.nav-item.active { color: var(--ink); }
.nav-links a.nav-item:hover::after, .nav-links a.nav-item.active::after { transform: scaleX(1); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 30px;
  font-size: 15px;
  letter-spacing: 0.14em;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  transition: all 0.3s var(--ease-out);
}
.btn:hover { background: var(--ink); color: var(--paper); }
.btn--primary { background: var(--cinnabar); border-color: var(--cinnabar); color: var(--white); }
.btn--primary:hover { background: var(--cinnabar-deep); border-color: var(--cinnabar-deep); }
.btn--light { border-color: rgba(246,242,233,0.5); color: var(--paper); }
.btn--light:hover { background: var(--paper); color: var(--ink); }
.btn--sm { padding: 9px 22px; font-size: 14px; }

/* 导航用户区 */
.nav-user { display: flex; align-items: center; gap: 14px; }
.nav-user .user-chip {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--ink-soft);
  max-width: 220px;
}
.nav-user .user-chip img {
  width: 34px; height: 34px; border-radius: 50%;
  object-fit: cover; border: 1px solid var(--line);
}
.nav-user .user-chip .avatar-fallback {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--pine); color: var(--white);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 15px;
}
.nav-user .user-mail {
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.link-quiet {
  font-size: 13px; color: var(--ink-faint);
  border-bottom: 1px solid var(--line);
  transition: color .25s;
  background: none; border-top: none; border-left: none; border-right: none;
  padding: 0 0 2px;
  letter-spacing: .1em;
}
.link-quiet:hover { color: var(--cinnabar); border-color: var(--cinnabar); }

.nav-toggle { display: none; background: none; border: none; width: 40px; height: 40px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px auto; transition: .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100dvh - 76px);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center right;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(246,242,233,0.97) 0%, rgba(246,242,233,0.88) 34%, rgba(246,242,233,0.35) 62%, rgba(246,242,233,0.08) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 56px;
  padding-top: 80px; padding-bottom: 80px;
}
.hero-text .eyebrow {
  font-size: 14px; letter-spacing: 0.5em;
  color: var(--cinnabar);
  margin-bottom: 26px;
  font-family: var(--serif);
}
.hero-text h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 6.2vw, 76px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.28;
}
.hero-text h1 em { font-style: normal; color: var(--cinnabar); }
.hero-text p.lead {
  margin-top: 28px;
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: 17px;
}
.hero-actions { margin-top: 44px; display: flex; gap: 18px; flex-wrap: wrap; }
.hero-side { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.hero-side .vertical-text { font-size: 17px; color: var(--ink-soft); }
/* 主视觉印章：上传图后替换文字印章（稍大 + 阴影） */
.seal--lg .hero-seal-img { width: 100%; height: 100%; object-fit: contain; border-radius: 0; display: none; }
.seal--lg.has-logo { width: 88px; height: 88px; box-shadow: 0 24px 48px -24px rgba(38, 36, 31, 0.35); }

.scroll-hint {
  position: absolute; bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 12px; letter-spacing: 0.4em;
  color: var(--ink-faint);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint::after {
  content: "";
  width: 1px; height: 44px;
  background: linear-gradient(var(--ink-faint), transparent);
  animation: hintDrop 2.2s var(--ease-out) infinite;
}
@keyframes hintDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- 品牌理念 ---------- */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.philosophy-item {
  background: var(--paper);
  padding: 52px 40px;
  transition: background 0.4s;
}
.philosophy-item:hover { background: var(--white); }
.philosophy-item .glyph {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--cinnabar);
  margin-bottom: 22px;
}
.philosophy-item h3 {
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.philosophy-item p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- 产品卡片 ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -20px rgba(38, 36, 31, 0.25);
}
.product-card .thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}
.product-card .thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.product-card:hover .thumb img { transform: scale(1.06); }
.product-card .cat-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(246, 242, 233, 0.92);
  color: var(--pine);
  font-size: 12px;
  letter-spacing: 0.2em;
  padding: 5px 12px;
}
.product-card .body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.product-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.product-card .summary {
  font-size: 14px; color: var(--ink-soft);
  flex: 1;
}
.product-card .foot {
  margin-top: 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.product-card .price {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--cinnabar);
}
.product-card .price small { font-size: 13px; color: var(--ink-faint); font-family: var(--sans); margin-left: 4px; }
.fav-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  display: grid; place-items: center;
  transition: all 0.3s;
  color: var(--ink-faint);
}
.fav-btn:hover { border-color: var(--cinnabar); color: var(--cinnabar); transform: scale(1.08); }
.fav-btn.faved { background: var(--cinnabar); border-color: var(--cinnabar); color: var(--white); }
.fav-btn svg { width: 18px; height: 18px; }

/* 分类筛选 */
.filter-bar {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-chip {
  padding: 9px 22px;
  font-size: 14px;
  letter-spacing: 0.12em;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  transition: all 0.3s;
}
.filter-chip:hover { border-color: var(--ink); color: var(--ink); }
.filter-chip.active {
  background: var(--ink); border-color: var(--ink); color: var(--paper);
}

/* 状态提示 */
.state-box {
  border: 1px dashed var(--line);
  padding: 60px 30px;
  text-align: center;
  color: var(--ink-faint);
  font-size: 15px;
  letter-spacing: 0.08em;
}
.state-box strong { display: block; font-family: var(--serif); font-size: 19px; color: var(--ink-soft); margin-bottom: 10px; letter-spacing: 0.15em; }

/* 骨架屏 */
.skeleton-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.skeleton-card { border: 1px solid var(--line); background: var(--white); }
.skeleton-card .sk-thumb { aspect-ratio: 1/1; }
.sk {
  background: linear-gradient(90deg, var(--paper-deep) 25%, #f8f4ea 50%, var(--paper-deep) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
.skeleton-card .sk-line { height: 16px; margin: 22px 26px 0; }
.skeleton-card .sk-line.short { width: 55%; margin-bottom: 26px; }
@keyframes shimmer { to { background-position: -200% 0; } }

/* ---------- 数据带 ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-item .num {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 56px);
  color: var(--gold);
  line-height: 1.1;
}
.stat-item .num sup { font-size: 0.45em; margin-left: 2px; }
.stat-item .label { margin-top: 12px; font-size: 14px; letter-spacing: 0.25em; color: #b8b2a4; }

/* ---------- 页头横幅（内页） ---------- */
.page-hero {
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}
.page-hero .cn-num { font-family: var(--serif); color: var(--cinnabar); letter-spacing: 0.5em; font-size: 15px; margin-bottom: 18px; }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: 0.12em;
  font-weight: 700;
}
.page-hero .crumb { margin-top: 22px; font-size: 13px; letter-spacing: 0.2em; color: var(--ink-faint); }
.page-hero .crumb a:hover { color: var(--cinnabar); }
.page-hero .vertical-text {
  position: absolute; right: 6%; top: 50%;
  transform: translateY(-50%);
  font-size: 19px;
  color: var(--ink-faint);
  opacity: 0.75;
}

/* ---------- 关于我们 ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-split .img-frame { position: relative; }
.about-split .img-frame img { width: 100%; }
.about-split .img-frame::before {
  content: "";
  position: absolute; inset: 22px -22px -22px 22px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.about-copy h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-bottom: 26px;
}
.about-copy p { color: var(--ink-soft); margin-bottom: 18px; }
.about-copy .sig {
  margin-top: 34px;
  display: flex; align-items: center; gap: 18px;
}

.timeline { position: relative; max-width: 760px; margin: 0 auto; }
.timeline::before {
  content: "";
  position: absolute; left: 110px; top: 0; bottom: 0;
  width: 1px; background: var(--line);
}
.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 42px;
  padding: 30px 0;
  position: relative;
}
.timeline-item::before {
  content: "";
  position: absolute; left: 106px; top: 42px;
  width: 9px; height: 9px;
  background: var(--cinnabar);
  transform: rotate(45deg);
}
.timeline-item .year {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--cinnabar);
  text-align: right;
  letter-spacing: 0.06em;
}
.timeline-item h3 { font-family: var(--serif); font-size: 19px; letter-spacing: 0.1em; margin-bottom: 8px; }
.timeline-item p { font-size: 14.5px; color: var(--ink-soft); }

.craft-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.craft-item { text-align: center; padding: 40px 22px; border: 1px solid var(--line); background: var(--white); transition: all .35s var(--ease-out); }
.craft-item:hover { transform: translateY(-6px); box-shadow: 0 18px 36px -18px rgba(38,36,31,.22); }
.craft-item .no { font-family: var(--serif); font-size: 15px; color: var(--gold); letter-spacing: .3em; }
.craft-item h3 { font-family: var(--serif); font-size: 20px; letter-spacing: .15em; margin: 16px 0 12px; }
.craft-item p { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- 产品服务页 ---------- */
.service-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(246,242,233,0.14);
  border: 1px solid rgba(246,242,233,0.14);
  margin-bottom: 80px;
}
.service-cell { background: var(--ink); padding: 44px 36px; }
.service-cell .glyph { font-family: var(--serif); font-size: 30px; color: var(--gold); margin-bottom: 18px; }
.service-cell h3 { font-family: var(--serif); font-size: 19px; letter-spacing: .12em; margin-bottom: 12px; color: var(--paper); }
.service-cell p { font-size: 14px; color: #b8b2a4; }

/* ---------- 联系我们 ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; }
.contact-info .info-block { padding: 26px 0; border-bottom: 1px solid var(--line); }
.contact-info .info-block:first-child { padding-top: 0; }
.contact-info .info-block h3 {
  font-family: var(--serif);
  font-size: 16px; letter-spacing: 0.3em;
  color: var(--cinnabar);
  margin-bottom: 10px;
}
.contact-info .info-block p { color: var(--ink-soft); font-size: 15.5px; }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 48px;
}
.form-card h2 { font-family: var(--serif); font-size: 24px; letter-spacing: .12em; margin-bottom: 8px; }
.form-card .hint { font-size: 14px; color: var(--ink-faint); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-group { margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 14px; letter-spacing: 0.15em; color: var(--ink-soft); }
.form-group label i { color: var(--cinnabar); font-style: normal; margin-left: 2px; }
.form-group input, .form-group textarea {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 13px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  border-radius: 10px;
  transition: border-color 0.25s, box-shadow 0.25s;
  width: 100%;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--cinnabar);
  box-shadow: 0 0 0 3px rgba(158, 59, 44, 0.10);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-error { font-size: 13px; color: var(--cinnabar); min-height: 18px; }
.form-note { margin-top: 18px; font-size: 14px; text-align: center; min-height: 22px; }
.form-note.ok { color: var(--pine); }
.form-note.err { color: var(--cinnabar); }

/* ---------- 登录页 ---------- */
.auth-wrap { max-width: 460px; margin: 0 auto; }
.auth-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 46px 44px;
}
.auth-card .auth-head { text-align: center; margin-bottom: 34px; }
.auth-card .auth-head .seal { margin: 0 auto 18px; }
.auth-card .auth-head h1 { font-family: var(--serif); font-size: 25px; letter-spacing: 0.2em; }
.auth-card .auth-head p { font-size: 13px; color: var(--ink-faint); margin-top: 8px; letter-spacing: .1em; }

.auth-tabs { display: flex; border-bottom: 1px solid var(--line); margin-bottom: 32px; }
.auth-tabs button {
  flex: 1;
  background: none; border: none;
  padding: 13px 4px;
  font-size: 15px; letter-spacing: 0.14em;
  color: var(--ink-faint);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.25s;
}
.auth-tabs button.active { color: var(--cinnabar); border-bottom-color: var(--cinnabar); }
.auth-pane { display: none; }
.auth-pane.active { display: block; animation: fadeUp .4s var(--ease-out); }
.otp-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; }
.auth-links { display: flex; justify-content: space-between; margin-top: 20px; }
.auth-full-btn { width: 100%; margin-top: 6px; }
.auth-full-btn:disabled, .btn:disabled { opacity: .55; cursor: not-allowed; }

.account-panel { text-align: center; }
.account-panel .avatar-lg {
  width: 92px; height: 92px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 18px;
  border: 2px solid var(--gold);
}
.account-panel .avatar-lg-fallback {
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--pine); color: var(--white);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 34px;
  margin: 0 auto 18px;
  border: 2px solid var(--gold);
}
.account-panel h2 { font-family: var(--serif); font-size: 20px; letter-spacing: .1em; margin-bottom: 6px; }
.account-panel .mail { font-size: 14px; color: var(--ink-faint); margin-bottom: 26px; }
.account-actions { display: flex; flex-direction: column; gap: 14px; }
.upload-hint { font-size: 12.5px; color: var(--ink-faint); margin-top: 6px; }

/* ---------- CTA 带 ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(28px, 3.6vw, 42px); letter-spacing: .12em; margin-bottom: 18px; }
.cta-band p { color: #b8b2a4; max-width: 52ch; margin: 0 auto 38px; }

/* ---------- 页脚 ---------- */
.site-footer { background: var(--ink); color: #b8b2a4; padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 64px;
}
.footer-brand .brand-line { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.footer-brand .brand-name { font-family: var(--serif); font-size: 20px; color: var(--paper); letter-spacing: .2em; }
.footer-brand p { font-size: 13.5px; line-height: 2; }
.footer-col h4 {
  font-family: var(--serif);
  color: var(--paper);
  font-size: 15px; letter-spacing: 0.3em;
  margin-bottom: 22px;
}
.footer-col li { margin-bottom: 12px; font-size: 14px; }
.footer-col a { transition: color 0.25s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(246, 242, 233, 0.12);
  padding: 26px 0;
  font-size: 12.5px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  color: #8b8577;
}

/* ---------- 页脚合规栏（备案 + 政策链接） ---------- */
.footer-legal {
  border-top: 1px solid rgba(246, 242, 233, 0.08);
  padding: 18px 0 22px;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 6px 4px;
  font-size: 12.5px;
  color: #8b8577;
  letter-spacing: 0.04em;
}
.footer-legal a {
  color: #b8b2a4;
  transition: color 0.25s;
}
.footer-legal a:hover { color: var(--gold); }
.footer-legal .legal-sep { color: #5d584c; opacity: 0.6; }
.footer-legal.legal-beian {
  border-top: none;
  padding-top: 2px;
  padding-bottom: 26px;
}
.footer-legal.legal-beian {
  border-top: none;
  padding-top: 2px;
  padding-bottom: 26px;
  gap: 6px 28px;
}
.footer-legal.legal-beian a { color: #8b8577; }
.footer-legal.legal-beian a:hover { color: var(--gold); }
.footer-legal .beian-ga { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.footer-legal .beian-ga img { width: 14px; height: 14px; display: block; flex: none; }

/* ---------- 政策 / 制度正文排版 ---------- */
.policy-body {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 52px 56px;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 2;
}
.policy-meta {
  font-size: 13.5px;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  padding-bottom: 20px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 6px 28px;
}
.policy-lead {
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 20px;
}
.policy-tip {
  background: var(--paper);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.policy-h2 {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--ink);
  margin: 40px 0 18px;
  padding-left: 14px;
  border-left: 3px solid var(--cinnabar);
}
.policy-body p { margin-bottom: 14px; }
.policy-ul { margin: 0 0 18px; padding-left: 4px; }
.policy-ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.policy-ul li::before {
  content: "";
  position: absolute; left: 2px; top: 0.8em;
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}
.policy-ul li strong { color: var(--ink); font-weight: 500; }

@media (max-width: 720px) {
  .policy-body { padding: 32px 22px; font-size: 15px; }
  .policy-h2 { font-size: 18px; margin-top: 32px; }
  .footer-legal { justify-content: center; padding: 16px 0 20px; line-height: 1.9; }
}

/* ---------- 动效 ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 响应式 ---------- */
@media (max-width: 980px) {
  .product-grid, .skeleton-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .craft-grid { grid-template-columns: repeat(2, 1fr); }
  .service-strip { grid-template-columns: 1fr; }
  .about-split, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-side { display: none; }
}

/* ---------- 后台管理 ---------- */
.admin-tabs {
  display: flex; gap: 8px;
  margin-bottom: 34px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.admin-tabs::-webkit-scrollbar { display: none; }
.admin-tabs button {
  background: transparent; border: 1px solid var(--line);
  padding: 10px 22px;
  font-size: 14px; letter-spacing: 0.1em;
  color: var(--ink-soft);
  border-radius: 999px;
  white-space: nowrap;
  transition: all 0.25s;
  flex: none;
}
.admin-tabs button:hover { border-color: var(--cinnabar); color: var(--cinnabar); }
.admin-tabs button.active { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.admin-pane { display: none; }
.admin-pane.active { display: block; animation: fadeUp .35s var(--ease-out); }

.admin-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.admin-table th {
  font-family: var(--serif);
  font-size: 13px; letter-spacing: 0.2em;
  color: var(--ink-soft);
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  white-space: nowrap;
}
.admin-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  vertical-align: middle;
}
.admin-table tbody tr { transition: background 0.2s; }
.admin-table tbody tr:hover { background: var(--paper); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table .thumb-sm {
  width: 56px; height: 56px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.admin-table .ops { display: flex; gap: 10px; white-space: nowrap; }
.admin-scroll { overflow-x: auto; }

.mini-btn {
  padding: 7px 16px;
  font-size: 13px;
  letter-spacing: 0.1em;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  border-radius: 8px;
  transition: all 0.25s;
}
.mini-btn:hover { border-color: var(--ink); color: var(--ink); }
.mini-btn--danger:hover { border-color: var(--cinnabar); color: var(--cinnabar); background: rgba(158,59,44,0.04); }

.admin-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.admin-toolbar p { font-size: 14px; color: var(--ink-faint); }

.editor-card {
  background: var(--white);
  border: 1px solid var(--gold);
  border-radius: 14px;
  padding: 36px;
  margin-bottom: 36px;
  box-shadow: 0 12px 32px -24px rgba(176,141,87,0.5);
}
.editor-card h3 { font-family: var(--serif); font-size: 20px; letter-spacing: .12em; margin-bottom: 26px; }
.img-pick { display: flex; align-items: flex-start; gap: 22px; }
.img-pick img { width: 120px; height: 120px; object-fit: cover; border: 1px solid var(--line); border-radius: 10px; background: var(--paper); }
.img-pick .pick-side { flex: 1; }

.content-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 16px;
}
.content-item .ci-head { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-bottom: 12px; flex-wrap: wrap; }
.content-item .ci-label { font-family: var(--serif); font-size: 15px; letter-spacing: .08em; color: var(--ink); }
.content-item .ci-key { font-size: 12px; color: var(--ink-faint); letter-spacing: .05em; }
.content-item textarea { min-height: 74px; }
.content-item img.ci-preview { max-width: 260px; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 12px; }
.ci-empty { max-width: 260px; padding: 30px; text-align: center; color: var(--ink-faint); border: 1px dashed var(--line); border-radius: 10px; margin-bottom: 12px; }

/* 图片建议尺寸提示 */
.img-size-hint {
  font-size: 12.5px;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin: -6px 0 14px;
  padding: 6px 12px;
  background: rgba(176, 141, 87, 0.08);
  border: 1px dashed rgba(176, 141, 87, 0.4);
  border-radius: 8px;
  display: inline-block;
}

/* 后台 · 文案编辑输入框（通栏 + 精致化） */
.ci-text {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 11px 14px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--ink);
  line-height: 1.7;
  border-radius: 8px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.ci-text:focus {
  border-color: var(--cinnabar);
  box-shadow: 0 0 0 3px rgba(158, 59, 44, 0.08);
}
textarea.ci-text { min-height: 84px; resize: vertical; }

/* 后台 · 大板块折叠卡片 */
.sec-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px -20px rgba(38,36,31,0.25);
  transition: box-shadow 0.25s, transform 0.25s var(--ease-out);
}
@media (hover: hover) {
  .sec-block:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -22px rgba(38,36,31,0.30); }
}
.sec-block.open { box-shadow: 0 12px 28px -24px rgba(38,36,31,0.35); }
.sec-head {
  display: flex; align-items: center; gap: 16px;
  width: 100%;
  padding: 18px 24px;
  background: none; border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.25s;
}
.sec-head:hover { background: var(--paper); }
.sec-head .sec-title { font-family: var(--serif); font-size: 17px; letter-spacing: 0.12em; white-space: nowrap; }
.sec-head .sec-desc { font-size: 12.5px; color: var(--ink-faint); letter-spacing: 0.04em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sec-head .sec-count {
  font-size: 12px; color: var(--ink-faint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 10px;
  white-space: nowrap;
}
.sec-head .sec-arrow { margin-left: auto; color: var(--ink-faint); font-size: 13px; transition: transform 0.25s; }
.sec-block.open .sec-head .sec-arrow { transform: rotate(90deg); }
.sec-body { display: none; padding: 22px 24px 6px; border-top: 1px solid var(--line); background: var(--paper); }
.sec-block.open .sec-body { display: block; animation: fadeUp 0.3s var(--ease-out); }
.sec-body .ci-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.sec-body .content-item { margin-bottom: 16px; }
.content-item.ci-wide { grid-column: 1 / -1; }

/* 后台 · 合并卡片（编号字段归组） */
.merge-card {
  grid-column: 1 / -1;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 16px;
}
.merge-card .mc-head {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: .12em;
  color: var(--cinnabar);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}
.merge-card .mc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 0 18px; }
.merge-card .content-item { border: none; padding: 0; margin-bottom: 14px; background: none; }
.merge-card .content-item .ci-head { margin-bottom: 6px; }
.merge-card .content-item .ci-label { font-size: 13px; color: var(--ink-faint); letter-spacing: .05em; }
.merge-card .content-item textarea { min-height: 56px; }
.merge-card .content-item .ci-key { display: none; }

/* 后台 · 板块保存栏 */
.sec-savebar {
  display: flex; align-items: center; gap: 14px;
  margin: 8px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.msg-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 26px;
  margin-bottom: 16px;
}
.msg-card .msg-head { display: flex; justify-content: space-between; gap: 14px; margin-bottom: 8px; flex-wrap: wrap; }
.msg-card .msg-name { font-family: var(--serif); font-size: 16px; }
.msg-card .msg-meta { font-size: 12.5px; color: var(--ink-faint); }
.msg-card .msg-body { font-size: 14.5px; color: var(--ink-soft); }

.admin-gate { text-align: center; padding: 90px 0; }
.admin-gate h2 { font-family: var(--serif); font-size: 26px; letter-spacing: .12em; margin-bottom: 14px; }
.admin-gate p { color: var(--ink-soft); margin-bottom: 26px; }
.admin-gate code {
  display: inline-block;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  padding: 8px 18px;
  font-size: 14px;
  letter-spacing: .05em;
  margin-bottom: 26px;
  user-select: all;
}

.admin-subhead {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: .12em;
  margin: 46px 0 20px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

/* ============================================================
   移动端适配（≤720px）· 高级流体体验
   ============================================================ */
@media (max-width: 720px) {
  .wrap { padding: 0 22px; }
  .section { padding: 64px 0; }

  /* ---- 导航栏：收缩 + 安全区 ---- */
  .site-header {
    top: 0;
    padding-top: var(--sat);
    background: rgba(246, 242, 233, 0.82);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
  }
  .nav { height: 60px; }
  .nav-brand .brand-name { font-size: 18px; letter-spacing: 0.16em; }
  .nav-brand .brand-en { font-size: 9px; }
  .nav-brand .seal { width: 38px; height: 38px; }
  .nav-brand .seal span { font-size: 13px; }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    gap: 0;
    border-radius: 50%;
  }
  .nav-toggle span { margin: 2.5px auto; transition: transform .35s var(--spring), opacity .25s; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ---- 导航抽屉：底部上滑胶囊面板 ---- */
  .nav-links {
    position: fixed;
    left: 16px; right: 16px;
    top: auto;
    bottom: calc(18px + var(--sab));
    z-index: 1001;
    background: rgba(255, 253, 248, 0.92);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid rgba(176, 141, 87, 0.18);
    border-radius: 24px;
    box-shadow: 0 24px 60px -20px rgba(38, 36, 31, 0.4);
    flex-direction: column;
    padding: 10px;
    gap: 4px;
    display: flex;
    /* 抽屉动画初始隐藏 */
    transform: translateY(120%) scale(0.96);
    opacity: 0;
    pointer-events: none;
    transition: transform .5s var(--spring), opacity .35s ease;
    transform-origin: bottom center;
  }
  .nav-links.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a.nav-item {
    display: block;
    padding: 15px 18px;
    border-radius: 16px;
    font-size: 16px;
    letter-spacing: 0.18em;
    color: var(--ink);
    transition: background .25s, color .25s, transform .2s;
  }
  .nav-links a.nav-item:active { background: var(--paper-deep); transform: scale(0.98); }
  .nav-links a.nav-item.active {
    color: var(--cinnabar);
    background: rgba(158, 59, 44, 0.06);
    font-weight: 500;
  }
  .nav-links a.nav-item::after { display: none; }

  /* 抽屉遮罩 */
  .nav-overlay {
    position: fixed; inset: 0;
    z-index: 1000;
    background: rgba(38, 36, 31, 0.42);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0; pointer-events: none;
    transition: opacity .35s ease;
  }
  .nav-overlay.show { opacity: 1; pointer-events: auto; }

  .nav-user .user-mail { display: none; }
  .nav-user .user-chip img, .nav-user .user-chip .avatar-fallback { width: 32px; height: 32px; }
  .nav-user .btn--sm { padding: 8px 16px; font-size: 13px; }

  /* ---- Hero：更紧凑，流动字号 ---- */
  .hero { min-height: calc(100dvh - 60px - var(--sat)); }
  .hero-bg { background-position: 72% center; }
  .hero-bg::after {
    background: linear-gradient(180deg, rgba(246,242,233,0.94) 0%, rgba(246,242,233,0.82) 40%, rgba(246,242,233,0.55) 100%);
  }
  .hero-inner { padding-top: 44px; padding-bottom: 90px; gap: 0; }
  .hero-text .eyebrow { font-size: 13px; letter-spacing: 0.42em; margin-bottom: 20px; }
  .hero-text h1 { font-size: clamp(38px, 12vw, 54px); letter-spacing: 0.06em; line-height: 1.3; }
  .hero-text p.lead { margin-top: 22px; font-size: 15.5px; line-height: 1.9; max-width: 100%; }
  .hero-actions { margin-top: 34px; gap: 14px; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 15px 20px; border-radius: 12px; letter-spacing: 0.2em; }
  .hero-actions .btn + .btn { width: 100%; }
  .scroll-hint { bottom: calc(20px + var(--sab)); }

  /* ---- 品牌理念 ---- */
  .philosophy-item { padding: 36px 26px; }
  .philosophy-item .glyph { font-size: 34px; margin-bottom: 18px; }

  /* ---- 产品卡片：双列 + 圆角阴影质感 ---- */
  .product-grid, .skeleton-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-card { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px -16px rgba(38,36,31,0.20); }
  .product-card .thumb { border-radius: 0; }
  .product-card .body { padding: 18px 16px 20px; }
  .product-card h3 { font-size: 17px; }
  .product-card .summary { font-size: 13px; }
  .product-card .price { font-size: 18px; }
  .product-card .cat-tag { top: 10px; left: 10px; font-size: 11px; padding: 4px 10px; border-radius: 999px; }
  .fav-btn { width: 38px; height: 38px; }

  /* ---- 分类筛选：横向滑动 + 粘性 ---- */
  .filter-bar {
    position: sticky; top: calc(60px + var(--sat));
    z-index: 40;
    background: rgba(246, 242, 233, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    margin: 0 -22px 32px;
    padding: 12px 22px;
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-chip { flex: none; padding: 9px 20px; }

  /* ---- 数据带 ---- */
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .stat-item .num { font-size: clamp(32px, 10vw, 44px); }
  .stat-item .label { font-size: 12.5px; letter-spacing: 0.16em; }

  /* ---- 页头横幅 ---- */
  .page-hero { padding: 56px 0 48px; }
  .page-hero h1 { font-size: clamp(32px, 9vw, 44px); letter-spacing: 0.08em; }
  .page-hero .vertical-text { display: none; }

  /* ---- 关于页 ---- */
  .about-split .img-frame::before { inset: 12px -12px -12px 12px; }
  .timeline::before { left: 12px; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; padding: 24px 0 24px 40px; }
  .timeline-item::before { left: 7px; top: 32px; }
  .timeline-item .year { text-align: left; font-size: 20px; }
  .craft-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .craft-item { padding: 28px 16px; }
  .craft-item h3 { font-size: 17px; }

  /* ---- 服务体系 ---- */
  .service-strip { grid-template-columns: 1fr; margin-bottom: 48px; }
  .service-cell { padding: 30px 24px; }

  /* ---- 联系页 ---- */
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
  .contact-grid { gap: 40px; }

  /* ---- 登录页 ---- */
  .auth-card { padding: 32px 22px; }
  .auth-wrap { padding: 20px 0; }

  /* ---- CTA ---- */
  .cta-band .btn { width: 100%; margin: 0 0 12px !important; }

  /* ---- 页脚：安全区留白 ---- */
  .site-footer { padding-bottom: var(--sab); }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* ---- 渐显动效：移动端更轻 ---- */
  .reveal { transform: translateY(24px); }

  /* ---- 产品卡片 hover 在触屏降级为无位移 ---- */
  .product-card:hover { transform: none; box-shadow: none; }
  .product-card:hover .thumb img { transform: none; }
}

@media (max-width: 720px) {
  .admin-table th, .admin-table td { padding: 11px 12px; font-size: 13px; }
  .editor-card { padding: 22px 16px; }
  .img-pick { flex-direction: column; }
  .sec-body .ci-grid { grid-template-columns: 1fr; }
  .sec-head { padding: 16px 18px; }
  .sec-head .sec-desc { display: none; }
  .sec-body { padding: 18px 18px 4px; }
  .admin-tabs { margin-bottom: 28px; }
  .admin-tabs button { padding: 13px 18px; font-size: 14px; }
  .admin-toolbar { flex-direction: column; align-items: flex-start; }
  .merge-card .mc-grid { grid-template-columns: 1fr; }
}

/* 超窄屏（≤480px）：产品卡片保持双列，紧凑精致 */
@media (max-width: 480px) {
  .product-grid, .skeleton-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-card .body { padding: 14px 13px 16px; }
  .product-card h3 { font-size: 15px; letter-spacing: 0.02em; margin-bottom: 6px; }
  .product-card .summary { font-size: 12px; line-height: 1.6; }
  .product-card .price { font-size: 16px; }
  .product-card .price small { font-size: 11px; }
  .product-card .cat-tag { font-size: 10px; padding: 3px 8px; top: 8px; left: 8px; }
  .product-card .foot { margin-top: 12px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .fav-btn { width: 34px; height: 34px; }
  .craft-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 36px; }
  .hero-text p.lead { font-size: 15px; }
}

