/* 子燕艺术空间 · Design Tokens
 * Source: Brand Guidelines v1.0
 * 直接对应品牌纲要顶层 :root，不要在此处发明新值
 */

:root {
  /* —— 主色 Primary —— */
  --ink:       #1A1814;
  --paper:     #F2EBDE;
  --paper-2:   #EAE2D2;
  --paper-3:   #FAF6EC;
  --cinnabar:  #C24634;

  /* —— 辅色 Secondary —— */
  --ochre:     #9A6A3F;
  --moss:      #6D7A57;
  --sky:       #4B6B7C;
  --dusk:      #C9B89A;
  --stone:     #5C544A;

  /* —— 中性 Neutral —— */
  --ink-70:    rgba(26,24,20,0.70);
  --ink-50:    rgba(26,24,20,0.50);
  --ink-30:    rgba(26,24,20,0.30);
  --ink-15:    rgba(26,24,20,0.15);
  --ink-08:    rgba(26,24,20,0.08);

  --paper-70:  rgba(242,235,222,0.70);
  --paper-50:  rgba(242,235,222,0.50);
  --paper-30:  rgba(242,235,222,0.30);

  /* —— 字体 —— */
  --serif-cn:  "Noto Serif SC", "Songti SC", "STSong", serif;
  --sans-cn:   "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", sans-serif;
  --serif-en:  "Cormorant Garamond", "Garamond", "Times New Roman", serif;
  --sans-en:   "Manrope", "Helvetica Neue", Arial, sans-serif;

  /* —— 节奏 —— */
  --maxw:      1240px;
  --gutter-x:  clamp(20px, 6vw, 96px);
  --section-y: clamp(64px, 12vw, 160px);
  --nav-h:     64px;

  /* —— 动效 —— */
  --ease:      cubic-bezier(.2, .7, .2, 1);
  --t-fast:    180ms;
  --t-base:    320ms;
  --t-slow:    520ms;
}

@media (min-width: 960px) {
  :root { --nav-h: 72px; }
}
