﻿/* ===== 基础重置与变量 ===== */
:root {
  /* === 豹猫星球品牌双色调：深森林绿 × 暖杏金，衬线文学调性 === */
  --primary: #1f3d2e;          /* 深森林绿 - 主色 */
  --primary-deep: #142a20;     /* 更深的森林绿（CTA / 页脚） */
  --primary-rgb: 31, 61, 46;
  --secondary: #d99a3b;        /* 暖杏金 - 强调色 */
  --secondary-soft: #e6b46a;   /* 浅杏金（hover/弱化） */
  --secondary-rgb: 217, 154, 59;
  --cream: #f5efe2;            /* 暖米色 - 浅色区块底 */
  --cream-soft: #faf6ec;       /* 更浅的暖白 */
  --accent: #c8a96a;           /* 辅助金色 */
  --text: #2b2a26;             /* 主文字 */
  --text-soft: #5a5648;        /* 次要文字 */
  --text-light: #8a8576;       /* 弱化文字 */
  --bg: #fdfbf6;               /* 页面底色（暖白） */
  --bg-light: var(--cream);
  --bg-white: #ffffff;
  --border: #e6dfc9;
  --shadow: 0 8px 28px rgba(var(--primary-rgb), 0.08);
  --shadow-lg: 0 24px 60px rgba(var(--primary-rgb), 0.14);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  /* === 字体系统：衬线文学风 ===
     注意："Noto Serif SC" 仅在部分用户环境安装，正式回退到系统衬线中文字体；
     关键：中文 fallback 链必须避免直接落到默认宋体（SimSun），那样会显得老旧
     优先顺序：声明的西文衬线 → 思源宋体 → 华文宋体 → 华文楷体 → 系统衬线（serif）
  */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-serif: "Playfair Display", "Cormorant Garamond", "Noto Serif SC", "Source Han Serif SC", "Source Han Serif CN", "Songti SC", "STSong", "STSongti-SC-Black", "SimSun", serif;
  --font-cn-serif: "Noto Serif SC", "Source Han Serif SC", "Source Han Serif CN", "Songti SC", "STSong", "STKaiti", "KaiTi", serif;
}

/* 品牌矩阵三元素字体统一：放最前面确保浏览器解析到（防止后面 CSS 解析错误导致此规则失效） */
.product-category,
.product-name,
.product-desc {
  font-family: var(--font-cn-serif);
}

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

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--primary);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.5px;
}

h1 { font-size: clamp(40px, 6vw, 64px); }
h2 { font-size: clamp(32px, 4.5vw, 48px); }
h3 { font-size: clamp(24px, 3vw, 32px); }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== 无障碍辅助类 ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--secondary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 8px 8px;
  z-index: 1001;
  font-size: 14px;
  font-weight: 600;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
}

/* ===== 顶部导航栏 ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 251, 246, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.06);
  transition: var(--transition);
}

.header.transparent {
  background: transparent;
  border-bottom: 1px solid rgba(245, 239, 226, 0.18);
}

.header.transparent .nav-link,
.header.transparent .logo-text {
  color: #faf6ec;
}

.header.transparent .nav-link.active {
  color: var(--secondary-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 19px;
  letter-spacing: 1.5px;
  color: var(--primary);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 56px;
}

.nav-link {
  font-family: var(--font-cn-serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 8px 0;
  letter-spacing: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--secondary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--secondary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: inherit;
  transition: var(--transition);
}

.icon-btn:hover {
  background: rgba(0, 0, 0, 0.05);
}

.header.transparent .icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.menu-toggle.active {
  background: rgba(0, 0, 0, 0.05);
}

/* ===== Hero 区域 ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  padding-top: 76px; /* 给固定导航让位，避免内容被遮挡 */
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.08) saturate(1.05) contrast(1.0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(35, 66, 50, 0.18) 0%, rgba(35, 66, 50, 0.06) 42%, rgba(35, 66, 50, 0) 68%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #faf6ec;
  max-width: 820px;
  padding: 0 40px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(20, 42, 32, 0.55) 0%, rgba(31, 61, 46, 0.38) 100%);
  border: 1px solid rgba(250, 246, 236, 0.35);
  color: #faf6ec;
  border-radius: 100px;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 18px rgba(20, 42, 32, 0.25);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.8vw, 60px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: 1.5px;
  color: #faf6ec;
  white-space: nowrap;
  text-shadow: 0 2px 18px rgba(20, 42, 32, 0.45), 0 1px 3px rgba(20, 42, 32, 0.35);
}

.hero-subtitle-cn {
  font-family: var(--font-cn-serif);
  font-size: clamp(24px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 32px;
  letter-spacing: 4px;
  color: rgba(250, 246, 236, 0.98);
  text-shadow: 0 2px 14px rgba(20, 42, 32, 0.4), 0 1px 2px rgba(20, 42, 32, 0.3);
}

.hero-subtitle-cn .highlight {
  color: var(--secondary-soft);
  font-weight: 600;
}

.hero-subtitle {
  font-family: var(--font-cn-serif);
  font-size: 17px;
  line-height: 2;
  margin-bottom: 44px;
  color: rgba(250, 246, 236, 0.92);
  max-width: 580px;
  letter-spacing: 1.5px;
  text-shadow: 0 1px 10px rgba(20, 42, 32, 0.35);
}

.hero-cta {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 100px;
  font-family: var(--font-cn-serif);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 2px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary-deep);
  border: 1px solid var(--secondary);
  box-shadow: 0 8px 24px rgba(var(--secondary-rgb), 0.32);
}
.btn-primary:hover {
  background: var(--secondary-soft);
  color: var(--primary-deep);
  border-color: var(--secondary-soft);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(var(--secondary-rgb), 0.45);
}

.btn-outline {
  background: rgba(250, 246, 236, 0.08);
  color: #faf6ec;
  border: 2px solid rgba(250, 246, 236, 0.7);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--primary-deep);
  border-color: var(--secondary);
}

.btn-dark {
  background: var(--primary);
  color: #faf6ec;
}

.btn-dark:hover {
  background: var(--secondary);
  color: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-arrow {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* 英雄区底部柔和融入下一区块，增强呼吸感 */
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(253, 251, 246, 0.96));
  z-index: 2;
  pointer-events: none;
}

.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--secondary-soft);
  font-family: var(--font-serif);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0.85;
  animation: bounce 2s infinite;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, var(--secondary-soft), transparent);
}

/* 浮动小元素 */
.hero-deco {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero-deco-1 {
  top: 30%;
  right: 15%;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.hero-deco-2 {
  bottom: 25%;
  right: 25%;
  width: 40px;
  height: 40px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 4s ease-in-out infinite;
}

.hero-deco-3 {
  top: 20%;
  left: 10%;
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.2;
  animation: float 5s ease-in-out infinite reverse;
}

/* ===== 品牌标语横幅 ===== */
.brand-banner {
  padding: 120px 0;
  background:
    radial-gradient(900px 460px at 85% -10%, rgba(31, 61, 46, 0.05), transparent 70%),
    radial-gradient(700px 380px at 8% 115%, rgba(217, 154, 59, 0.08), transparent 70%),
    var(--cream);
  text-align: center;
  position: relative;
}

.brand-banner::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 1px;
  background: var(--secondary);
}

.brand-banner-eyebrow {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.brand-banner h2 {
  font-family: var(--font-cn-serif);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: 1px;            /* 中文大标题紧凑 */
  line-height: 1.3;
  white-space: normal;
  color: var(--primary);
}

.brand-banner h2 .highlight {
  color: var(--secondary);
  font-style: normal;
  font-family: var(--font-cn-serif);
  font-weight: 600;
}

.brand-banner p {
  font-family: var(--font-cn-serif);
  font-size: 17px;
  color: var(--text-soft);
  max-width: 680px;
  margin: 24px auto 0;
  letter-spacing: 1.5px;
  line-height: 2;
}

.brand-banner .en-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--secondary);
  margin-bottom: 18px;
  letter-spacing: 1.5px;
}

/* ===== 产品区块 ===== */
.section {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding: 0 24px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 16px;
  height: 1px;
  background: var(--secondary);
}

.section-eyebrow::before { left: 0; }
.section-eyebrow::after { right: 0; }

.section-title {
  font-family: var(--font-cn-serif);
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 4px;
  color: var(--primary);
  white-space: normal;
}

/* 活动页 events 区块标题：配置驱动 2+2 平衡分两行
   （由 site-config.json title 中 \n + config-loader.js innerHTML 实现） */
#events .section-title {
  white-space: normal;
  line-height: 1.35;
}
@media (max-width: 768px) {
  #events .section-title {
    font-size: clamp(20px, 5.5vw, 26px);
    letter-spacing: 1px;
  }
}

.section-desc {
  font-family: var(--font-cn-serif);
  font-size: 16px;
  color: var(--text-soft);
  max-width: 720px;
  margin: 20px auto 0;
  letter-spacing: 1.5px;
  line-height: 2;
}

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: start;
}

@media (max-width: 1200px) {
  .products { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .products { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  /* featured 在 1024px 块已统一定义为上下堆叠，此处无需重复 */
}

.product-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-img {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 16px 16px 0 0;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(1.0);
  transition: var(--transition);
  border-radius: 16px 16px 0 0;
}

.product-card:hover .product-img img {
  transform: scale(1.06);
  filter: saturate(1.02) brightness(1);
}

/* Qomo Cabin 品牌卡片：图片完整显示，不裁剪（4:5 竖版原图） */
.qomo-cabin-card .product-img img {
  object-fit: cover;
  object-position: 50% 50%;
}

/* 锚点品牌大卡：打破 5×2 等规格网格，制造视觉焦点 */
.product-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: stretch;
}

.product-card.featured .product-img {
  aspect-ratio: auto;
  height: 100%;
  min-height: 320px;
}

.product-card.featured .product-info {
  display: block;
  text-align: left;
  padding: 36px 44px;
}

.product-card.featured .product-tag {
  top: 24px;
  left: 24px;
}

.product-card.featured .product-category {
  font-size: 13px;
  margin-bottom: 10px;
}

.product-card.featured .product-name {
  font-size: clamp(22px, 2.2vw, 28px);
  margin: 0 0 14px;
  line-height: 1.3;
  text-wrap: balance;
  max-width: 100%;
  font-weight: 500;
  letter-spacing: 0;
}

.product-card.featured .product-desc {
  font-size: 15px;
  max-width: 520px;
  line-height: 1.7;
  margin: 0;
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary-deep);
  padding: 7px 15px;
  border-radius: 100px;
  font-family: var(--font-cn-serif);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(20, 42, 32, 0.1);
}

.product-info {
  padding: 22px 20px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 6px;
  min-height: 168px;
  justify-content: center;
}

.product-category {
  font-family: var(--font-cn-serif);
  font-size: 11px;
  color: var(--secondary);
  letter-spacing: 2.5px;
  /* text-transform: uppercase; /* 2026-08-18: 移除，让 icebreaker 等全小写品牌按原样显示 */
  margin-bottom: 10px;
  font-weight: 500;
}

.product-name {
  font-family: var(--font-cn-serif);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--primary);
  letter-spacing: 0;
  line-height: 1.4;
  width: 100%;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.product-desc {
  font-family: var(--font-cn-serif) !important;
  font-size: 13px;
  color: var(--text-soft);
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: break-word;
  line-height: 1.6;
  letter-spacing: 0.8px;
  margin-top: auto;
  padding-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-desc.is-single {
  white-space: nowrap;
  font-size: 11.5px;
  letter-spacing: normal;
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  -webkit-box-orient: horizontal;
  text-overflow: clip;
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--secondary);
}

/* ===== 大图特性区块 ===== */
.feature {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: var(--bg);
  overflow: hidden;
}

.feature-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.feature-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
  filter: brightness(1.02) saturate(0.95);
}

.feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(245, 239, 226, 0.55) 0%, rgba(253, 251, 246, 0.35) 50%, rgba(253, 251, 246, 0.15) 100%);
  z-index: 2;
}

.feature-content {
  position: relative;
  z-index: 3;
  color: var(--text);
  max-width: 620px;
  padding: 96px 0;
}

.feature-eyebrow {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-block;
  padding: 0 22px;
  position: relative;
}

.feature-eyebrow::before,
.feature-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 14px;
  height: 1px;
  background: var(--secondary-soft);
}

.feature-eyebrow::before { left: 0; }
.feature-eyebrow::after { right: 0; }

.feature-title {
  font-family: var(--font-cn-serif);
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 4px;
  margin-bottom: 28px;
  color: var(--primary);
  white-space: nowrap;
}

.feature-desc {
  font-family: var(--font-cn-serif);
  font-size: 16px;
  line-height: 2;
  margin-bottom: 36px;
  color: var(--text-soft);
  letter-spacing: 1.5px;
  max-width: 560px;
}

/* 特性区底部柔和过渡，与下一页自然衔接 */
.feature::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(245, 239, 226, 0.94));
  z-index: 2;
  pointer-events: none;
}

.feature-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 600;
  color: var(--secondary-soft);
  line-height: 1;
  margin-bottom: 10px;
  font-style: italic;
}

.stat-label {
  font-family: var(--font-cn-serif);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--text-soft);
}

/* ===== 品牌内核 feature（首页专属）· 左右分栏重塑节奏 ===== */
.feature--brand {
  min-height: 0;
  align-items: stretch;
}
/* 减弱底部渐变，避免放大留白感 */
.feature--brand::after {
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(245, 239, 226, 0.55));
}
.feature--brand .feature-content {
  max-width: none;
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature--brand .feature-title {
  font-size: clamp(34px, 4.5vw, 52px);
  letter-spacing: 4px;
  white-space: nowrap;
}
.feature--brand .feature-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 0;
  padding: 8px 0 8px 40px;
  border-top: none;
  border-left: 1px solid rgba(217, 154, 59, 0.28);
}
.feature--brand .stat-num {
  font-size: 60px;
  margin-bottom: 6px;
}
.feature--brand .stat-label {
  font-size: 13px;
  letter-spacing: 4px;
}
/* 窄屏：回到单列布局 */
@media (max-width: 768px) {
  .feature--brand .feature-content {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 64px 0;
  }
  .feature--brand .feature-title {
    font-size: clamp(28px, 7.5vw, 38px);
  }
  .feature--brand .feature-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0 0;
    border-left: none;
    border-top: 1px solid rgba(217, 154, 59, 0.28);
  }
  .feature--brand .stat-num {
    font-size: 44px;
  }
}

/* ===== 故事/技术区块 ===== */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.tech-image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.tech-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tech-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 61, 46, 0.18), transparent);
  z-index: 1;
}

.tech-features {
  display: grid;
  gap: 32px;
  margin-top: 48px;
}

.tech-feature {
  display: flex;
  gap: 20px;
  align-items: start;
  padding: 20px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: var(--transition);
}

.tech-feature:hover {
  border-color: var(--secondary-soft);
  transform: translateX(6px);
  box-shadow: var(--shadow);
}

.tech-icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.tech-feature h4 {
  font-family: var(--font-cn-serif);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 1.5px;
  color: var(--primary);
}

.tech-feature p {
  font-family: var(--font-cn-serif);
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 1px;
}

/* ===== 活动卡片 ===== */
/* === 通用 section 装饰：标题与内容的过渡分隔线 === */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 56px auto 0;
  max-width: 280px;
  color: var(--secondary);
  opacity: 0.65;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}
.section-divider svg { width: 14px; height: 14px; }

.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
}

.activity-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(1.0);
  transition: var(--transition);
}

.activity-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.04) brightness(1);
}

.activity-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 42, 32, 0) 0%,
    rgba(20, 42, 32, 0.15) 30%,
    rgba(20, 42, 32, 0.55) 60%,
    rgba(20, 42, 32, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px 32px;
  color: #faf6ec;
  text-shadow: 0 1px 8px rgba(20, 42, 32, 0.35);
}

.activity-date {
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 600;
  color: var(--secondary-soft);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-style: italic;
  display: inline-block;
  align-self: flex-start;
  padding: 5px 12px;
  background: rgba(20, 42, 32, 0.55);
  border: 1px solid rgba(250, 246, 236, 0.28);
  border-radius: 100px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.activity-title {
  font-family: var(--font-cn-serif);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: 1px;            /* 中文紧凑 */
}

.activity-loc {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: rgba(250, 246, 236, 0.95);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 6px 14px 6px 8px;
  background: rgba(250, 246, 236, 0.12);
  border: 1px solid rgba(250, 246, 236, 0.22);
  border-radius: 100px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.activity-loc svg { flex-shrink: 0; }

/* ===== 客户评价 ===== */
.testimonials {
  background: var(--cream);
  text-align: center;
  position: relative;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-quote {
  font-family: var(--font-cn-serif);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 36px;
  letter-spacing: 2px;
  color: var(--primary);
}

.testimonial-quote::before {
  content: '「';
  display: block;
  font-family: var(--font-serif);
  font-size: 80px;
  color: var(--secondary);
  line-height: 0.5;
  margin-bottom: 20px;
}

.testimonial-quote::after {
  content: '」';
  display: block;
  font-family: var(--font-serif);
  font-size: 80px;
  color: var(--secondary);
  line-height: 0;
  margin-top: 10px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--secondary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 20px;
}

.author-info h5 {
  font-family: var(--font-cn-serif);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
}

.author-info span {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 1.5px;
}

/* ===== 创始人区块（豹猫文化页专用） ===== */
.founder-section {
  background:
    radial-gradient(700px 380px at 90% 8%, rgba(232, 168, 124, 0.14), transparent 70%),
    radial-gradient(600px 360px at 8% 100%, rgba(20, 42, 32, 0.06), transparent 70%),
    var(--cream);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

/* 顶部金色装饰细线：替代 ::before 圆点纹理 */
.founder-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 520px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--secondary) 50%, transparent 100%);
  pointer-events: none;
}

/* 巨大的左侧衬线引号 */
.founder-section::after {
  content: '\201C';
  position: absolute;
  left: -40px;
  top: 60px;
  font-family: var(--font-serif);
  font-size: 280px;
  line-height: 1;
  color: rgba(20, 42, 32, 0.06);
  pointer-events: none;
  user-select: none;
  font-weight: 700;
}

.founder-section > .container {
  position: relative;
  z-index: 1;
}

.founder-section .section-header {
  margin-bottom: 56px;
}

.founder-section .section-eyebrow {
  color: var(--secondary);
  letter-spacing: 3px;
}

.founder-section .section-title {
  color: var(--primary-deep);
  font-size: clamp(34px, 4.6vw, 52px);
  font-weight: 600;
  letter-spacing: 1px;            /* 中文标题紧凑：避免字符分裂 */
  margin-bottom: 14px;
}

.founder-section .section-desc {
  color: var(--text-light);
  font-size: 16px;
  letter-spacing: 0.5px;          /* 中文段落微间距：自然紧致 */
  max-width: 640px;
  margin: 0 auto;
}

/* 创始人主卡片 */
.founder-card {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  padding: 56px 64px 48px;
  position: relative;
  box-shadow:
    0 1px 0 rgba(20, 42, 32, 0.04),
    0 24px 60px -20px rgba(20, 42, 32, 0.14),
    0 8px 24px -8px rgba(20, 42, 32, 0.06);
  overflow: hidden;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 56px;
  right: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--secondary-soft) 50%, var(--secondary) 100%);
  border-radius: 0 0 4px 4px;
}

/* 卡片内的引言 */
.founder-quote {
  font-family: var(--font-cn-serif);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  font-style: normal;              /* 关键：中文禁用 italic，避免伪斜体扭曲 */
  line-height: 1.75;
  color: var(--primary-deep);
  text-align: center;
  letter-spacing: 0.5px;           /* 中文紧凑：自然呼吸 */
  margin: 8px 0 36px;
  padding: 0 24px;
  position: relative;
}

.founder-quote::before { content: ''; }
.founder-quote::after  { content: ''; }

/* 创始人签名条：头像+名字+info */
.founder-sign {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px dashed rgba(20, 42, 32, 0.12);
}

.founder-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 26px;
  color: var(--secondary-soft);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  box-shadow:
    0 0 0 4px #fff,
    0 0 0 5px rgba(232, 168, 124, 0.55),
    0 8px 20px -6px rgba(20, 42, 32, 0.25);
  flex-shrink: 0;
}

.founder-meta {
  text-align: left;
}

.founder-meta-name {
  font-family: var(--font-cn-serif);
  font-weight: 700;
  font-size: 20px;
  color: var(--primary-deep);
  letter-spacing: 0.5px;           /* 中文姓名紧凑：避免字符分裂 */
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.founder-meta-name .founder-tag {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(232, 168, 124, 0.18);
  color: #a05b1a;
  border: 1px solid rgba(232, 168, 124, 0.35);
}

.founder-meta-info {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.3px;            /* 中文段落紧凑：自然呼吸 */
  line-height: 1.6;
}

.founder-meta-info .dot {
  color: var(--secondary);
  margin: 0 8px;
  font-weight: 700;
}

/* 移动端 */
@media (max-width: 768px) {
  .founder-section { padding: 80px 0; }
  .founder-section::after { font-size: 180px; left: -60px; top: 30px; }
  .founder-card { padding: 44px 28px 36px; border-radius: 22px; }
  .founder-card::before { left: 28px; right: 28px; }
  .founder-quote { font-size: 20px; padding: 0; }
  .founder-sign { flex-direction: column; gap: 16px; text-align: center; }
  .founder-meta { text-align: center; }
  .founder-meta-name { justify-content: center; flex-wrap: wrap; }
}


/* ===== 邮件订阅（暖杏金 CTA 大区块，对应参考图最后一块） ===== */
.newsletter {
  background:
    radial-gradient(900px 480px at 88% 0%, rgba(217, 154, 59, 0.04), transparent 70%),
    radial-gradient(700px 420px at 6% 110%, rgba(31, 61, 46, 0.03), transparent 70%),
    var(--bg);
  color: var(--primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(20, 42, 32, 0.04) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
}

.newsletter > .container {
  position: relative;
  z-index: 1;
}

.newsletter h2 {
  font-family: var(--font-cn-serif);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 600;
  letter-spacing: 4px;
  white-space: normal;
  color: var(--primary);
  margin-bottom: 18px;
}

.newsletter p {
  font-family: var(--font-cn-serif);
  font-size: 17px;
  margin-bottom: 36px;
  letter-spacing: 2px;
  color: var(--text-soft);
}

.newsletter-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  gap: 14px;
}

.newsletter-form input {
  flex: 1;
  padding: 18px 26px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: var(--transition);
  font-family: inherit;
}

.newsletter-form input::placeholder {
  color: var(--text-light);
}

.newsletter-form input:focus {
  background: #fff;
  border-color: var(--primary);
}

.newsletter-form .btn {
  background: var(--primary-deep);
  color: var(--secondary);
  border-color: var(--primary-deep);
}

.newsletter-form .btn:hover {
  background: var(--secondary);
  color: var(--primary-deep);
  border-color: var(--secondary);
}

.newsletter .section-desc {
  color: var(--text-soft);
}
.newsletter .author-info h5 {
  color: var(--primary);
}
.newsletter .author-info span {
  color: var(--text-soft);
}

/* ===== 页脚（浅色简洁风格） ===== */
.footer {
  background: var(--bg-white);
  color: var(--primary);
  padding: 72px 0 32px;
  position: relative;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.footer-brand .logo-text {
  color: var(--primary);
  font-size: 22px;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 2px;
}

.footer-brand p {
  font-family: var(--font-cn-serif);
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 380px;
  color: var(--text-soft);
  letter-spacing: 1px;
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  color: var(--text-soft);
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--bg-white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-cn-serif);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 14px;
  letter-spacing: 2px;
  color: var(--primary);
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 1px;
  background: var(--secondary);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-col ul.marquee-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-col ul.marquee-list li {
  margin-bottom: 0;
}

.footer-col a {
  color: var(--text-soft);
  font-size: 13.5px;
  transition: var(--transition);
  display: inline-block;
  line-height: 1.5;
  letter-spacing: 1.2px;
}

.footer-col a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-col .footer-link {
  color: var(--text-soft);
  font-size: 14px;
  display: inline-block;
  line-height: 1.4;
}

.footer-col .footer-link:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: 1px;
}

/* ===== 表单样式（联系我们） ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
}

.contact-info h2 {
  font-family: var(--font-cn-serif);
  font-size: clamp(34px, 4.5vw, 48px);
  font-weight: 600;
  letter-spacing: 1px;            /* 中文紧凑 */
  margin-bottom: 24px;
  line-height: 1.3;
  color: var(--primary);
  white-space: normal;
}

.contact-info > p {
  font-family: var(--font-cn-serif);
  color: var(--text-soft);
  font-size: 16px;
  margin-bottom: 40px;
  line-height: 2;
  letter-spacing: 1px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-list li {
  display: flex;
  gap: 16px;
  align-items: start;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-list h5 {
  font-family: var(--font-cn-serif);
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 1px;
  color: var(--primary);
}

.contact-list span {
  color: var(--text-soft);
  font-size: 14px;
  letter-spacing: 1px;
}

.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 48px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-cn-serif);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  background: var(--bg);
  transition: var(--transition);
  outline: none;
  color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--secondary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(var(--secondary-rgb), 0.14);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-message {
  display: none;
  margin: 4px 0 20px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.5px;
}
.form-message.success {
  display: block;
  color: #1d6b3f;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.35);
}
.form-message.error {
  display: block;
  color: #b23b2e;
  background: rgba(230, 92, 60, 0.08);
  border: 1px solid rgba(230, 92, 60, 0.3);
}
/* 订阅表单内的提示占满整行 */
.newsletter-form .form-message {
  flex: 0 0 100%;
  margin: 14px 0 0;
  text-align: center;
  font-family: var(--font-cn-serif);
}
.newsletter-form .form-message.success { color: #14532d; background: rgba(255, 255, 255, 0.9); border-color: rgba(20, 83, 45, 0.35); }
.newsletter-form .form-message.error { color: #8a2c1d; background: rgba(255, 255, 255, 0.9); border-color: rgba(138, 44, 29, 0.35); }

/* ===== 页面内 Banner ===== */
.page-hero {
  height: 60vh;
  min-height: 480px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #faf6ec;
  overflow: hidden;
  background: var(--primary);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: brightness(0.95) saturate(0.92);
}

/* 页面 Hero 柔和压暗层 + 底部融入过渡 */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 42, 32, 0.5) 0%, rgba(20, 42, 32, 0.2) 55%, rgba(20, 42, 32, 0.55) 100%);
  z-index: 2;
}

.page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(245, 239, 226, 0.94));
  z-index: 3;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 4;
  max-width: 800px;
  padding: 0 40px;
}

.page-hero h1 {
  font-family: var(--font-cn-serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 4px;
  white-space: normal;
  color: #faf6ec;
  margin-bottom: 20px;
}

.page-hero p {
  font-family: var(--font-cn-serif);
  font-size: 18px;
  letter-spacing: 2px;
  color: rgba(250, 246, 236, 0.82);
  white-space: nowrap;
}

/* ===== 活动详情页 ===== */
.activity-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 100px;
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  font-family: var(--font-cn-serif);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2px;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: #faf6ec;
  border-color: var(--primary);
}

.activity-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
}

.event-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-soft);
}

.event-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.event-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(1.0);
  transition: var(--transition);
}

.event-card:hover .event-img img {
  transform: scale(1.05);
  filter: saturate(1.04) brightness(1);
}

.event-content {
  padding: 28px 30px 30px;
}

.event-meta {
  display: flex;
  gap: 16px;
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.event-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-title {
  font-family: var(--font-cn-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--primary);
  letter-spacing: 1.5px;
}

.event-desc {
  font-family: var(--font-cn-serif);
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 22px;
  letter-spacing: 1px;
}

.event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.event-quota {
  font-family: var(--font-cn-serif);
  font-size: 13px;
  color: var(--secondary);
  font-weight: 500;
  letter-spacing: 2px;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 13px;
  letter-spacing: 2px;
}

/* ===== 防晒文化页技术展示 ===== */
.tech-section {
  background: var(--bg-light);
}

.uv-meter {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  margin-top: 40px;
  box-shadow: var(--shadow);
}

.uv-meter-bar {
  flex: 1;
  height: 12px;
  background: linear-gradient(90deg, #9cc5a8 0%, #d3d9a4 30%, #e6cd85 50%, #e2a96b 75%, #c97b5e 100%);
  border-radius: 100px;
  position: relative;
}

.uv-meter-indicator {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background: #fff;
  border: 3px solid var(--primary);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.uv-meter-label {
  font-size: 18px;
  font-weight: 700;
  min-width: 100px;
}

/* ===== 动画 ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

@keyframes float {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, -55%); }
}



/* ===== 开场动画：向日葵园 · 豹猫星球（进入页仪式感） ===== */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(217, 154, 59, 0.16), transparent 58%),
    linear-gradient(180deg, #142a20 0%, #1f3d2e 52%, #142a20 100%);
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.85s;
}
.splash.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* 品牌金色光晕 */
.splash-glow {
  position: absolute;
  left: 50%;
  top: 44%;
  width: min(620px, 92vw);
  height: min(620px, 92vw);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 154, 59, 0.2) 0%, rgba(217, 154, 59, 0.05) 46%, transparent 70%);
  animation: splash-glow 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes splash-glow {
  0%, 100% { transform: translate(-50%, -50%) scale(0.88); opacity: 0.75; }
  50% { transform: translate(-50%, -50%) scale(1.06); opacity: 1; }
}

/* 开场 · 实景向日葵园（AI 生成 · Ken Burns 缓慢推进） */
.splash-garden {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  background-color: #142a20;
  background-image: url('../images/splash-garden.png');
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
  opacity: 0;
  animation: splash-fade-in-img 1.4s ease-out 0.1s forwards,
             splash-kenburns 22s ease-in-out 1.5s infinite alternate;
  will-change: transform, opacity;
}
@keyframes splash-fade-in-img {
  from { opacity: 0; transform: scale(1.04); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes splash-kenburns {
  from { transform: scale(1)    translateY(0); }
  to   { transform: scale(1.12) translateY(-1.2%); }
}

/* 柔和暖色遮罩：中央文字区保留适度衬底 + 上下边缘轻晕染，亮场也能保证对比度 */
.splash-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(40% 30% at 50% 52%, rgba(20, 42, 32, 0.22) 0%, rgba(20, 42, 32, 0.10) 55%, rgba(20, 42, 32, 0.0) 100%),
    linear-gradient(180deg,
      rgba(20, 42, 32, 0.0)  0%,
      rgba(20, 42, 32, 0.0)  24%,
      rgba(20, 42, 32, 0.06) 70%,
      rgba(20, 42, 32, 0.18) 100%);
}

/* 品牌区 */
.splash-brand {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 24px;
  max-width: 720px;
}
/* logo: no circle frame, free float */
.splash-logo {
  width: auto;
  height: auto;
  margin: 0 auto 28px;
  display: inline-block;
  opacity: 0;
  animation: splash-rise 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.55s;
}
.splash-logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter:
    brightness(0) invert(1)
    drop-shadow(0 2px 6px rgba(255, 248, 224, 0.7))
    drop-shadow(0 6px 16px rgba(60, 40, 12, 0.35));
}
@keyframes splash-rise {
  from { opacity: 0; transform: translateY(22px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* title: warm caramel + soft light, embed into image */
.splash-title {
  font-family: var(--font-cn-serif);
  font-size: clamp(48px, 8.5vw, 92px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0.08em;
  color: #3d2410;
  text-shadow:
    0 0 22px rgba(255, 248, 224, 0.95),
    0 0 40px rgba(255, 235, 190, 0.65),
    0 2px 4px rgba(60, 40, 12, 0.18);
  white-space: nowrap;
}
.splash-char {
  display: inline-block;
  opacity: 0;
  animation: splash-char-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes splash-char-in {
  from { opacity: 0; transform: translateY(32px) scale(0.86); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.splash-en {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: clamp(12px, 1.6vw, 15px);
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  color: #6b4a22;
  text-shadow:
    0 0 12px rgba(255, 248, 224, 0.75),
    0 1px 2px rgba(60, 40, 12, 0.15);
  opacity: 0;
  animation: splash-en-in 1.1s ease forwards;
  animation-delay: 1.85s;
}
@keyframes splash-en-in {
  from { opacity: 0; letter-spacing: 0.62em; filter: blur(5px); }
  to   { opacity: 1; letter-spacing: 0.34em; filter: blur(0); }
}


/* enter btn: ghost style */
.splash-enter {
  margin: 34px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: 1px solid rgba(90, 58, 24, 0.55);
  border-radius: 999px;
  color: #5a3a18;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  animation: splash-enter-in 0.9s ease forwards;
  animation-delay: 2.55s;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.splash-enter:hover,
.splash-enter:focus-visible {
  background: rgba(90, 58, 24, 0.92);
  border-color: rgba(90, 58, 24, 0.92);
  color: #fff8e8;
  transform: translateY(-2px);
}
.splash-enter:focus-visible {
  outline: 2px solid var(--secondary-soft);
  outline-offset: 4px;
}
.splash-enter svg {
  transition: transform 0.3s ease;
}
.splash-enter:hover svg {
  transform: translateX(4px);
}
@keyframes splash-enter-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* 提示脉冲（JS 就绪后启动） */
.splash.is-ready .splash-enter {
  animation:
    splash-enter-in 0.9s ease 2.55s forwards,
    splash-pulse 2.6s ease-in-out 3.45s infinite;
}
@keyframes splash-pulse {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

/* 向日葵园开场 · 移动端 */
@media (max-width: 640px) {
  .splash-logo img { width: 48px; height: 48px; margin-bottom: 12px; }
  .splash-title { font-size: clamp(44px, 13vw, 62px); letter-spacing: 0.04em; }
  .splash-en { letter-spacing: 0.24em; text-indent: 0.24em; }
  .splash-enter { margin-top: 30px; padding: 12px 26px; font-size: 14px; }
}

/* 减少动态偏好：极速完成开场 */
@media (prefers-reduced-motion: reduce) {
  .splash *,
  .splash-garden { animation-duration: 0.01s !important; animation-delay: 0s !important; }
  .splash-title .splash-char,
  .splash-en,
  .splash-enter { opacity: 1 !important; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .hero-title { font-size: 60px; line-height: 1.1; }
  .section-title { font-size: 38px; white-space: normal; }
  .feature-title { font-size: 42px; line-height: 1.15; }
  .tech-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-content { margin: 0 auto; text-align: center; }
  .nav-menu { gap: 32px; }
  /* 平板及以下：品牌大卡改为 overlay 模式（图片+文字叠在图片底部），第一屏完整看到品牌名 */
  .product-card.featured {
    grid-column: auto;
    display: block;
    grid-template-columns: none;
    position: relative;
  }
  .product-card.featured .product-img {
    aspect-ratio: 4/3;
    min-height: 0;
    position: relative;
  }
  .product-card.featured .product-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
    pointer-events: none;
  }
  .product-card.featured .product-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px 28px 28px;
    text-align: left;
    align-items: flex-start;
    color: #faf6ec;
    z-index: 2;
    pointer-events: none;
  }
  .product-card.featured .product-info > * { color: #faf6ec; }
  .product-card.featured .product-category { font-size: 12px; margin-bottom: 6px; opacity: 0.85; }
  .product-card.featured .product-name { font-size: 22px; margin-bottom: 6px; }
  .product-card.featured .product-desc { font-size: 13px; line-height: 1.6; opacity: 0.9; }
}@media (max-width: 768px) {
  /* 手机端：汉堡菜单 */
  .logo-text { display: none; }
  .menu-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(253, 251, 246, 0.98);
    border: 1px solid rgba(var(--primary-rgb), 0.08);
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-menu li { width: 100%; }
  .nav-menu .nav-link {
    display: block;
    padding: 14px 18px;
    font-size: 15px;
    border-radius: 10px;
  }
  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    background: rgba(var(--primary-rgb), 0.05);
  }
  .nav-menu .nav-link::after { display: none; }
  .header.transparent .nav-menu { background: rgba(253, 251, 246, 0.98); }
  /* 手机端：品牌大卡改为上下堆叠，图片更扁、文字区紧凑，第一屏直接看到品牌名 */
  .product-card.featured .product-img { aspect-ratio: 16/9; min-height: 0; }
  .product-card.featured .product-info {
    padding: 20px 18px 22px;
    text-align: center;
    align-items: center;
  }
  .product-card.featured .product-name {
    text-wrap: balance;
    word-break: normal;
    overflow-wrap: anywhere;
    font-size: 20px;
    margin-bottom: 6px;
  }
  .product-card.featured .product-desc { font-size: 13px; line-height: 1.6; }
}@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .hero { min-height: 560px; }
  .hero-content { padding: 0 16px; }
  .brand-banner p,
  .section-desc {
    white-space: normal;
    font-size: 15px;
  }
  .brand-banner h2 {
  font-family: var(--font-cn-serif);
  font-size: clamp(24px, 7.5vw, 32px);
  font-weight: 600;
  line-height: 1.3;
}
  .hero-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 7vw, 36px);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: 1px;
  white-space: normal;
  text-wrap: balance;
}
  .hero-subtitle { font-size: 16px; }
  .hero-subtitle-cn { font-size: 20px; letter-spacing: 2px; margin-bottom: 24px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .section { padding: 64px 0; }
  .section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 7.5vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0px;
  white-space: normal;
}
  .feature-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 8vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0px;
  margin-bottom: 20px;
}
  .page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 9vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0px;
  white-space: normal;
}
  .newsletter h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 7vw, 30px);
  font-weight: 700;
  letter-spacing: 0px;
  white-space: normal;
}
  .newsletter-form { flex-direction: column; }
  .products { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-info { padding: 18px 16px 20px; }
  .product-name { font-size: 15px; }
  .product-desc { white-space: normal; }
  .product-desc.is-single { white-space: normal; font-size: 13px; letter-spacing: 0.8px; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; }
  .product-card.featured .product-name { text-wrap: balance; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 28px 20px;
  border-radius: 16px;
}
  .testimonial-quote {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 24px;
  letter-spacing: 0px;
}
  .uv-meter {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  padding: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  margin-top: 32px;
  box-shadow: var(--shadow);
}
  .feature-stats { grid-template-columns: 1fr; gap: 16px; }
  .activity-list { grid-template-columns: 1fr; }
  .activity-grid { grid-template-columns: 1fr; }
  .hero { height: auto; min-height: 480px; }
  .page-hero { min-height: 400px; }
  .page-hero-content { padding: 0 16px; }
  .page-hero p { font-size: 16px; white-space: normal; }
  .section-eyebrow { white-space: normal; letter-spacing: 2px; }
  .footer-brand .logo-text { white-space: normal; font-size: 18px; }
  .event-meta { flex-wrap: wrap; gap: 8px 16px; }
  .event-title { font-size: 19px; }
  .event-content { padding: 20px; }
  .filter-btn { padding: 8px 16px; font-size: 13px; }
  .form-group input,
  .form-group textarea,
  .form-group select { font-size: 16px; }
  .newsletter-form input { font-size: 16px; }
  .hero-badge { font-size: 12px; padding: 6px 12px; margin-bottom: 16px; }
  .nav-menu .nav-link { font-size: 16px; padding: 14px 0; }
  .brand-source {
    margin-top: 16px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .brand-source-label { opacity: 0.85; }
  .brand-source-name { font-weight: 700; }
  .page-hero { min-height: 440px; }
  .page-hero h1 { margin-bottom: 14px; }
  }

/* 公司位置 - 真实地图卡片 */
.map-frame iframe {
  pointer-events: auto;
}
.map-info-card {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 2;
}
.map-info-title {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.4;
}
.map-info-sub {
  font-size: 13px;
  color: var(--text-light);
  margin: 4px 0 0;
}
.map-info-link {
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 600;
  transition: opacity 0.2s;
}
.map-info-link:hover { opacity: 0.85; }

/* WF 活动 / 团队生活 真实照片画廊 */
.wf-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}
.wf-gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e8eef2;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.wf-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}
.wf-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.wf-gallery-item:hover img {
  transform: scale(1.06);
}
.wf-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.wf-tag.primary { background: var(--primary); color: #fff; }
.wf-tag.warm { background: #e8a87c; color: #fff; }
.wf-tag.cool { background: #00d4ff; color: #fff; }
.wf-tag.fire { background: #ff6b35; color: #fff; }
.wf-tag.green { background: #2ecc71; color: #fff; }

@media (max-width: 900px) {
  .wf-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
  .wf-gallery { grid-template-columns: 1fr; }
}

/* With Friends 活动页 · 4 大计划照片墙 */
.wf-section { background: var(--bg-light); }
.wf-plan-block { margin-bottom: 56px; }
.wf-plan-block:last-child { margin-bottom: 0; }
.wf-plan-title {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.4px;
}
.wf-plan-title::before {
  content: '';
  width: 6px;
  height: 26px;
  background: linear-gradient(180deg, var(--secondary), var(--primary));
  border-radius: 3px;
  flex-shrink: 0;
}
.wf-plan-title-tag {
  font-size: 12px;
  padding: 4px 10px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  margin-left: auto;
  letter-spacing: 0.5px;
}
.wf-plan-title-tag.fire { background: #ff6b35; }
.wf-plan-title-tag.cool { background: #00d4ff; }
.wf-plan-title-tag.warm { background: #e8a87c; }
.wf-plan-title-tag.green { background: #2ecc71; }

.wf-plan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.wf-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  display: block;
  background: #e8eef2;
}
.wf-photo:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
/* 图片灯箱 · 点击查看原图 */
.wf-plan-grid img.wf-photo {
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wf-plan-grid img.wf-photo:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(40, 32, 18, 0.18);
}
.wf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.wf-lightbox.open {
  display: flex;
  opacity: 1;
}
.wf-lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.55);
  background: #1a1a1a;
}
.wf-lightbox-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: wf-lb-spin 0.8s linear infinite;
  display: none;
}
.wf-lightbox.loading .wf-lightbox-spinner { display: block; }
@keyframes wf-lb-spin { to { transform: rotate(360deg); } }
.wf-lightbox-close {
  position: absolute;
  top: 16px;
  right: 24px;
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
}
.wf-lightbox-close:hover { background: rgba(255, 255, 255, 0.25); }
@media (max-width: 900px) {
  .wf-plan-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .wf-plan-grid { grid-template-columns: 1fr; }
}

/* 打渔晒网 · 内部活动三行各4张 */
.dayu-shawnet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 16px;
}
.dayu-shawnet-grid figure { margin: 0; }
.dayu-shawnet-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: block;
  cursor: zoom-in;
}
.dayu-shawnet-grid img:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}
@media (max-width: 768px) {
  .dayu-shawnet-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* 荣誉墙 · 单个荣誉两行排列（每行5个） */
.honors-frame {
  max-width: 1100px;
  margin: 16px auto 0;
}
.honors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  justify-items: center;
}
.honor-item {
  width: 100%;
  max-width: 200px;
  height: 280px;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.honor-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  display: block;
  cursor: zoom-in;
  transition: transform 0.25s ease;
}
.honor-item img:hover {
  transform: scale(1.04);
}
@media (max-width: 768px) {
  .honors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.honors-caption {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 16px;
  letter-spacing: 1px;
  font-weight: 500;
}

/* 联系我们页 · 加入豹猫 HR 招聘卡片 */
.join-us-section { background: var(--bg-light); }
.join-us-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.join-us-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}
.join-us-icon {
  font-size: 48px;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f5f7f5 0%, #e8efe9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.join-us-body { flex: 1; }
.join-us-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.join-us-body p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 4px;
  line-height: 1.7;
}
.join-us-email {
  color: var(--secondary);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.2s;
}
a.join-us-email:hover { color: var(--primary); text-decoration: underline; }
.join-us-btn {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none !important;
  letter-spacing: 1px;
  box-shadow: 0 6px 18px rgba(140, 102, 70, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
a.join-us-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(140, 102, 70, 0.35);
  color: #fff !important;
  text-decoration: none !important;
}
.join-us-hint {
  font-size: 13px;
  color: var(--text-light);
  opacity: 0.7;
  margin-top: 6px !important;
}
@media (max-width: 600px) {
  .join-us-card { flex-direction: column; text-align: center; padding: 28px 24px; }
  .join-us-icon { width: 64px; height: 64px; font-size: 36px; }
}
.wf-divider {
  margin: 56px auto 40px;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.12), transparent);
}
.dayu-shawnet-grid { margin-top: 0; }

/* 招聘板块 · 岗位 + 福利 */
.jobs-block { margin-bottom: 40px; }
.jobs-block-title {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  padding-left: 14px;
  border-left: 4px solid var(--secondary);
  line-height: 1.4;
}
.jobs-list, .jobs-requirement {
  list-style: none;
  padding: 0;
  margin: 0;
}
.jobs-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px 24px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 22px 28px;
  box-shadow: 0 4px 18px rgba(120, 90, 60, 0.08);
}
.jobs-list li {
  font-size: 16px;
  color: var(--text);
  padding-left: 18px;
  position: relative;
  line-height: 1.7;
}
.jobs-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--secondary);
}
.jobs-requirement li {
  font-size: 15px;
  color: var(--text);
  line-height: 1.9;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(120, 90, 60, 0.12);
}
.jobs-requirement li:last-child { border-bottom: none; }
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.job-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.job-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.job-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.4;
}
.job-info p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}
.job-info strong {
  color: var(--secondary);
  font-weight: 600;
}
.benefits-block { margin-bottom: 40px; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.benefit-card {
  background: #fff;
  padding: 22px 24px;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.benefit-emoji {
  display: inline-block;
  font-size: 28px;
  margin-bottom: 10px;
}
.benefit-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}
.benefit-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}
.join-us-tel {
  color: var(--secondary);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.2s;
}
a.join-us-tel:hover { color: var(--primary); text-decoration: underline; }
@media (max-width: 600px) {
  .jobs-grid, .benefits-grid { grid-template-columns: 1fr; }
}

/* 关于星球页 · 合作 · 理念板块 */
.cooper-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 8px;
}
.cooper-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cooper-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}
.cooper-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: #fff;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.cooper-icon svg {
  width: 28px;
  height: 28px;
}
.cooper-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.cooper-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* 品牌矩阵 · 图片填满卡片（cover 模式，无留白） */
.product-img {
  position: relative;
  overflow: hidden;
  background: transparent;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.product-img img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
}
