/* ============================
   Design Tokens
   ============================ */
:root {
  /* Colors */
  --c-bg: #0A0807;        /* 漆黒（背景） */
  --c-bg-2: #14100E;      /* 漆黒2（セクション区切り） */
  --c-ink: #F5E6C8;       /* 脂のクリーム（文字） */
  --c-ink-dim: #A89674;   /* 控えめな文字 */
  --c-accent: #C8311A;    /* 炭火の朱（メインアクセント） */
  --c-accent-2: #E8A03C;  /* 火の粉のオレンジ */
  --c-smoke: #2A2524;     /* 煙の灰 */
  --c-line: rgba(245, 230, 200, 0.15);

  /* Fonts */
  --f-display: 'Shippori Mincho B1', serif;  /* 和文見出し・本文（700/800） */
  --f-pop: 'Reggae One', cursive;            /* 勢いのある装飾（バッジ等） */
  --f-latin: 'Cormorant Garamond', serif;    /* 欧文イタリック */
  --f-latin-2: 'Marcellus', serif;           /* 欧文ラベル */

  /* Spacing */
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-s: clamp(1rem, 2vw, 1.5rem);
  --space-m: clamp(2rem, 4vw, 3rem);
  --space-l: clamp(4rem, 8vw, 6rem);
  --space-xl: clamp(6rem, 12vw, 10rem);

  /* Layout */
  --max-w: 1440px;
}
