/* ===== 共享设计变量 =====
 * index.html 和 links.html 共用，改品牌色只需改这一处。
 */

:root {
  /* 颜色 */
  --color-bg: #faf8f5;
  --color-surface: #ffffff;
  --color-alt: #f5f0ea;
  --color-text: #3d3529;
  --color-text-light: #7a7265;
  --color-accent: #c1784a;
  --color-accent-hover: #a05d33;
  --color-accent-dark: #7b462a;
  --color-border: #e5ded5;

  /* 排版 */
  --font-sans: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', serif;

  /* 圆角 */
  --radius: 12px;
  --radius-sm: 8px;

  /* 阴影 */
  --shadow: 0 2px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.10);

  /* 布局 */
  --max-width: 1200px;
  --nav-height: 64px;
}
