/* 万福生命 — 品牌标准色（客户 VI）
 * 单色标准色：金棕 C40 M51 Y75 K0 · 香槟 C9 M13 Y35 K0
 * 黑白渐变：炭灰 C76 M70 Y70 K30 · 暖灰 C23 M18 Y17 K0
 */
:root {
  /* 主色 — 炭灰深（页脚、主按钮、标题） */
  --color-primary: #2B3636;
  --color-primary-dark: #1E2626;
  --color-primary-light: #525C5C;
  --color-primary-soft: #F5F0D7;

  /* 辅助色 — 品牌金棕（Kicker、金线、激活态） */
  --color-accent: #997D40;
  --color-accent-light: #B39658;
  --color-accent-soft: #F5F0D7;

  /* 中性色 */
  --color-secondary: #6B7575;
  --color-bg: #FEFCF8;
  --color-surface: #FFFFFF;
  --color-border: #E5DDD0;
  --color-border-light: #F0EBDD;
  --color-text: #2B3636;
  --color-text-muted: #7A8588;

  /* 品牌渐变（金棕 → 香槟） */
  --gradient-brand: linear-gradient(135deg, #997D40 0%, #E8DEA6 100%);
  --gradient-hero: linear-gradient(180deg, var(--color-accent-soft) 0%, var(--color-bg) 72%);

  /* 系统字体栈：不依赖 Google Fonts，避免国内网络超时阻塞加载 */
  --font-serif: 'Source Han Serif SC', 'Noto Serif SC', 'Songti SC', 'STSong', 'SimSun', serif;
  --font-sans: 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', sans-serif;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 56px;
  --space-xl: 96px;
  --space-2xl: 128px;

  --container-max: 1160px;
  --container-narrow: 760px;
  --header-height: 72px;
  --radius: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(43, 54, 54, 0.04);
  --shadow-md: 0 8px 32px rgba(43, 54, 54, 0.07);
  --shadow-lg: 0 20px 56px rgba(43, 54, 54, 0.1);
  --shadow-gold: 0 12px 40px rgba(153, 125, 64, 0.18);
  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  --tracking-wide: 0.14em;
  --tracking-normal: 0.06em;

  /* 页面氛围 */
  --gradient-page: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(232, 222, 166, 0.35), transparent 55%);
  --gradient-section-soft: linear-gradient(180deg, #f9f6ef 0%, var(--color-bg) 100%);
  --gradient-section-white: linear-gradient(180deg, #fff 0%, #fdfcf9 100%);
  --line-gold: linear-gradient(90deg, transparent, var(--color-accent-light), transparent);

  /* 字号刻度 */
  --text-body: 17px;
  --line-height-body: 1.75;
  --text-xs: 12px;
  --text-sm: 13px;
  --text-md: 15px;
  --text-lg: 20px;

  /* 补充中性色 */
  --color-surface-soft: #F5F1E6;
  --color-text-subtle: #9AA3A3;
}
