

:root {

  --tea-green:      #2f4a3c;
  --tea-green-soft: #4a6b54;
  --tea-gold:       #b08d57;
  --tea-gold-soft:  #c9a96a;
  --cream:          #f7f4ec;
  --cream-2:        #efe9dc;
  --ink:            #2b2b28;
  --ink-soft:       #5f5b53;
  --white:          #ffffff;
  --line:           #e2dccd;

  /* ── 文字层级 token（2026-09-20 全站统一；细则见 .workbuddy/memory/topics/type-scale.md） ──
     用法：新样式一律写 var(--fs-xxx)，不再写裸 px；半像素（13.5 / 14.5 / 12.5）已清零。 */
  --fs-hero:  46px;   /* 首屏 / 页面主标题（≤980: 38px  ≤640: 30px） */
  --fs-h2:    34px;   /* 区块标题（≤640: 26px） */
  --fs-h3:    22px;   /* 大卡片标题 */
  --fs-h4:    18px;   /* 卡片内小标题 */
  --fs-lead:  16px;   /* 引导语 / 区块副标题 */
  --fs-body:  15px;   /* 标准正文、按钮、表单 */
  --fs-sm:    14px;   /* 次要正文、卡片描述、列表 */
  --fs-meta:  13px;   /* 辅助信息：眉标、页脚、价格单位 */
  --fs-note:  12px;   /* 注记 / 标签 / 图注（全站最小字号） */
  --lh-num:   1.1;    /* 大数字、单行大标题 */
  --lh-head:  1.35;   /* 多行标题 */
  --lh-snug:  1.7;    /* 紧凑：列表、短句 */
  --lh-body:  1.8;    /* 正文（body 基准） */
  --lh-loose: 2.0;   /* 长文：品牌故事 / Q&A */

  /* 宽度规范 v1（2026-09-20 全站）：先按边距兜住，再用上限收口 */
  --w-wide: 1280px;   /* 框架层：区块内横向元素 ≥4 个（多列网格 / 图廊 / 大卡） */
  --w-mid:  1080px;   /* 中列层：2–3 列卡片 / 图文并排 */
  --w-text:  760px;   /* 阅读层：纯正文（段落 / Q&A / 规格表） */
  --pad-x:    64px;   /* 横向边距：≥1200→64 ｜ 1199–769→40 ｜ ≤768→20 ｜ ≤380→16 */
  --radius: 14px;
  --shadow: 0 10px 40px rgba(47, 74, 60, 0.10);
  --shadow-sm: 0 4px 18px rgba(47, 74, 60, 0.08);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --font-serif: "Noto Serif SC", "Songti SC", "STSong", "SimSun", Georgia, serif;
  --font-sans: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", system-ui, sans-serif;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: calc(100% - var(--pad-x) * 2);
  max-width: var(--w-wide);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

/* 四档横向边距（宽度规范 v1）—— 用 calc 公式兜底，任何屏都不出横向滚动条 */
@media (max-width: 1199px) { :root { --pad-x: 40px; } }
@media (max-width: 768px)  { :root { --pad-x: 20px; } }
@media (max-width: 380px)  { :root { --pad-x: 16px; } }

/* ── 宽度分层（宽度规范 v1，2026-09-20 全站）──────────────────────
   判定标准＝区块内横向元素个数：≥4 个 → 框架层 1280；2–3 列 → 中列层 1080；
   纯正文 → 阅读层 760。新增区块照此归类，不得再出现自由宽度。 */
.intro .container,
.featured .container { max-width: var(--w-mid); }

/* 阅读层：长正文块。实测未收时 products 页出现 899px ≈60 字 / 行的段落 */
.pickup-hook__body,
.card-promo__body,
.garden-info__body { max-width: var(--w-text); }


.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 4px;
  color: var(--tea-gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 600;
  color: var(--tea-green);
  letter-spacing: 2px;
}
.section-head p {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
/* 按钮默认一律「描边态」，不放实色色块；仅悬停/聚焦时填色（2026-09-13 全站统一） */
.btn--primary { background: transparent; color: var(--tea-green); border-color: rgba(47, 74, 60, 0.42); }
.btn--primary:hover, .btn--primary:focus-visible { background: var(--tea-green); color: var(--white); border-color: var(--tea-green); transform: translateY(-2px) scale(1.04); box-shadow: var(--shadow-sm); }
.btn--ghost { background: transparent; color: var(--tea-green); border-color: var(--tea-gold); }
.btn--ghost:hover, .btn--ghost:focus-visible { background: var(--tea-gold); color: var(--white); transform: scale(1.04); }
.btn--ghost-light { background: transparent; color: var(--white); border-color: rgba(201, 169, 106, 0.72); }
.btn--ghost-light:hover, .btn--ghost-light:focus-visible { background: var(--tea-gold-soft); color: var(--tea-green); transform: scale(1.04); }
/* 深色底按钮默认态：金色描边+白色字，仅悬停填色区分（2026-09-13） */
.btn--light { background: transparent; color: var(--white); border-color: rgba(201, 169, 106, 0.72); }
.btn--light:hover, .btn--light:focus-visible { background: var(--white); color: var(--tea-green); border-color: var(--white); transform: scale(1.04); }
.btn--gold { background: transparent; color: var(--white); border-color: rgba(201, 169, 106, 0.72); }
.btn--gold:hover, .btn--gold:focus-visible { background: var(--tea-gold); color: var(--white); border-color: var(--tea-gold); transform: translateY(-2px) scale(1.04); box-shadow: var(--shadow-sm); }

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247, 244, 236, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(47, 74, 60, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--tea-green);
  letter-spacing: 2px;
}
.brand .logo-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--tea-green);
  color: var(--tea-gold-soft);
  display: grid;
  place-items: center;
  font-size: 20px;
  border: 1px solid var(--tea-gold);
}

.header .brand img.brand-logo { height: 44px; width: auto; display: block; }
.footer .brand img.brand-logo { height: 64px; width: auto; display: block; margin-bottom: 14px; background: var(--white); border-radius: 6px; padding: 6px 10px; box-shadow: 0 4px 14px rgba(0,0,0,.18); }

.header .brand .logo-mark { display: none; }
.footer .brand .logo-mark { display: none; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  position: relative;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--ink);
  padding: 4px 0;
  display: inline-block;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--tea-gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--tea-green); transform: scale(1.06); }
.nav-links a.active { color: var(--tea-green); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* 主菜单「提货卡」为三字：给足四字项的占位宽度并居中，使整行节奏与四字项等宽。
   注意不用 letter-spacing 去「撑」字宽 —— 那会把三字拆成一字一隔（提 货 卡），
   与相邻项的 1px 字距明显不协调；占位等宽 + 居中即可，字形保持自然。 */
.nav-links > a[href="cards.html"] {
  /* 四字项宽 = 4×字号 + 4×字距(1px) = calc(4em + 4px) = 64px */
  min-width: calc(4em + 4px);
  text-align: center;
}
@media (max-width: 768px) {
  /* 移动端为竖排列表（.nav-links a 宽 100%），恢复左对齐、取消等宽占位 */
  .nav-links > a[href="cards.html"] { min-width: 0; text-align: left; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--tea-green);
  transition: all 0.3s var(--ease);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;              /* 手机：按「真实可视高度」算，别把提示顶到地址栏外 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 56px;
  /* 底部 >=105px 是硬约束：.hero__scroll 绝对定位在 bottom:28px、自身高 67px，
     内容下沿一旦超过 heroH-95 就会压住它。 */
  padding: 88px 0 112px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(47,74,60,0.92) 0%, rgba(47,74,60,0.78) 45%, rgba(47,74,60,0.35) 100%),
    radial-gradient(circle at 80% 20%, rgba(176,141,87,0.35), transparent 50%),
    linear-gradient(160deg, #1f3328, #2f4a3c);
  color: var(--white);
}
.hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.4) 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 60px 60px, 90px 90px;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.hero__right {
  display: flex;
  flex-direction: column;
  gap: 34px;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 1080px;
}
.hero__content { max-width: 680px; }
.hero h1 {
  font-family: var(--font-serif);
  font-size: 46px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 3px;
}
.hero h1 .hero-title { font-size: 0.9em; letter-spacing: 3px; white-space: nowrap; }
.hero h1 .accent { color: var(--tea-gold-soft); }
.hero p.lead {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll .line {
  width: 1px; height: 38px;
  background: linear-gradient(rgba(255,255,255,0.6), transparent);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine { 0%,100%{opacity:.3; transform:scaleY(.6)} 50%{opacity:1; transform:scaleY(1)} }

.stats {
  background: var(--tea-green);
  color: var(--white);
  padding: 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stats__item { padding: 40px 16px; border-right: 1px solid rgba(255,255,255,0.12); }
.stats__item:last-child { border-right: none; }
.stats__num { font-family: var(--font-serif); font-size: 42px; color: var(--tea-gold-soft); }
.stats__label { font-size: 14px; letter-spacing: 2px; color: rgba(255,255,255,0.78); margin-top: 6px; }

.intro { background: var(--white); }
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.intro__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--tea-green-soft), var(--tea-green));
  position: relative;
}
.intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.intro__text h2 { font-family: var(--font-serif); font-size: 34px; color: var(--tea-green); margin-bottom: 20px; letter-spacing: 2px; white-space: nowrap; }
.intro__text p { color: var(--ink-soft); margin-bottom: 16px; }
.intro__text .signature { font-family: var(--font-serif); color: var(--tea-gold); letter-spacing: 2px; margin-top: 8px; white-space: nowrap; }

.featured { background: var(--cream); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  justify-content: center;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--tea-gold-soft); }
.feature-card .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--cream-2);
  display: grid; place-items: center;
  font-size: 28px;
  margin-bottom: 22px;
}
.feature-card h3 { font-family: var(--font-serif); font-size: 22px; color: var(--tea-green); margin-bottom: 12px; letter-spacing: 1px; }
.feature-card p { color: var(--ink-soft); font-size: 14px; }

.advantage { background: var(--tea-green); color: var(--white); }
.advantage .section-head h2 { color: var(--white); }
.advantage .section-head .eyebrow { color: var(--tea-gold-soft); }
.adv-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.adv-item { text-align: center; padding: 16px; }
.adv-item .num { font-family: var(--font-serif); font-size: 30px; color: var(--tea-gold-soft); margin-bottom: 10px; }
.adv-item h4 { font-size: 18px; letter-spacing: 1px; margin-bottom: 8px; }
.adv-item p { font-size: 14px; color: rgba(255,255,255,0.72); }

.cta-band {
  background:
    linear-gradient(rgba(47,74,60,0.92), rgba(47,74,60,0.92)),
    radial-gradient(circle at 70% 30%, rgba(176,141,87,0.4), transparent 55%);
  color: var(--white);
  text-align: center;
}
.cta-band h2 { font-family: var(--font-serif); font-size: 34px; letter-spacing: 3px; margin-bottom: 18px; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto 30px; }

/* garden-care 页内嵌 CTA 卡片：去掉硬边纯色块感（2026-09-12）
   仅作用于 div 变体（:not(.section)），全站 section.section.cta-band 全幅带不受影响 */
.cta-band:not(.section) {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 68px 48px 62px;
  background:
    radial-gradient(circle at 82% 4%, rgba(201,169,106,0.30), rgba(0,0,0,0) 60%),
    radial-gradient(circle at 8% 100%, rgba(74,107,84,0.34), rgba(0,0,0,0) 55%),
    linear-gradient(152deg, #36553f 0%, #2f4a3c 48%, #25392d 100%);
  box-shadow: 0 26px 60px -34px rgba(36,56,45,0.55);
}
.cta-band:not(.section)::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(201,169,106,0.18);
  pointer-events: none;
}
.cta-band:not(.section) h2 { margin-bottom: 20px; }
.cta-band:not(.section) p { margin-bottom: 34px; }

@media (max-width: 768px) {
  .cta-band:not(.section) {
    border-radius: 18px;
    padding: 46px 24px 42px;
  }
  .cta-band:not(.section) h2 { font-size: 22px; letter-spacing: 0.5px; margin-bottom: 14px; }
  .cta-band:not(.section) p { font-size: 14px; line-height: 1.7; margin-bottom: 26px; }
}

@media (max-width: 380px) {
  .cta-band:not(.section) { padding: 40px 18px 36px; }
  .cta-band:not(.section) h2 { font-size: 18px; letter-spacing: 0; }
}

.page-hero {
  background:
    linear-gradient(120deg, rgba(47,74,60,0.9), rgba(47,74,60,0.7)),
    linear-gradient(160deg, #1f3328, #2f4a3c);
  color: var(--white);
  padding: 96px 0 60px;
  text-align: center;
}
.page-hero .eyebrow { font-size: 13px; letter-spacing: 6px; color: var(--tea-gold-soft); margin-bottom: 16px; }
.page-hero h1 { font-family: var(--font-serif); font-size: 46px; letter-spacing: 4px; }
.page-hero p { color: rgba(255,255,255,0.8); margin-top: 16px; max-width: 620px; margin-left: auto; margin-right: auto; }

.story { background: var(--white); }
.story__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.story__media { aspect-ratio: 3/4; border-radius: var(--radius); background: linear-gradient(150deg, var(--tea-gold-soft), var(--tea-green-soft)); box-shadow: var(--shadow); overflow: hidden; }
.story__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story__media .big-cn { font-family: var(--font-serif); font-size: 90px; color: rgba(255,255,255,0.9); letter-spacing: 10px; writing-mode: vertical-rl; }
.story__logo { width: 220px; max-width: 60%; height: auto; display: block; margin-bottom: 18px; }
.story__text h2 { font-family: var(--font-serif); font-size: 34px; color: var(--tea-green); margin-bottom: 20px; }
.story__text p { color: var(--ink-soft); line-height: 2; margin-bottom: 22px; text-align: justify; text-justify: inter-ideograph; }

.craft { background: var(--cream); }
.timeline { max-width: 820px; margin: 0 auto; position: relative; }
.timeline::before { content:""; position:absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--line); transform: translateX(-50%); }
.tl-item { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 40px; position: relative; }
.tl-item .tl-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px; box-shadow: var(--shadow-sm); }
.tl-item:nth-child(odd) .tl-card { grid-column: 1; text-align: right; }
.tl-item:nth-child(even) .tl-card { grid-column: 2; }
.tl-step { font-family: var(--font-serif); color: var(--tea-gold); font-size: 14px; letter-spacing: 2px; }
.tl-card h4 { font-family: var(--font-serif); font-size: 18px; color: var(--tea-green); margin: 6px 0 8px; }
.tl-card p { font-size: 14px; color: var(--ink-soft); }

.honors { background: var(--white); }
.honor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.honor-item { text-align: center; padding: 30px 18px; border: 1px dashed var(--line); border-radius: var(--radius); transition: all .35s var(--ease); }
.honor-item:hover { border-color: var(--tea-gold); background: var(--cream); }
.honor-item .h-icon { font-size: 34px; margin-bottom: 14px; }

.garden-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.garden-grid .garden-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px dashed var(--line); transition: all .4s var(--ease); display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.garden-grid .garden-card:hover { border-color: var(--tea-gold); transform: translateY(-4px); box-shadow: 0 16px 40px -20px rgba(47,74,60,.35); }
.garden-grid .garden-card .g-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.garden-grid .garden-card:hover .g-photo { transform: scale(1.05); }
.garden-grid .garden-card .g-body { padding: 22px 20px 24px; display: flex; flex-direction: column; flex: 1 1 auto; }
.garden-grid .garden-card .g-name { font-family: var(--font-serif); font-size: 22px; color: var(--tea-green); margin-bottom: 4px; }
.garden-grid .garden-card .g-meta { font-size: 12px; color: var(--tea-gold); letter-spacing: 1px; margin-bottom: 10px; text-transform: uppercase; }
.garden-grid .garden-card .g-desc { font-size: 14px; color: var(--ink-soft); line-height: 1.8; }
.garden-grid .garden-card .g-more { display: inline-block; margin-top: auto; font-size: 14px; color: var(--tea-green); font-weight: 500; white-space: nowrap; align-self: flex-start; transition: color .3s var(--ease), transform .3s var(--ease); }
.garden-grid .garden-card:hover .g-more { color: var(--tea-gold); transform: translateX(3px); }
@media (max-width: 1024px) { .garden-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .garden-grid { grid-template-columns: 1fr; gap: 18px; } .garden-grid .garden-card .g-body { padding: 18px 18px 20px; } }
.honor-item .h-photo {
  width: 130px;
  height: 170px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin: 0 auto 14px;
  box-shadow: var(--shadow-sm);
}
.honor-item:hover .h-photo { transform: scale(1.04); }
@media (max-width: 768px) { .honor-item .h-photo { width: 116px; height: 152px; object-fit: cover; object-position: center top; } }
.honor-item h4 { font-size: 18px; color: var(--tea-green); margin-bottom: 6px; }
.honor-item p { font-size: 13px; color: var(--ink-soft); }

.products-section { background: var(--white); }
.prod-filter { display: flex; justify-content: center; gap: 14px; margin-bottom: 48px; flex-wrap: wrap; }
.filter-btn {
  padding: 10px 26px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all .3s var(--ease);
}
.filter-btn.active, .filter-btn:hover { background: var(--tea-green); color: var(--white); border-color: var(--tea-green); }

.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.prod-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all .4s var(--ease);
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.prod-card .prod-img {
  aspect-ratio: 4/3;
  display: grid; place-items: center;
  font-size: 64px;
  color: rgba(255,255,255,0.9);
}
.prod-card.rock .prod-img { background: linear-gradient(150deg, #6b4a2f, #3f2d1c); }
.prod-card.black .prod-img { background: linear-gradient(150deg, #8a3324, #5a1f14); }
.prod-card.card .prod-img { background: linear-gradient(150deg, var(--tea-green), var(--tea-gold-soft, #b08d57)); }
.prod-card .prod-body { padding: 24px 24px 28px; }
.prod-card .prod-tag { font-size: 12px; letter-spacing: 2px; color: var(--tea-gold); }
.prod-card h3 { font-family: var(--font-serif); font-size: 22px; color: var(--tea-green); margin: 8px 0 10px; }
.prod-card p { font-size: 14px; color: var(--ink-soft); }
.prod-card .prod-meta { margin-top: 16px; display: flex; justify-content: space-between; align-items: center; }
.prod-card .price { font-family: var(--font-serif); color: var(--tea-green); font-size: 18px; }
.prod-card .price small { font-size: 12px; color: var(--ink-soft); }

.services { background: var(--cream); }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 34px;
  text-align: center;
  border: 1px solid var(--line);
  transition: all .4s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-card .svc-icon { font-size: 40px; margin-bottom: 18px; }
.svc-card h3 { font-family: var(--font-serif); color: var(--tea-green); font-size: 22px; margin-bottom: 12px; }
.svc-card p { color: var(--ink-soft); font-size: 14px; }
.svc-card ul.svc-list { margin-top: 16px; text-align: left; }
.svc-card ul.svc-list li { font-size: 14px; color: var(--ink-soft); padding: 6px 0 6px 22px; position: relative; }
.svc-card ul.svc-list li::before { content:"·"; position: absolute; left: 8px; color: var(--tea-gold); font-size: 20px; }

.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-info h2 { font-family: var(--font-serif); font-size: 34px; color: var(--tea-green); margin-bottom: 20px; }
.contact-info .ci-block { display: flex; gap: 16px; margin-bottom: 26px; }
.contact-info .ci-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--cream-2); display: grid; place-items: center; font-size: 22px; flex-shrink: 0; }
.contact-info .ci-text h4 { font-size: 15px; color: var(--ink); margin-bottom: 2px; letter-spacing: 1px; }
.contact-info .ci-text p { font-size: 15px; color: var(--ink-soft); }

/* 联系信息内的电话 / 邮箱链接：保持原字色，点线示意可点（2026-09-12） */
.contact-info .ci-text a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted var(--tea-gold-soft);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.contact-info .ci-text a:hover,
.contact-info .ci-text a:focus-visible {
  color: var(--tea-gold);
  border-bottom-color: var(--tea-gold);
}

.contact-info .ci-block--qr .ci-text { flex: 1; min-width: 0; }
.qr-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 14px; }
.qr-item { margin: 0; text-align: center; display: flex; flex-direction: column; align-items: center; }
.qr-item img {
  width: 110px; height: 110px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.qr-item:hover img { transform: translateY(-3px); box-shadow: var(--shadow); }
.qr-item figcaption { margin-top: 8px; line-height: 1.35; }
.qr-item figcaption strong { display: block; font-family: var(--font-serif); font-size: 13px; color: var(--tea-green); letter-spacing: 1px; }
.qr-item figcaption span { display: block; font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
@media (max-width: 540px) {
  .qr-item img { width: 96px; height: 96px; }
  .qr-row { gap: 14px; }
}

.contact-form { background: var(--cream); border-radius: var(--radius); padding: 38px 34px; border: 1px solid var(--line); }
.contact-form h3 { font-family: var(--font-serif); font-size: 22px; color: var(--tea-green); margin-bottom: 22px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; color: var(--ink); margin-bottom: 8px; letter-spacing: 1px; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  background: var(--white);
  color: var(--ink);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--tea-green-soft);
  box-shadow: 0 0 0 3px rgba(74,107,84,0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-msg { font-size: 14px; margin-top: 8px; }
.form-msg.ok { color: var(--tea-green-soft); }
.form-msg.err { color: #b23a2e; }

.footer {
  background: #1f3328;
  color: rgba(255,255,255,0.78);
  padding: 32px 0 26px;
}
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer .brand { color: var(--white); margin-bottom: 16px; }
.footer .brand .logo-mark { background: rgba(255,255,255,0.08); }
.footer p.about { font-size: 14px; color: rgba(255,255,255,0.6); max-width: 320px; }
.footer h4 { font-size: 15px; color: var(--white); letter-spacing: 2px; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 14px; color: rgba(255,255,255,0.62); transition: color .3s var(--ease); }
.footer ul li a:hover { color: var(--tea-gold-soft); }
.footer__wechat { display: flex; align-items: center; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); }
.footer__wechat img { width: 84px; height: 84px; border-radius: 8px; background: #fff; padding: 5px; box-shadow: 0 4px 14px rgba(0,0,0,.25); display: block; }
.footer__wechat span { font-size: 13px; color: rgba(255,255,255,0.62); line-height: 1.7; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1024px) {
  .hero h1 { font-size: 38px; }
  .intro__grid, .story__grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .card-grid, .prod-grid, .svc-grid, .honor-grid, .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .adv-grid { grid-template-columns: repeat(3, 1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  /* 页脚只剩「品牌 | 联系」两块（2026-09-15 第八轮去掉「产品系列」菜单栏），
     两列并排即可，不再需要「品牌块独占一行」的补丁。 */
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 24px 24px;
    box-shadow: 0 10px 30px rgba(47,74,60,0.12);
    transform: translateY(-120%);
    transition: transform .4s var(--ease);
    border-bottom: 1px solid var(--line);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); transform: none; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }
  .hero__right { flex-direction: column; align-items: center; gap: 24px; text-align: center; }
  .hero h1 { font-size: 30px; letter-spacing: 2px; }
  .hero p.lead { font-size: 16px; }
  .section-head h2 { font-size: 26px; }
  .intro__text h2 { font-size: 24px; letter-spacing: 1px; }
  .card-grid, .prod-grid, .svc-grid, .honor-grid, .adv-grid, .stats__grid { grid-template-columns: 1fr; }
  .stats__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .timeline::before { left: 16px; }
  .tl-item { grid-template-columns: 1fr; gap: 0; }
  .tl-item:nth-child(odd) .tl-card, .tl-item:nth-child(even) .tl-card { grid-column: 1; text-align: left; margin-left: 40px; }
  .footer__grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 30px; }
}

.adopt-hero {
  background:
    linear-gradient(120deg, rgba(47,74,60,0.92), rgba(47,74,60,0.75)),
    linear-gradient(160deg, #1f3328, #2f4a3c);
}

.base-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.base-item { text-align: center; padding: 32px 18px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.base-item .num { font-family: var(--font-serif); font-size: 44px; color: var(--tea-gold); line-height: 1.1; }
.base-item .num span { font-size: 16px; color: var(--ink-soft); margin-left: 6px; font-family: var(--font-sans); }
.base-item p { margin-top: 14px; font-size: 14px; color: var(--ink-soft); line-height: 1.7; }

.plan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.plan-card { background: var(--white); border-radius: var(--radius); padding: 30px 22px; box-shadow: var(--shadow); border: 1px solid var(--line); display: flex; flex-direction: column; }
.plan-card--feature { border-color: var(--tea-gold); box-shadow: 0 18px 44px rgba(176,141,87,0.22); }
.plan-tag { display: inline-block; font-size: 12px; letter-spacing: 3px; color: var(--white); background: var(--tea-gold); padding: 5px 12px; border-radius: 999px; align-self: flex-start; }
.plan-tag--gold { color: var(--white); background: var(--tea-gold); }
.plan-card h3 { font-family: var(--font-serif); font-size: 22px; color: var(--tea-green); margin: 16px 0 6px; line-height: 1.35; }
.plan-price { font-family: var(--font-serif); font-size: 34px; line-height: 1.1; color: var(--tea-green); margin-bottom: 22px; }
.plan-price .cur { font-size: 20px; vertical-align: top; margin-right: 2px; }
.plan-price small { font-size: 13px; color: var(--ink-soft); margin-left: 6px; font-family: var(--font-sans); font-weight: normal; }
.plan-sub { color: var(--ink-soft); margin: 10px 0 18px; font-size: 13px; }
.plan-list { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.plan-list li { position: relative; padding-left: 20px; margin-bottom: 9px; font-size: 14px; color: var(--ink); line-height: 1.7; }
.plan-list li::before { content: ""; position: absolute; left: 0; top: 10px; width: 7px; height: 7px; background: var(--tea-gold); border-radius: 50%; }
.plan-cta { align-self: stretch; text-align: center; padding: 11px 22px; font-size: 13px; }
.plan-footnote { text-align: center; color: var(--ink-soft); font-size: 13px; margin-top: 28px; }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.benefit-item { background: var(--cream); border-radius: var(--radius); padding: 32px 24px; text-align: center; border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.benefit-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.benefit-item .b-icon { font-size: 36px; margin-bottom: 14px; }
.benefit-item h4 { font-family: var(--font-serif); color: var(--tea-green); font-size: 18px; margin-bottom: 10px; }
.benefit-item p { font-size: 14px; color: var(--ink-soft); line-height: 1.8; }

.process-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 32px; }
.process-step { position: relative; padding-top: 6px; }
.process-step .step-num { font-family: var(--font-serif); font-size: 46px; color: var(--tea-gold-soft); line-height: 1; margin-bottom: 10px; }
.process-step h4 { font-family: var(--font-serif); color: var(--tea-green); font-size: 18px; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--ink-soft); line-height: 1.8; }

.svc-more { display: inline-block; margin-top: 18px; font-size: 14px; color: var(--tea-gold); letter-spacing: 1px; border-bottom: 1px solid var(--tea-gold-soft); padding-bottom: 2px; white-space: nowrap; transition: color .3s var(--ease), border-color .3s var(--ease); }
.svc-more:hover { color: var(--tea-green); border-color: var(--tea-green); }

.bg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bg-item { background: var(--white); border-radius: var(--radius); padding: 32px 26px; text-align: center; border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.bg-item:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.bg-icon { font-size: 34px; margin-bottom: 12px; }
.bg-item h4 { font-family: var(--font-serif); font-size: 18px; color: var(--tea-green); margin-bottom: 10px; }
.bg-item p { font-size: 14px; color: var(--ink-soft); line-height: 1.8; }

.tour-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 880px; margin: 0 auto; }
.tour-card { background: var(--white); border-radius: var(--radius); padding: 36px 30px; box-shadow: var(--shadow); border: 1px solid var(--line); display: flex; flex-direction: column; }
.tour-card--feature { border-color: var(--tea-gold); box-shadow: 0 18px 44px rgba(176,141,87,0.22); }
.tour-tag { display: inline-block; font-size: 12px; letter-spacing: 4px; color: var(--white); background: var(--tea-gold); padding: 6px 14px; border-radius: 999px; align-self: flex-start; margin-bottom: 14px; }
.tour-tag--gold { color: var(--white); background: var(--tea-gold); }
.tour-card h3 { font-family: var(--font-serif); font-size: 22px; color: var(--tea-green); margin-bottom: 6px; }
.tour-price { font-family: var(--font-serif); font-size: 36px; line-height: 1.1; color: var(--tea-green); margin: 10px 0 20px; }
.tour-price .cur { font-size: 20px; vertical-align: top; margin-right: 2px; }
.tour-price small { font-size: 13px; color: var(--ink-soft); margin-left: 6px; font-family: var(--font-sans); font-weight: normal; }
.tour-list { list-style: none; padding: 0; margin: 0; flex: 1; }
.tour-list li { position: relative; padding-left: 22px; margin-bottom: 10px; font-size: 14px; color: var(--ink); line-height: 1.7; }
.tour-list li::before { content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; background: var(--tea-gold); border-radius: 50%; }

@media (max-width: 1024px) {
  .base-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card--feature { transform: none; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .bg-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .base-grid, .benefit-grid, .process-list { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .tour-grid { grid-template-columns: 1fr; }
  .plan-card { padding: 32px 24px; }
  .plan-price { font-size: 32px; }
  .adopt-hero { padding: 140px 0 64px; }
  .gardens-grid { grid-template-columns: 1fr; }
  .garden-info { grid-template-columns: 1fr; gap: 24px; }
  .garden-photos { grid-template-columns: 1fr; }
  .garden-specs { grid-template-columns: repeat(2, 1fr); }
  .garden-page-hero { padding: 96px 0 56px; }
  .garden-page-hero h1 { font-size: 30px; letter-spacing: 2px; }
  .garden-card__body { padding: 22px 20px; }
}

.gardens-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.gardens-grid .garden-card { position: relative; display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); color: inherit; text-decoration: none; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.gardens-grid .garden-card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(20,42,36,0.18); }
.garden-card__cover { aspect-ratio: 4/3; overflow: hidden; background: var(--cream); position: relative; }
.garden-card__cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease); }
.garden-card:hover .garden-card__cover img { transform: scale(1.06); }
.garden-card__pin { position: absolute; left: 16px; top: 16px; font-size: 12px; letter-spacing: 3px; color: var(--white); background: rgba(20,42,36,0.72); padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(4px); }
.garden-card__pin--soon { background: rgba(176,141,87,0.85); }
.garden-card__body { padding: 26px 24px 28px; display: flex; flex-direction: column; flex: 1 1 auto; }
.garden-card__where { font-size: 12px; letter-spacing: 3px; color: var(--tea-gold); margin-bottom: 8px; }
.garden-card__title { font-family: var(--font-serif); font-size: 22px; color: var(--tea-green); margin-bottom: 10px; letter-spacing: 1px; }
.garden-card__desc { font-size: 14px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 18px; min-height: 70px; }
.garden-card__more { font-size: 13px; color: var(--tea-green); font-weight: 500; display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; margin-top: auto; align-self: flex-start; }
.garden-card__more::after { content: "→"; transition: transform .3s var(--ease); }
.garden-card:hover .garden-card__more::after { transform: translateX(4px); }

.garden-page-hero { padding: 132px 0 72px; }
.garden-page-hero h1 { font-family: var(--font-serif); font-size: 46px; letter-spacing: 4px; }
.garden-page-hero p { color: rgba(255,255,255,0.82); margin-top: 18px; max-width: 640px; margin-left: auto; margin-right: auto; }

.garden-back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--tea-gold); margin-bottom: 24px; letter-spacing: 1px; }
.garden-back-link::before { content: "←"; transition: transform .3s var(--ease); }
.garden-back-link:hover::before { transform: translateX(-4px); }

.garden-hero-image { aspect-ratio: 21/9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 56px; }
.garden-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.garden-specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 64px; }
.garden-spec { background: var(--white); padding: 26px 18px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); border: 1px solid var(--line); }
.garden-spec__num { font-family: var(--font-serif); font-size: 32px; color: var(--tea-gold); line-height: 1.1; }
.garden-spec__num span { font-size: 14px; color: var(--ink-soft); margin-left: 4px; font-family: var(--font-sans); }
.garden-spec p { font-size: 13px; color: var(--ink-soft); margin-top: 10px; line-height: 1.7; }

.garden-info { display: grid; grid-template-columns: 0.55fr 1fr; gap: 60px; align-items: start; margin: 32px 0 56px; }
.garden-info__data { background: var(--white); padding: 32px 30px; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--line); position: sticky; top: 96px; }
.garden-info__data h4 { font-family: var(--font-serif); font-size: 22px; color: var(--tea-green); margin-bottom: 18px; letter-spacing: 1px; }
.garden-info__data ul { list-style: none; padding: 0; margin: 0; }
.garden-info__data li { padding: 14px 0; border-bottom: 1px dashed var(--line); font-size: 14px; color: var(--ink-soft); display: flex; justify-content: space-between; gap: 12px; line-height: 1.7; }
.garden-info__data li:last-child { border-bottom: 0; }
.garden-info__data li strong { color: var(--tea-green); font-weight: 500; flex-shrink: 0; }
.garden-info__body { padding-top: 8px; }
.garden-info__body p { color: var(--ink-soft); line-height: 2; margin-bottom: 22px; text-align: justify; text-justify: inter-ideograph; }

/* 茶园详情页正文主标题：原先写死在 HTML 的内联样式里（30px/2px），
   内联优先级压过一切 CSS，手机端因此永远折行。改为 CSS 统一管。 */
.garden-info__body .section-head__title {
  font-family: var(--font-serif);
  color: var(--tea-green);
  margin: 18px 0 24px;
  font-size: clamp(19px, 3.4vw, 34px);
  letter-spacing: clamp(.5px, .24vw, 2px);
  line-height: 1.8;
}

.care-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 0 0 48px; }
.care-grid--4 { grid-template-columns: repeat(4, 1fr); }
.care-item { background: var(--white); padding: 28px 24px 26px; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease); }
.care-item:hover { transform: translateY(-4px); border-color: var(--tea-gold); box-shadow: 0 18px 40px -20px rgba(47,74,60,.25); }
.care-num { font-family: var(--font-serif); font-size: 24px; color: var(--tea-gold); letter-spacing: 4px; line-height: 1; margin-bottom: 14px; }
.care-item h3 { font-family: var(--font-serif); font-size: 18px; color: var(--tea-green); letter-spacing: 1.5px; margin-bottom: 10px; }
.care-item p { font-size: 14px; color: var(--ink-soft); line-height: 1.8; }
@media (max-width: 1024px) { .care-grid { grid-template-columns: repeat(2, 1fr); } .care-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .care-grid, .care-grid--4 { grid-template-columns: 1fr; gap: 16px; } .care-item { padding: 22px 20px 20px; } .care-num { font-size: 22px; } }

.garden-photos { display: grid; gap: 16px; margin: 36px 0 56px; }
.garden-photos--1 { grid-template-columns: 1fr; }
.garden-photos--2 { grid-template-columns: 1.4fr 1fr; }
.garden-photos--3 { grid-template-columns: 1fr 1fr 1fr; }
.garden-photo { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.garden-photo--tall { aspect-ratio: 3/4; }
.garden-photo--full { aspect-ratio: 21/9; max-height: 520px; }
@media (max-width: 768px) { .garden-photo--full { aspect-ratio: 16/9; } }
.garden-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.garden-photo__caption { position: absolute; left: 16px; bottom: 16px; padding: 6px 12px; background: rgba(20,42,36,0.72); color: var(--white); font-size: 12px; letter-spacing: 2px; border-radius: 999px; backdrop-filter: blur(4px); }

.garden-soon-banner { background: var(--cream); border: 1px dashed var(--tea-gold); border-radius: var(--radius); padding: 32px 30px; text-align: center; margin: 36px 0 56px; }
.garden-soon-banner h4 { font-family: var(--font-serif); font-size: 22px; color: var(--tea-green); margin-bottom: 12px; letter-spacing: 2px; }
.garden-soon-banner p { color: var(--ink-soft); font-size: 14px; line-height: 1.8; max-width: 520px; margin: 0 auto 22px; }

@media (max-width: 1024px) {
  .gardens-grid { grid-template-columns: repeat(2, 1fr); }
  .garden-info { grid-template-columns: 1fr; gap: 28px; }
  .garden-info__data { position: static; }
  .garden-photos--2, .garden-photos--3 { grid-template-columns: 1fr; }
  .garden-specs { grid-template-columns: repeat(2, 1fr); }
  .garden-page-hero h1 { font-size: 38px; }
}

.nav-item { position: relative; display: flex; align-items: center; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 272px;
  background: linear-gradient(158deg, #faf5ec 0%, #efe3cd 100%);
  border: 1px solid var(--tea-gold);
  border-radius: 4px;
  box-shadow: 0 22px 52px rgba(47,74,60,0.24);
  padding:  ‍0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 120;
}

.nav-dropdown::before {
  content: none;
  padding: 0;
  border-bottom: 0;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 9px; right: 14px;
  width: 28px; height: 28px;
  background: url("../images/yiqushui-logo-seal.png") center/contain no-repeat;
  transform: rotate(-7deg);
  opacity: .92;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.06));
}

.nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  height: 12px;
}
.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
/* 桌面端：如果 .open 类残留（移动端展开后把窗口拉宽），一样正常显示/隐藏 */
@media (min-width: 641px) {
  .nav-item.has-dropdown.open .nav-dropdown { display: flex; opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0); }
}
.nav-dropdown a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 11px 18px;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid rgba(212,175,55,0.18);
  white-space: nowrap;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: var(--tea-green); color: var(--cream); }
.nav-dropdown a:hover .nav-dropdown__num { color: var(--tea-gold); }
.nav-dropdown a::after { display: none; }
.nav-dropdown__num {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--tea-gold);
  letter-spacing: 1px;
  width: 24px;
  flex-shrink: 0;
  text-align: center;
}
/* 「特色茶」三字按四字占位，右端与上下四字系列名对齐 */
.nav-dropdown__name--tri {
  display: inline-block;
  width: calc(4em + 4px);   /* 四字系列名的实际宽度：4 字 ×（1em + 继承的 1px 字距） */
  text-align: justify;
  text-align-last: justify;  /* 三字两端撑满，右端与上下四字名对齐 */
}


.nav-subgroup { position: relative; }
.nav-dropdown__parent { position: relative; cursor: pointer; }
.nav-dropdown__parent::after {
  content: "";
  position: absolute;
  right: 16px; top: 50%;
  width: 0; height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 5px solid var(--tea-gold);
  transform: translateY(-50%);
  transition: border-left-color .2s var(--ease);
}
.nav-subgroup.has-submenu:hover .nav-dropdown__parent::after,
.nav-subgroup.has-submenu:focus-within .nav-dropdown__parent::after {
  border-left-color: var(--cream);
}
.nav-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 8px;
  min-width: 184px;
  background: linear-gradient(158deg, #faf5ec 0%, #efe3cd 100%);
  border: 1px solid var(--tea-gold);
  border-radius: 4px;
  box-shadow: 0 22px 52px rgba(47,74,60,0.24);
  padding: 6px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index: 130;
}
.nav-subgroup.has-submenu:hover .nav-submenu,
.nav-subgroup.has-submenu:focus-within .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.nav-submenu a {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--ink);
  border-bottom: 1px solid rgba(212,175,55,0.18);
  white-space: nowrap;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-submenu a:last-child { border-bottom: none; }
.nav-submenu a:hover { background: var(--tea-green); color: var(--cream); }

@media (max-width: 768px) {

  /* align-self:stretch —— 下拉可见后 nav-item 的 max-content 变宽，不拉满会让
     分隔线参差不齐（首页/联系我们通栏，带下拉的短一截）（2026-09-15 观察到的） */
  .nav-item.has-dropdown { flex-direction: column; align-items: stretch;
    align-self: stretch; position: relative; }
  .nav-item.has-dropdown::after { display: none; }
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    min-width: 0;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 6px;
    margin: 0;
  }

  /* 二级菜单（移动端）：菜单展开后，点父级才展开。
     ⚠ 原来只有下面那条 display:none、没有任何展开规则，
     所以移动端二级菜单永远出不来（2026-09-15 修复）。 */
  .nav-links.open .nav-item.has-dropdown > .nav-dropdown { display: none; }
  .nav-links.open .nav-item.has-dropdown.open > .nav-dropdown { display: flex; }
  .nav-item.has-dropdown > a { position: relative; padding-right: 30px; }
  /* ⚠ 覆盖左边框/底边/背景：`.nav-links a::after`（下划线）会在同一伪元素上
     下 left:0、bottom:-6px、background:#b08d57，只写 display:block 会画出金方块 */
  .nav-item.has-dropdown > a::after {
    content: ""; display: block; position: absolute;
    right: 10px; left: auto; top: 50%; bottom: auto;
    width: 0; height: 0; background: none; transform: translateY(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--tea-gold);
    border-bottom: 0;
    transition: transform .25s var(--ease);
  }
  .nav-item.has-dropdown.open > a::after { transform: translateY(-50%) rotate(180deg); }
  .nav-item.has-dropdown.open > a { color: var(--tea-green); }
  /* 三级父级（06 特色茶 / 07 山场甄选）的箭头被 `.nav-dropdown a::after{display:none}`
     一起吃掉了，移动端补回来，否则看不出后面还有一层 */
  .nav-subgroup.has-submenu > .nav-dropdown__parent { padding-right: 30px; }
  /* 三级父级（06 特色茶 / 07 山场甄选）：箭头同样要逐项覆盖几何，展开时翻转 */
  .nav-subgroup.has-submenu > .nav-dropdown__parent::after {
    content: ""; display: block; position: absolute;
    right: 10px; left: auto; top: 50%; bottom: auto;
    width: 0; height: 0; background: none; transform: translateY(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--tea-gold);
    border-bottom: 0;
    transition: transform .25s var(--ease);
  }
  .nav-subgroup.has-submenu.open > .nav-dropdown__parent::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .nav-dropdown::before {
    padding: 10px 4px 8px;
    font-size: 12px;
    letter-spacing: 3px;
  }
  .nav-dropdown::after { display: none; }

  .nav-item.has-dropdown:hover .nav-dropdown,
  .nav-item.has-dropdown:focus-within .nav-dropdown { transform: none !important; position: static !important; left: auto !important; top: auto !important; width: 100% !important; min-width: 0 !important; }
  .nav-dropdown a { color: var(--ink); border-bottom-color: rgba(47,74,60,0.12);
    padding: 11px 6px 11px 20px; font-size: 14px; }
  .nav-dropdown a:hover { background: rgba(47,74,60,0.06); color: var(--tea-green); }
  .nav-subgroup { position: static; }
  .nav-dropdown__parent::after { border-left-color: var(--tea-gold); right: 4px; }
  .nav-submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    min-width: 0;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 22px;
    margin: 0;
  }
  .nav-subgroup.open .nav-submenu { display: block; }
  .nav-submenu a { color: var(--ink); opacity: 0.82; padding: 10px 6px 10px 20px;
    font-size: 14px; border-bottom-color: rgba(47,74,60,0.1); }
  .nav-submenu a:hover { background: rgba(47,74,60,0.06); color: var(--tea-green); }
}

/* 单行标题/口号：不换行 + 移动端自适应（2026-09-12） */
.footer__bottom span { white-space: nowrap; }
@media (max-width: 768px) {
  .hero h1 .hero-title { font-size: 20px; letter-spacing: 1px; }
  .footer__bottom span { font-size: 12px; }
}
@media (max-width: 380px) {
  .hero h1 .hero-title { font-size: 16px; letter-spacing: 0.5px; }
  .intro__text h2 { font-size: 20px; letter-spacing: 0.5px; }
}

/* ============================================================
   首页 Hero · 茶山影像轮播（2026-09-14 四改：改为「连续滚动」）
   中间一张大卡，左右各两级渐次缩小、变暗（cover-flow）。
   卡位由 JS 逐帧推进（--flow 秒 / 张），速度带正弦调制 →
   一直在动、滑到正中时自动减速，看着像一条不断流动的片子。
   支持：左右箭头 / 圆点 / 点两侧小卡 / 鼠标拖拽 / 触摸横滑 / ← → 方向键；
   悬停、键盘聚焦、拖拽中、切到后台、滚出视口均暂停。
   尺寸只由 --cw 一处控制，间距与缩放均按 --cw 比例推算 → 各断点一致。
   ============================================================ */
.hero__carousel {
  /* 中间大卡宽（高 = cw × 2/3）。2026-09-14：由「固定断点阶梯」改为视口公式——
     去掉圆点后腾出的空间全给照片，同时保证大卡永远塞得进首屏（cue 不被挤出屏幕）。
     440px = 主标题 60 + gap 56 + stage 余量 56 + caption 23 + gap 22 + 上下 padding 216 的安全余量。 */
  --cw: clamp(260px, min(50vw, calc((100vh - 420px) * 1.5)), 680px);
  --x1: .78; --x2: 1.32; --x3: 1.72;        /* 两侧各级中心偏移（× cw） */
  --s1: .70; --s2: .48; --s3: .33;          /* 两侧各级缩放 */
  --o1: .86; --o2: .66; --o3: .40;          /* 两侧各级不透明度 */
  --m1: .16; --m2: .30; --m3: .50;          /* 两侧各级压暗（::after 遮罩） */
  --flow: 3.2s;                             /* 连续滚动：每前进 1 张的秒数 */
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.hero__stage {
  position: relative;
  height: calc(var(--cw) * 0.6667 + 56px);  /* 卡片高 + 投影余量 */
  overflow: hidden;
  touch-action: pan-y;                      /* 竖滑照常翻页，横滑留给轮播 */
  outline: none;
}
.hero__slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--cw);
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: #14130e;
  box-shadow: 0 20px 46px rgba(0, 0, 0, .42);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  transition: transform .78s cubic-bezier(.22, .61, .36, 1), opacity .6s ease,
              filter .6s ease, box-shadow .6s ease;
  will-change: transform, opacity;
}
.hero__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;                     /* 让 pointerdown 落在 figure 上，避免图片原生拖拽 */
}

/* 压暗遮罩 + 正中金描边：都取自定义属性，JS 逐帧插值 → 连续滚动时不会跳变。
   遮罩压暗替代原来的 filter，避免逐帧改 filter 造成重绘卡顿。 */
.hero__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #0d0c08;
  opacity: var(--dim, 0);
  transition: opacity .6s ease;
  pointer-events: none;
}
.hero__slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(201, 169, 106, .62);
  opacity: var(--ring, 0);
  pointer-events: none;
}

/* 距离档位：没 JS 时的静态降级；有 JS 时这些值全部由行内样式逐帧插值覆盖。
   z-index 一律 < 20，保证左右箭头（z-index:20）永远压在小卡上面。 */
.hero__slide.is-d0 { z-index: 19; opacity: 1; --dim: 0; --ring: 1; pointer-events: auto; cursor: default; }
.hero__slide.is-d1 { z-index: 16; opacity: var(--o1); --dim: var(--m1); --ring: 0; pointer-events: auto; cursor: pointer; }
.hero__slide.is-d2 { z-index: 13; opacity: var(--o2); --dim: var(--m2); --ring: 0; pointer-events: auto; cursor: pointer; }
.hero__slide.is-d3 { z-index: 10; opacity: var(--o3); --dim: var(--m3); --ring: 0; }
.hero__slide.is-d4 { z-index: 7; opacity: 0; --dim: .85; --ring: 0; }

.hero__slide.is-d1.is-right { transform: translate(-50%, -50%) translateX(calc(var(--cw) *  var(--x1))) scale(var(--s1)); }
.hero__slide.is-d1.is-left  { transform: translate(-50%, -50%) translateX(calc(var(--cw) * var(--x1) * -1)) scale(var(--s1)); }
.hero__slide.is-d2.is-right { transform: translate(-50%, -50%) translateX(calc(var(--cw) *  var(--x2))) scale(var(--s2)); }
.hero__slide.is-d2.is-left  { transform: translate(-50%, -50%) translateX(calc(var(--cw) * var(--x2) * -1)) scale(var(--s2)); }
.hero__slide.is-d3.is-right { transform: translate(-50%, -50%) translateX(calc(var(--cw) *  var(--x3))) scale(var(--s3)); }
.hero__slide.is-d3.is-left  { transform: translate(-50%, -50%) translateX(calc(var(--cw) * var(--x3) * -1)) scale(var(--s3)); }
.hero__slide.is-d4.is-right { transform: translate(-50%, -50%) translateX(calc(var(--cw) *  2.05)) scale(.2); }
.hero__slide.is-d4.is-left  { transform: translate(-50%, -50%) translateX(calc(var(--cw) * -2.05)) scale(.2); }

/* 两侧小卡悬停：金色细描边提示「可点」（不用 filter，免得和逐帧插值打架） */
.hero__slide.is-d1:hover,
.hero__slide.is-d2:hover { box-shadow: 0 18px 44px rgba(0, 0, 0, .5), 0 0 0 1px rgba(201, 169, 106, .55); }

/* 左右箭头：默认描边态，悬停/聚焦填金（与全站按钮规范一致） */
.hero__nav {
  position: absolute;
  top: 50%;
  z-index: 20;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(240, 233, 216, .42);
  border-radius: 50%;
  background: rgba(20, 19, 14, .34);
  color: rgba(255, 255, 255, .92);
  cursor: pointer;
  transform: translateY(-50%);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.hero__nav:hover, .hero__nav:focus-visible {
  background: var(--tea-gold-soft);
  border-color: var(--tea-gold-soft);
  color: #1f3328;
  transform: translateY(-50%) scale(1.06);
}
.hero__nav:focus-visible { outline: 2px solid var(--tea-gold-soft); outline-offset: 3px; }
.hero__nav--prev { left: max(22px, calc(50% - var(--cw) * 1.16)); }
.hero__nav--next { right: max(22px, calc(50% - var(--cw) * 1.16)); }
.hero__nav svg { width: 20px; height: 20px; }

/* 大卡下方的照片名（随切换更新） */
.hero__caption {
  margin: 14px 0 0;
  min-height: 20px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 2.5px;
  color: rgba(255, 255, 255, .62);
  transition: opacity .35s ease;
}
.hero__caption.is-fading { opacity: 0; }

/* 圆点：当前项拉长为小金条 */
.hero__dots { display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: nowrap; }
.hero__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 1px solid rgba(240, 233, 216, .5);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: width .35s ease, background .3s ease, border-color .3s ease;
}
.hero__dot:hover { border-color: var(--tea-gold-soft); }
.hero__dot.is-active { width: 22px; background: var(--tea-gold-soft); border-color: var(--tea-gold-soft); }
.hero__dot:focus-visible { outline: 2px solid var(--tea-gold-soft); outline-offset: 3px; }

/* 2026-09-14：PC 端隐藏圆点（18 颗小圆点在宽屏里既碎又占一行纵向空间），
   把空间让给照片；移动端保留圆点当页码。 */
@media (min-width: 641px) {
  .hero__dots { display: none; }
}

/* --cw 已由 .hero__carousel 顶部的视口公式自动适配，这里不再写死阶梯 */

@media (max-width: 768px) {
  .hero { gap: 34px; padding: 88px 0 112px; }
  .hero__carousel {
    --cw: 82vw;
    --x1: .68; --x2: 1.10; --x3: 1.44;
    --s1: .68; --s2: .44; --s3: .28;
    gap: 18px;
  }
  .hero__stage { height: calc(var(--cw) * 0.6667 + 40px); }
  .hero__nav { width: 38px; height: 38px; border-color: rgba(240, 233, 216, .55); background: rgba(20, 19, 14, .48); }
  .hero__nav--prev { left: 8px; }
  .hero__nav--next { right: 8px; }
  .hero__nav svg { width: 17px; height: 17px; }
  .hero__dots { gap: 7px; }
  .hero__caption { font-size: 12px; letter-spacing: 1.5px; }
  .hero__dot { width: 6px; height: 6px; }
  .hero__dot.is-active { width: 18px; }
}
/* 手机矮屏（小屏 / 横屏 / 地址栏占位多）：再收一档，保证提示完整露出 */
@media (max-width: 768px) and (max-height: 720px) {
  .hero { gap: 28px; padding: 86px 0 110px; }
  .hero__carousel { --cw: 74vw; }
}
/* 矮屏（笔记本）：只收留白与间距，大卡尺寸交给 --cw 公式自己缩。
   底部 padding 一律 >=116px —— 这是「不与向下浏览提示叠加」的硬保证。 */
@media (min-width: 641px) and (max-height: 830px) {
  .hero { gap: 48px; padding: 90px 0 118px; }
}
@media (min-width: 641px) and (max-height: 750px) {
  .hero { gap: 44px; padding: 86px 0 116px; }
}
@media (min-width: 641px) and (max-height: 700px) {
  .hero { gap: 38px; padding: 84px 0 116px; }
}
@media (min-width: 641px) and (max-height: 650px) {
  .hero { gap: 32px; padding: 80px 0 116px; }
}
/* 交给 JS 逐帧绘制之后关掉 CSS 过渡，避免「过渡 + 逐帧」两套动画互相拖后腿 */
.hero__carousel.is-live .hero__slide,
.hero__carousel.is-live .hero__slide::before,
.hero__carousel.is-live .hero__slide::after { transition: none; }

@media (prefers-reduced-motion: reduce) {
  .hero__slide { transition-duration: .01s; }
}


/* ══════════════ 移动端排版修正（2026-09-14，全站收口） ══════════════
   症状一：26~36px 的标题配 2~4px 字距，在 390px 屏里 11 个字就折行。
           改法：字号/字距随视口线性收缩（390px→19.1px，320px→15.7px），
                 ≤16 字的标题稳定排成一行；真正长标题才允许折行。
   症状二：部分 640px 的「单列」规则被文件后半段的 980px 规则按源码顺序反超，
           手机上仍按 2~4 列排，文字被压成一字一行的竖排。
           改法：所有单列规则在文件最末重新钉死一次，源码顺序再也反超不了。
   ⚠️ 本块必须留在文件末尾。 */
@media (max-width: 768px) {
  /* —— 标题 —— */
  .section-head h2,
  .section-head__title,
  .garden-page-hero h1,
  .page-hero h1,
  .story__text h2,
  .intro__text h2,
  .cta-band h2,
  .contact-info h2 {
    font-size: clamp(16px, 4.9vw, 20px);
    letter-spacing: .5px;
    line-height: 1.5;
  }
  .intro__text h2,
  .intro__text .signature { white-space: normal; }

  /* —— 一律单列 —— */
  .gardens-grid,
  .garden-grid,
  .garden-info,
  .garden-photos,
  .garden-photos--1,
  .garden-photos--2,
  .garden-photos--3,
  .base-grid,
  .plan-grid,
  .benefit-grid,
  .process-list,
  .tour-grid,
  .bg-grid,
  .card-grid,
  .prod-grid,
  .svc-grid,
  .honor-grid,
  .adv-grid,
  .stats__grid,
  .care-grid,
  .care-grid--4 {
    grid-template-columns: 1fr;
  }
  /* 规格小卡文字很短，两列更省版面 */
  /* 「规格小卡文字很短，两列更省版面」这条在 320px 档不成立：
     两列后卡内只剩 88px，环保/工艺那种长句子会被压成每行 4 个字。
     改成 auto-fit + 150px 下限，宽度够就两列、不够自动落回一列。 */
  .garden-specs { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }

  /* 页脚版权行/口号行：`.footer__bottom span{white-space:nowrap}` 在窄屏会把
     文档撑到 369px（320/360 屏直接横向出滚动条）→ 手机上允许折行。 */
  .footer__bottom { justify-content: flex-start; }
  .footer__bottom span { white-space: normal; }

  /* 茶园页正文主标题：20 个字以内稳定一行（390px 下 16.8px） */
  .garden-info__body .section-head__title {
    font-size: clamp(16px, 4.3vw, 20px);
    letter-spacing: .5px;
    line-height: 1.5;
  }
}

/* ══════════ 图片版权保护（2026-09-20）══════════
   仅提高获取门槛：禁用图片拖拽、禁用 iOS 长按「存储图像」菜单、禁用图片选中。
   ⚠ 必须清楚：渲染到浏览器的图片本质上可被取得（开发者工具 / 网络面板 / 直接请求 URL），
   前端手段挡不住有技术的人。真正有效的是服务端防盗链（挡外站热链）与图片水印。 */
img { -webkit-user-drag: none; user-drag: none; -webkit-touch-callout: none; user-select: none; }
