/* Hallmark · tokens · oniwa de night
 * genre: atmospheric · theme: custom（ロゴから起こしたブランド配色）
 * ロゴの実測値：地 #184C58 = oklch(38.8% 0.057 216) ／ 文字 #E0C07C = oklch(82% 0.094 85)
 * axes: paper-band=dark / display-style=gothic-jp / accent-hue=warm
 */
:root{
  /* ─ ブランド（ロゴの実測値。ここは変えない） ─ */
  --color-brand-teal: oklch(38.8% 0.057 216);  /* #184C58 */
  --color-brand-gold: oklch(82.0% 0.094 85);   /* #E0C07C */

  /* ─ 紙と光 ─ */
  --color-paper:      oklch(16% 0.022 216);
  --color-paper-2:    oklch(20% 0.026 216);
  --color-paper-3:    oklch(25% 0.030 216);
  --color-rule:       oklch(35% 0.024 216);
  --color-neutral:    oklch(64% 0.018 214);
  --color-muted:      oklch(78% 0.013 212);
  --color-ink:        oklch(94% 0.009 210);
  --color-accent:     var(--color-brand-gold);
  --color-accent-dim: oklch(66% 0.076 84);
  --color-focus:      oklch(85% 0.100 85);

  /* ─ 書体 ─────────────────────────────────────────────
     ゴシック1書体を、太さだけで書き分ける。
     Zen Kaku Gothic New は、指定にあった RYO GOTHIC PlusN（モリサワ・有料）に
     いちばん近い無料書体。細くて素直で、少しだけ人の手の感じが残る系統。
     ※ もし RYO GOTHIC PlusN を使うことになったら、下の先頭に
       "Ryo Gothic PlusN", を足して、Adobe Fonts か TypeSquare のキットを
       index.html の <head> に1行貼る。それだけで切り替わる。 */
  --font-display: "Zen Kaku Gothic New", "Hiragino Sans",
                  "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-body: var(--font-display);

  /* 太さ4段（本文 / 項目名 / 小見出し・ボタン / 見出し） */
  --w-light: 300; --w-regular: 400; --w-medium: 500; --w-bold: 700;

  /* ─ 余白（4pt） ─ */
  --space-2xs: 4px;  --space-xs: 8px;   --space-sm: 12px;
  --space-md: 20px;  --space-lg: 32px;  --space-xl: 48px;
  --space-2xl: 72px; --space-3xl: 112px;
  --page-gutter: clamp(20px, 5vw, 56px);

  /* ─ 文字サイズ ─ */
  --text-xs: 0.75rem;  --text-sm: 0.8125rem; --text-base: 1rem;
  --text-lg: 1.125rem; --text-xl: 1.375rem;  --text-2xl: 1.75rem;
  --text-3xl: 2.25rem;
  --text-display-s: clamp(1.875rem, 6.4vw, 3rem);

  /* ─ 線・角・時間 ─ */
  --rule-hair: 1px;
  --radius-sm: 3px;  --radius-card: 14px;
  --dur-short: 140ms; --dur-mid: 320ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --measure: 30em;
}
