/* ============================================
   水润天地 · 设计系统 v1.0
   品牌定位：源自自然的生命活力
   设计风格：高端 · 克制 · 留白 · 质感
   灵感来源：Apple / Tesla / 奢侈品官网
   ============================================ */

/* --- 色彩系统 --- */
:root {
  /* 主色：森林绿 */
  --forest:        #0A2E1F;
  --forest-light:  #0F4A32;
  --forest-pale:   #1A7A4C;

  /* 点睛色：古铜金 */
  --gold:          #B8860B;
  --gold-light:    #D4A843;
  --gold-pale:     #F5E6C8;

  /* 背景色：暖白 */
  --ivory:         #FAF8F5;
  --ivory-deep:    #F0EDE8;
  --white:         #FFFFFF;

  /* 墨色 */
  --ink:           #1A1714;
  --ink-soft:      #3D3A36;
  --ink-mute:      #7A7670;
  --ink-faint:     #B5B2AD;

  /* 功能色 */
  --success:       #2E7D32;
  --warning:       #E65100;
  --error:         #C62828;

  /* 桦树汁专属金色 */
  --birch:         #8B6914;
  --birch-light:   #B8860B;
}

/* --- 字体系统 --- */
:root {
  --font-serif:   'Noto Serif SC', 'Source Han Serif SC', 'Songti SC', Georgia, serif;
  --font-sans:    'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-num:     'DIN Alternate', 'Helvetica Neue', Arial, sans-serif;

  /* 字号阶梯 */
  --text-xs:      0.6875rem;   /* 11px */
  --text-sm:      0.8125rem;   /* 13px */
  --text-base:    0.9375rem;   /* 15px */
  --text-lg:      1.125rem;    /* 18px */
  --text-xl:      1.5rem;      /* 24px */
  --text-2xl:     2rem;        /* 32px */
  --text-3xl:     2.75rem;     /* 44px */
  --text-4xl:     3.75rem;     /* 60px */

  --w-regular:    400;
  --w-medium:     500;
  --w-semibold:   600;
  --w-bold:       700;
}

/* --- 间距系统 --- */
:root {
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 16px;
  --sp-4: 24px;
  --sp-5: 40px;
  --sp-6: 64px;
  --sp-7: 96px;
  --sp-8: 140px;
}

/* --- 阴影 --- */
:root {
  --shadow-xs:    0 1px 2px rgba(26,23,20,0.02);
  --shadow-sm:    0 2px 8px rgba(26,23,20,0.04);
  --shadow-md:    0 8px 24px rgba(26,23,20,0.06);
  --shadow-lg:    0 16px 48px rgba(26,23,20,0.08);
  --shadow-gold:  0 4px 16px rgba(184,134,11,0.15);
}

/* --- 圆角 --- */
:root {
  --r-sm:   3px;
  --r-md:   6px;
  --r-lg:   12px;
  --r-full: 9999px;
}

/* --- 过渡 --- */
:root {
  --ease:         cubic-bezier(0.25, 0.1, 0.25, 1);
  --dur-fast:     0.2s;
  --dur-normal:   0.35s;
  --dur-slow:     0.6s;
}

/* --- 布局 --- */
:root {
  --content-max:  1200px;
  --content-min:  1000px;
  --nav-height:   72px;
}
