/* ==========================================================================
   勐海傅鼎记茶业 - 设计系统「森林茶韵」
   WordPress 主题样式
   ========================================================================== */

/* ---- CSS 变量：设计令牌 ---- */
:root {
  /* 色彩 - 主色 */
  --tea-deep: #2f4a32;      /* 深茶绿 */
  --tea-primary: #3d5a3f;   /* 茶绿 */
  --tea-mist: #6b8a6b;      /* 雾茶绿 */
  --tea-light: #e8efe5;     /* 浅茶 */

  /* 色彩 - 大地 */
  --earth: #8b6f47;         /* 大地棕 */
  --earth-light: #b89878;   /* 浅大地 */
  --earth-bg: #f5efe4;      /* 米白底 */

  /* 色彩 - 金 */
  --gold: #b8923f;          /* 金 */
  --gold-light: #d4b86a;    /* 浅金 */

  /* 中性 */
  --cream: #faf7f0;         /* 奶白 */
  --paper: #fffdf8;         /* 纸白 */
  --ink: #2a2520;           /* 墨 */
  --ink-soft: #5a5249;      /* 软墨 */
  --ink-mute: #8a8278;      /* 灰墨 */
  --line: #e6dfd2;          /* 分割线 */

  /* 字体 */
  --font-serif: "Noto Serif SC", "Songti SC", "STSong", "SimSun", serif;
  --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", sans-serif;

  /* 阴影 */
  --shadow-sm: 0 1px 3px rgba(42, 37, 32, 0.06);
  --shadow-md: 0 6px 24px rgba(42, 37, 32, 0.08);
  --shadow-lg: 0 16px 48px rgba(42, 37, 32, 0.12);

  /* 圆角 */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;

  /* 间距 */
  --container: 1200px;
  --nav-h: 76px;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .3s ease; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* WordPress 顶部管理栏偏移补偿 */
body.admin-bar .navbar { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .navbar { top: 46px; }
}

/* ---- 排版 ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

p { color: var(--ink-soft); }

.lead { font-size: 1.15rem; line-height: 1.8; color: var(--ink-soft); }

/* 章节标签 */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* 章节标题 */
.section-title {
  text-align: center;
  margin-bottom: 14px;
}
.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}
.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--gold);
}
.section-title .sub {
  margin-top: 18px;
  color: var(--ink-mute);
  font-size: 0.95rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- 布局容器 ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }

/* ---- 按钮 ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--r-sm);
  transition: all .35s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--tea-deep);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--tea-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--tea-deep);
  border: 1.5px solid var(--tea-deep);
}
.btn-outline:hover {
  background: var(--tea-deep);
  color: var(--cream);
}
.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover {
  background: #a07e36;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  color: var(--tea-deep);
  padding: 10px 0;
}
.btn-ghost:hover { color: var(--gold); }
.btn-ghost .arrow { transition: transform .3s ease; }
.btn-ghost:hover .arrow { transform: translateX(6px); }

/* ==========================================================================
   导航栏
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: all .35s ease;
}
.navbar.scrolled {
  background: rgba(250, 247, 240, 0.96);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--tea-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
}
.brand-text { line-height: 1.2; }
.brand-text .name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.03em;
}
.brand-text .en {
  font-size: 0.68rem;
  color: var(--ink-mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: 16px;
}
.nav-links li { list-style: none; }
.nav-links a {
  position: relative;
  padding: 10px 16px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  font-weight: 500;
}
@media (max-width: 1100px) {
  .nav-links a { padding: 10px 12px; font-size: 0.9rem; }
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--tea-deep);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 20px;
}

/* ===== 主导航下拉子菜单（看山▾ / 买茶▾ / 关于傅鼎记▾ / 找浩玺师兄▾） ===== */
.nav-links li { position: relative; }
.nav-links li a { white-space: nowrap; }
.nav-links .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 224px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: 0 16px 36px rgba(47, 74, 50, 0.14);
  z-index: 1100;
}
.nav-links li:hover > .sub-menu,
.nav-links li:focus-within > .sub-menu {
  display: block;
}
.nav-links .sub-menu li { width: 100%; }
.nav-links .sub-menu li a {
  display: block;
  padding: 11px 20px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.nav-links .sub-menu li a::after { display: none; }
.nav-links .sub-menu li a:hover,
.nav-links .sub-menu li a.active {
  background: var(--tea-light);
  color: var(--tea-deep);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--tea-deep);
  color: var(--cream);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all .3s ease;
}
.nav-cta:hover { background: var(--tea-primary); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 10px;
}
.nav-toggle .bars {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.nav-toggle .bars span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: all .3s ease;
}
.nav-toggle.active .bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.active .bars span:nth-child(2) { opacity: 0; }
.nav-toggle.active .bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.nav-toggle-label {
  display: none;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: 0.05em;
  line-height: 1;
}

/* 桌面端默认隐藏移动端菜单 */
.nav-mobile { display: none; }

/* ==========================================================================
   页脚
   ========================================================================== */
.footer {
  background: var(--ink);
  color: rgba(250, 247, 240, 0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand .brand-mark { background: var(--gold); color: var(--ink); }
.footer-brand .brand-text .name { color: var(--cream); }
.footer-brand p {
  color: rgba(250, 247, 240, 0.55);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 320px;
}
.footer-col h4 {
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 22px;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  color: rgba(250, 247, 240, 0.6);
  font-size: 0.9rem;
  transition: all .25s ease;
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: rgba(250, 247, 240, 0.6);
}
.footer-contact .ic {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-bottom {
  border-top: 1px solid rgba(250, 247, 240, 0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(250, 247, 240, 0.45);
}
.footer-bottom .links { display: flex; gap: 20px; }
.footer-bottom .links a:hover { color: var(--gold-light); }

/* ==========================================================================
   通用组件
   ========================================================================== */

/* 卡片 */
.card {
  background: var(--paper);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--earth-light);
}

/* 图片占位（用渐变模拟茶相关意象） */
.ph {
  position: relative;
  overflow: hidden;
  background: var(--tea-light);
}
.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 20%, rgba(255,255,255,.15), transparent 40%);
}

/* 茶园意象渐变 */
.grad-forest {
  background:
    linear-gradient(135deg, rgba(45,74,50,.92), rgba(61,90,63,.85)),
    radial-gradient(circle at 70% 30%, rgba(184,146,63,.3), transparent 50%);
}
.grad-mountain {
  background:
    linear-gradient(160deg, #3d5a3f 0%, #6b8a6b 50%, #b89878 100%);
}
.grad-tea {
  background: linear-gradient(135deg, #3d5a3f, #2f4a32);
}
.grad-warm {
  background: linear-gradient(135deg, #8b6f47, #b8923f);
}
.grad-cream {
  background: linear-gradient(180deg, #faf7f0, #f5efe4);
}

/* SVG 图案背景：茶叶纹理 */
.pattern-leaves {
  background-color: var(--tea-deep);
  background-image:
    radial-gradient(circle at 20% 50%, rgba(184,146,63,.12) 0%, transparent 25%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.06) 0%, transparent 30%);
}

/* 页面顶部横幅 */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 64px;
  background: var(--tea-deep);
  color: var(--cream);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 25%, rgba(184,146,63,.25), transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(107,138,107,.3), transparent 40%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--cream);
  margin-bottom: 16px;
}
.page-hero .crumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(250,247,240,.85);
  margin-bottom: 20px;
}
.page-hero .crumb a:hover { color: var(--gold-light); }
.page-hero .lead {
  color: rgba(250,247,240,.95);
  max-width: 600px;
  text-shadow: 0 1px 4px rgba(0,0,0,.25);
}
.page-hero .lead p,
.page-hero .lead * { color: inherit !important; }

/* 装饰性分隔 */
.divider-leaf {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px 0;
}
.divider-leaf::before, .divider-leaf::after {
  content: "";
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--line);
}
.divider-leaf .leaf {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ==========================================================================
   动画
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* ==========================================================================
   新增组件：Hero 轮播 / 品牌板块 / 多表单切换 / 合作客户
   ========================================================================== */

/* ---- Hero 轮播 ---- */
.carousel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--tea-deep);
}
.carousel-track {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
}
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s;
  background-size: cover;
  background-position: center;
}
.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20,33,22,.78) 0%, rgba(31,53,34,.55) 55%, rgba(31,53,34,.3) 100%);
}
.slide .slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 60px;
}
.slide .eyebrow { color: var(--gold-light); }
.slide .eyebrow::before { background: var(--gold-light); }
.slide h1 {
  color: var(--cream);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.22;
  margin: 18px 0 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
/* 桌面端保证 h1 内一句为一排：只有 <br> 才换行 */
@media (min-width: 769px) {
  .slide h1 { white-space: nowrap; }
}
/* 移动端允许自然换行，避免溢出屏幕 */
@media (max-width: 768px) {
  .slide h1 { font-size: clamp(1.8rem, 6vw, 2.6rem); line-height: 1.34; }
}
.slide .slide-sub {
  color: rgba(250,247,240,.85);
  font-size: clamp(1rem,1.6vw,1.25rem);
  max-width: 580px;
  margin-bottom: 38px;
  line-height: 1.8;
}
.slide-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.slide-actions .btn-gold { background: var(--gold); color: #fff; }
.slide-actions .btn-gold:hover { background: #a07e36; }
.slide-actions .btn-outline {
  color: var(--cream);
  border: 1.5px solid rgba(250,247,240,.5);
}
.slide-actions .btn-outline:hover {
  background: rgba(250,247,240,.12);
  border-color: var(--cream);
}
/* 轮播指示点 */
.carousel-dots {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}
.carousel-dots button {
  width: 36px; height: 4px;
  border-radius: 2px;
  background: rgba(250,247,240,.35);
  cursor: pointer;
  transition: all .4s ease;
  padding: 0;
}
.carousel-dots button.active {
  background: var(--gold);
  width: 56px;
}
/* 轮播箭头 */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(250,247,240,.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(250,247,240,.3);
  color: var(--cream);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
}
.carousel-arrow:hover { background: rgba(184,146,63,.7); border-color: var(--gold); }
.carousel-arrow.prev { left: 28px; }
.carousel-arrow.next { right: 28px; }
@media (max-width: 768px) {
  .carousel-arrow { display: none; }
  .carousel-track { height: 92vh; min-height: 560px; }
  .carousel-dots { bottom: 28px; }
}

/* ---- 三大自有品牌板块 ---- */
.brand-series {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.series-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: 36px;
  color: var(--cream);
  cursor: pointer;
  transition: transform .4s ease, box-shadow .4s ease;
  isolation: isolate;
}
.series-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.series-card .bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  transition: transform .6s ease;
}
.series-card:hover .bg { transform: scale(1.06); }
.series-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20,33,22,.1) 30%, rgba(20,33,22,.85));
}
.series-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  background: rgba(184,146,63,.18);
  border: 1px solid rgba(184,146,63,.4);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.series-card h3 {
  color: var(--cream);
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.series-card p {
  color: rgba(250,247,240,.8);
  font-size: 0.92rem;
  line-height: 1.8;
}
.series-bg-pu { background: linear-gradient(160deg, #1f3522, #3d5a3f 60%, #6b8a6b); }
.series-bg-cai { background: linear-gradient(160deg, #8b6f47, #b8923f 60%, #d4b86a); }
.series-bg-suo { background: linear-gradient(160deg, #2f4a32, #6b8a6b 50%, #b89878); }

/* ---- 合作客户区 ---- */
.partners-section { background: var(--earth-bg); }
.partners-marquee {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}
.partner-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 40px;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: all .3s ease;
}
.partner-chip:hover {
  border-color: var(--earth-light);
  color: var(--tea-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.partner-chip .ic {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--tea-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tea-deep);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ---- 多表单切换 ---- */
.form-tabs {
  display: flex;
  background: var(--earth-bg);
  border-radius: var(--r-md);
  padding: 6px;
  margin-bottom: 32px;
  gap: 4px;
}
.form-tab {
  flex: 1;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .3s ease;
  text-align: center;
}
.form-tab:hover { color: var(--tea-deep); }
.form-tab.active {
  background: var(--tea-deep);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.form-panel { display: none; }
.form-panel.active { display: block; animation: fadeUp .5s ease; }

/* ---- 资质展示网格 ---- */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.cert-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 20px;
  text-align: center;
  transition: all .35s ease;
}
.cert-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--earth-light); }
.cert-item .cert-ph {
  aspect-ratio: 3/4;
  background: var(--earth-bg);
  border-radius: var(--r-sm);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--earth-light);
  font-size: 0.8rem;
  border: 1px dashed var(--earth-light);
}
.cert-item h4 { font-size: 0.98rem; margin-bottom: 4px; }
.cert-item p { font-size: 0.8rem; color: var(--ink-mute); }
@media (max-width: 768px) {
  .brand-series { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(2,1fr); }
  .form-tabs { flex-direction: column; }
}

/* ==========================================================================
   WordPress 默认样式适配
   ========================================================================== */
.wp-block-image img { height: auto; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--ink-mute); text-align: center; margin-top: 0.5rem; }
.screen-reader-text { position: absolute; left: -9999px; }

/* ==========================================================================
   响应式
   ========================================================================== */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle {
    display: inline-flex;
    height: 40px;
    padding: 0 12px;
    gap: 6px;
  }
  .nav-toggle-label { display: inline; }

  /* 移动端菜单 */
  .nav-mobile {
    display: block;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    bottom: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 28px;
    transform: translateY(-120%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
    z-index: 999;
    box-shadow: var(--shadow-md);
    overflow-y: auto;
  }
  .nav-mobile.open { transform: translateY(0); }
  .nav-mobile ul,
  .nav-mobile li { list-style: none; margin: 0; padding: 0; }
  .nav-mobile li:before,
  .nav-mobile li:after { content: none; display: none; }
  .nav-mobile a {
    display: block;
    padding: 14px 0;
    font-size: 1.05rem;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }
  .nav-mobile a:last-child { border-bottom: none; }
  .nav-mobile a.active { color: var(--gold); }

  /* 移动端：子菜单直接展开（缩进显示，无悬停态） */
  .nav-mobile .sub-menu {
    display: block;
    margin: 0 0 6px;
    padding-left: 16px;
    border-left: 2px solid var(--line);
  }
  .nav-mobile .sub-menu li a {
    padding: 11px 0;
    font-size: 0.98rem;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; text-align: left; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ===== 新闻模块（page-news / archive / single 共用） ===== */
.featured-news { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; margin-bottom: 56px; }
.featured-main { border-radius: var(--r-lg); overflow: hidden; position: relative; min-height: 420px; background: linear-gradient(160deg, #2f4a32, #3d5a3f 50%, #6b8a6b); display: flex; align-items: flex-end; cursor: pointer; transition: transform .4s ease; text-decoration: none; }
.featured-main:hover { transform: translateY(-4px); }
.featured-main::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(31,53,34,.88)); }
.featured-main .fm-content { position: relative; z-index: 1; padding: 40px; color: var(--cream); }
.featured-main .cat { display: inline-block; background: var(--gold); color: #fff; font-size: 0.72rem; padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; letter-spacing: 0.1em; }
.featured-main h2 { color: var(--cream); font-size: 1.7rem; margin-bottom: 12px; }
.featured-main p { color: rgba(250,247,240,.8); font-size: 0.92rem; }
.featured-main .date { color: rgba(250,247,240,.6); font-size: 0.82rem; margin-top: 12px; }

.featured-side { display: flex; flex-direction: column; gap: 20px; }
.fs-item { display: grid; grid-template-columns: 120px 1fr; gap: 18px; padding: 18px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); cursor: pointer; transition: all .3s ease; text-decoration: none; color: inherit; }
.fs-item:hover { border-color: var(--earth-light); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.fs-thumb { aspect-ratio: 1/1; border-radius: var(--r-sm); overflow: hidden; }
.fs-info .cat { font-size: 0.72rem; color: var(--gold); font-weight: 600; letter-spacing: 0.1em; }
.fs-info h4 { font-size: 1rem; margin: 6px 0; line-height: 1.4; color: var(--ink); }
.fs-info .date { font-size: 0.78rem; color: var(--ink-mute); }

.news-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.news-filters a { padding: 9px 24px; border-radius: 30px; background: var(--paper); border: 1px solid var(--line); color: var(--ink-soft); font-size: 0.92rem; font-weight: 500; cursor: pointer; transition: all .3s ease; text-decoration: none; }
.news-filters a:hover { border-color: var(--earth-light); color: var(--tea-deep); }
.news-filters a.active { background: var(--tea-deep); color: var(--cream); border-color: var(--tea-deep); }

.news-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; cursor: pointer; transition: all .4s cubic-bezier(.4,0,.2,1); display: block; text-decoration: none; color: inherit; }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--earth-light); }
.news-thumb { aspect-ratio: 16/10; position: relative; overflow: hidden; }
.news-thumb .visual { position: absolute; inset: 0; transition: transform .6s ease; display: flex; align-items: center; justify-content: center; }
.news-card:hover .news-thumb .visual { transform: scale(1.05); }
.news-thumb .visual .char { font-family: var(--font-serif); font-size: 3rem; color: rgba(255,255,255,.3); font-weight: 700; }
.news-thumb .cat-badge { position: absolute; top: 14px; left: 14px; background: rgba(250,247,240,.95); color: var(--tea-deep); font-size: 0.72rem; padding: 4px 12px; border-radius: 20px; font-weight: 600; z-index: 2; }
.news-body { padding: 22px; }
.news-body .date { font-size: 0.8rem; color: var(--ink-mute); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.news-body .date::before { content: ""; width: 16px; height: 1px; background: var(--gold); }
.news-body h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.45; transition: color .3s ease; color: var(--ink); }
.news-card:hover .news-body h3 { color: var(--tea-deep); }
.news-body p { font-size: 0.86rem; color: var(--ink-mute); line-height: 1.7; margin-bottom: 16px; }
.news-body .more { color: var(--gold); font-size: 0.85rem; font-weight: 500; }
.news-body .more .arrow { transition: transform .3s ease; }
.news-card:hover .news-body .more .arrow { transform: translateX(4px); }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.pagination .page-numbers { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: var(--r-sm); font-size: 0.92rem; color: var(--ink-soft); background: var(--paper); transition: all .3s ease; text-decoration: none; }
.pagination .page-numbers:hover { border-color: var(--earth-light); color: var(--tea-deep); }
.pagination .page-numbers.current { background: var(--tea-deep); color: var(--cream); border-color: var(--tea-deep); }

/* 文章详情页（single.php） */
.single-article { max-width: 860px; margin: 0 auto; }
.single-article .sa-header { text-align: center; margin-bottom: 48px; }
.single-article .sa-header .cat { display: inline-block; background: rgba(184,146,63,.1); color: var(--gold); font-size: 0.78rem; padding: 5px 16px; border-radius: 20px; margin-bottom: 18px; letter-spacing: 0.12em; text-decoration: none; }
.single-article .sa-header h1 { font-size: 2.2rem; line-height: 1.35; margin-bottom: 16px; }
.single-article .sa-header .meta { color: var(--ink-mute); font-size: 0.9rem; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.single-article .sa-content { font-size: 1rem; line-height: 2; color: var(--ink-soft); }
.single-article .sa-content h2, .single-article .sa-content h3 { color: var(--ink); margin: 32px 0 16px; line-height: 1.5; }
.single-article .sa-content img { max-width: 100%; height: auto; border-radius: var(--r-md); margin: 20px 0; }
.single-article .sa-content p { margin-bottom: 18px; }
.single-article .sa-content ul, .single-article .sa-content ol { margin: 0 0 18px 24px; }
.single-article .sa-content blockquote { border-left: 4px solid var(--gold); background: var(--earth-bg); padding: 16px 24px; margin: 20px 0; border-radius: 0 var(--r-sm) var(--r-sm) 0; color: var(--ink); font-family: var(--font-serif); }
.sa-tags { margin-top: 36px; display: flex; gap: 8px; flex-wrap: wrap; }
.sa-tags a { font-size: 0.78rem; padding: 5px 14px; background: var(--earth-bg); color: var(--earth); border-radius: 20px; text-decoration: none; }
.sa-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--line); }
.sa-nav a { padding: 20px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); text-decoration: none; transition: all .3s ease; }
.sa-nav a:hover { border-color: var(--earth-light); transform: translateY(-2px); }
.sa-nav .dir { font-size: 0.75rem; color: var(--ink-mute); letter-spacing: 0.1em; }
.sa-nav .t { font-size: 0.95rem; color: var(--ink); margin-top: 6px; line-height: 1.5; }
.sa-nav a.next { text-align: right; }

@media (max-width: 980px) {
  .featured-news { grid-template-columns: 1fr; }
  .news-list { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .news-list { grid-template-columns: 1fr; }
  .fs-item { grid-template-columns: 90px 1fr; gap: 14px; }
  .featured-main .fm-content { padding: 28px; }
  .featured-main h2 { font-size: 1.35rem; }
  .single-article .sa-header h1 { font-size: 1.6rem; }
  .sa-nav { grid-template-columns: 1fr; }
  .sa-nav a.next { text-align: left; }
}

/* ===== WordPress 菜单结构适配（wp_nav_menu 输出 ul > li > a） ===== */
.nav-links ul,
.nav-links > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links li { margin: 0; padding: 0; }
.nav-links li a { padding: 10px 18px; }
.nav-mobile ul,
.nav-mobile li { list-style: none; margin: 0; padding: 0; }
.nav-mobile li:before,
.nav-mobile li:after { content: none; display: none; }
.nav-mobile li a { padding: 14px 0; }
/* 顶级栏目带下拉时，桌面端子菜单默认隐藏，悬停/聚焦展开（移动端在下方媒体查询中展开） */
.nav-links .sub-menu { display: none; }

/* 空状态提示 */
.empty-state { text-align: center; padding: 80px 0; color: var(--ink-mute); }
.empty-state p { font-size: 1.05rem; margin-bottom: 20px; }

/* ============================================================
 * 茶山影像 · 视频模块
 * ============================================================ */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.video-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--earth-light);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--earth-bg);
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.05); }

.video-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-thumb-placeholder .char {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(255,255,255,.35);
  font-weight: 700;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31,53,34,.25);
  opacity: 0;
  transition: opacity .3s ease;
}
.video-card:hover .video-play-overlay { opacity: 1; }
.play-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(250,247,240,.95);
  color: var(--tea-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transform: scale(.8);
  transition: transform .3s ease;
}
.video-card:hover .play-icon { transform: scale(1); }

.video-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(250,247,240,.95);
  color: var(--tea-deep);
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  z-index: 2;
}

.video-body { padding: 18px 20px; }
.video-title {
  font-size: 1.02rem;
  line-height: 1.5;
  margin-bottom: 10px;
  color: var(--ink);
  transition: color .3s ease;
  /* 限制两行 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-card:hover .video-title { color: var(--tea-deep); }
.video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--ink-mute);
}
.video-date { display: flex; align-items: center; gap: 8px; }
.video-date::before { content: ""; width: 16px; height: 1px; background: var(--gold); }
.video-duration {
  background: var(--earth-bg);
  color: var(--earth);
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.72rem;
}

/* 空状态 */
.video-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--ink-mute);
}
.video-empty-icon { color: var(--earth-light); margin-bottom: 24px; }
.video-empty h3 { font-size: 1.5rem; color: var(--ink); margin-bottom: 14px; }
.video-empty p { font-size: 0.96rem; max-width: 480px; margin: 0 auto 28px; line-height: 1.8; }

/* 视频模态播放器 */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal.active {
  display: flex;
  animation: videoFadeIn .25s ease;
}
@keyframes videoFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,25,17,.92);
  backdrop-filter: blur(4px);
}
.video-modal-wrap {
  position: relative;
  width: 100%;
  max-width: 960px;
  z-index: 1;
  animation: videoSlideUp .3s ease;
}
@keyframes videoSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.video-modal-content {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.video-modal-content iframe,
.video-modal-content video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(250,247,240,.15);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease;
}
.video-modal-close:hover { background: rgba(250,247,240,.3); }

@media (max-width: 768px) {
  .video-grid { grid-template-columns: 1fr; }
  .video-modal-wrap { max-width: 100%; }
  .video-modal-close { top: -42px; }
}
@media (max-width: 600px) {
  .video-grid { gap: 20px; }
  .video-body { padding: 14px 16px; }
  .video-title { font-size: 0.95rem; }
}

/* ============================================================
 * FAQ 常见问题模块
 * ============================================================ */

/* 分类筛选标签 */
.faq-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.faq-filter-btn {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 8px 20px;
  font-size: 0.88rem;
  color: var(--ink-mute);
  cursor: pointer;
  transition: all .3s ease;
  font-family: var(--font-sans);
}
.faq-filter-btn:hover {
  border-color: var(--tea-light);
  color: var(--tea-deep);
}
.faq-filter-btn.active {
  background: var(--tea-deep);
  border-color: var(--tea-deep);
  color: var(--cream);
}

/* FAQ 手风琴列表 */
.faq-list { width: 100%; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.faq-item:hover {
  border-color: var(--earth-light);
  box-shadow: var(--shadow-sm);
}
.faq-item.hidden { display: none; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--tea-deep);
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: color .3s ease;
  line-height: 1.6;
}
.faq-question:hover { color: var(--gold); }
.faq-q-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--tea-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all .3s ease;
  margin-top: 1px;
}
.faq-q-icon::before,
.faq-q-icon::after {
  content: "";
  position: absolute;
  background: var(--tea-deep);
  border-radius: 2px;
  transition: all .3s ease;
}
.faq-q-icon::before { width: 12px; height: 2px; }
.faq-q-icon::after { width: 2px; height: 12px; }
.faq-item.open .faq-q-icon { background: var(--gold); }
.faq-item.open .faq-q-icon::before,
.faq-item.open .faq-q-icon::after { background: #fff; }
.faq-item.open .faq-q-icon::after { transform: scaleY(0); }
.faq-q-text { flex: 1; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq-answer-inner {
  padding: 0 28px 24px 72px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--ink-mute);
}
.faq-answer-inner p { margin-bottom: 12px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }
.faq-answer-inner strong { color: var(--tea-deep); font-weight: 600; }

@media (max-width: 768px) {
  .faq-filter { gap: 8px; }
  .faq-filter-btn { padding: 6px 14px; font-size: 0.82rem; }
  .faq-question { padding: 18px 20px; font-size: 0.98rem; gap: 12px; }
  .faq-answer-inner { padding: 0 20px 20px 60px; font-size: 0.9rem; }
}
@media (max-width: 600px) {
  .faq-answer-inner { padding: 0 20px 18px 20px; }
  .faq-q-icon { width: 24px; height: 24px; }
  .faq-q-icon::before { width: 10px; }
  .faq-q-icon::after { height: 10px; }
}

/* ===== 通用页面内容区（默认 page.php 模板，用于后台编辑的页面全文） ===== */
.page-content { max-width: 880px; margin: 0 auto; }
.page-content h2 { font-family: var(--font-serif); color: var(--tea-deep); font-size: 1.7rem; line-height: 1.45; margin: 2.2em 0 0.7em; }
.page-content h3 { font-family: var(--font-serif); color: var(--tea-deep); font-size: 1.35rem; margin: 1.8em 0 0.6em; }
.page-content p { margin-bottom: 1.25em; line-height: 1.95; color: var(--ink-soft); }
.page-content ul, .page-content ol { margin: 0 0 1.25em 1.5em; line-height: 1.95; color: var(--ink-soft); }
.page-content li { margin-bottom: 0.55em; }
.page-content strong { color: var(--tea-deep); font-weight: 600; }
.page-content figure { margin: 2.4em 0; }
.page-content figure img { width: 100%; height: auto; border-radius: var(--r-lg); box-shadow: var(--shadow-md); display: block; }
.page-content figcaption { text-align: center; margin-top: 14px; font-size: 0.88rem; color: var(--ink-mute); line-height: 1.7; }
.page-content blockquote { margin: 1.8em 0; padding: 18px 22px; background: var(--earth-bg); border-left: 3px solid var(--gold); border-radius: 0 var(--r-md) var(--r-md) 0; font-style: italic; color: var(--ink-soft); }
.page-content a { color: var(--gold); text-decoration: underline; }

@media (max-width: 768px) {
  .page-content { padding: 0 4px; }
  .page-content h2 { font-size: 1.45rem; margin-top: 1.8em; }
  .page-content h3 { font-size: 1.2rem; }
  .page-content figure { margin: 1.8em 0; }
}

/* FAQ 答案列表（答案中含项目符号时） */
.faq-answer-inner ul { list-style: disc; margin: 0 0 12px 1.4em; }
.faq-answer-inner ol { list-style: decimal; margin: 0 0 12px 1.4em; }
.faq-answer-inner li { margin-bottom: 0.5em; line-height: 1.85; }
.faq-filter { margin-bottom: 40px; }

/* FAQ 页尾 CTA（品鉴装） */
.faq-cta {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
  margin-top: 56px;
  padding: 32px;
  background: var(--earth-bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.faq-cta img { width: 100%; height: auto; border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.faq-cta-text h3 { color: var(--tea-deep); font-size: 1.4rem; margin-bottom: 12px; }
.faq-cta-text p { color: var(--ink-soft); margin-bottom: 20px; }
@media (max-width: 768px) {
  .faq-cta { grid-template-columns: 1fr; gap: 20px; padding: 24px; }
}

/* ===== 首页 GEO 核心问答（傅鼎记是谁） ===== */
.geo-intro { background: var(--paper, #faf7f0); }
.geo-qa {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 12px;
}
.geo-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 28px 26px;
  box-shadow: var(--shadow-sm);
}
.geo-item h3 {
  font-family: var(--font-serif);
  color: var(--tea-deep);
  font-size: 1.2rem;
  margin-bottom: 12px;
  line-height: 1.4;
  position: relative;
  padding-left: 16px;
}
.geo-item h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 2px;
  background: var(--gold);
}
.geo-item p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.85;
  margin: 0;
}
.geo-item strong { color: var(--tea-deep); font-weight: 600; }
@media (max-width: 768px) {
  .geo-qa { grid-template-columns: 1fr; gap: 20px; }
  .geo-item { padding: 22px 20px; }
}
