/* ============================================================
  tokens.css
  PHOSARA Website Design System v2.0 — CSS変数定義
  Technical Guide v2.0 Section 05 参照

  【確認A】 カラーHEX値：オーナー確定後に記入
  【確認B】 フォント名：オーナー確定後に '<...>' を置き換え
  【確認D】 コンテナ最大幅：オーナー確定後に更新
============================================================ */

:root {

  /* --------------------------------------------------
    カラートークン 【確認A】
    Design System v2.0 Section 02 参照
    全HEX値はオーナー確定後に記入してください
  -------------------------------------------------- */
  --color-bg:            #080808;
  --color-surface:       #121212;
  --color-text:          #F2F0EB;
  --color-text-sub:      #9A9890;
  --color-text-muted:    #505048;
  --color-accent:        #C61F1F;
  --color-accent-hover:  #E43A3A;
  --color-border:        #202020;
  --color-border-strong: #383838;
  --color-success:       #2A7040;
  --color-warning:       #966010;
  --color-error:         #CC2020;

  /* --------------------------------------------------
    フォント 【確認B】
    Design System v2.0 Section 03 参照
    確定後に '<...>' を実際のフォント名に置き換えてください
  -------------------------------------------------- */
  --font-jp:   'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  --font-en:   'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-mono: 'SFMono-Regular', 'Consolas', monospace;

  /* --------------------------------------------------
    フォントサイズ（1rem = 16px）
    Design System v2.0 Section 03 参照
  -------------------------------------------------- */
  --text-display: 3.5rem;
  --text-h1:      2.5rem;
  --text-h2:      2rem;
  --text-h3:      1.5rem;
  --text-h4:      1.25rem;
  --text-lg:      1.125rem;
  --text-base:    1rem;
  --text-sm:      0.875rem;
  --text-xs:      0.75rem;

  /* --------------------------------------------------
    行間
  -------------------------------------------------- */
  --leading-display: 1.15;
  --leading-heading: 1.3;
  --leading-body:    1.8;
  --leading-tight:   1.5;

  /* --------------------------------------------------
    フォントウェイト
  -------------------------------------------------- */
  --weight-normal:   400;
  --weight-semibold: 600;
  --weight-bold:     700;

  /* --------------------------------------------------
    余白・スペーシング（8px基準）
    Design System v2.0 Section 04 参照
  -------------------------------------------------- */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --space-40: 10rem;

  /* --------------------------------------------------
    グリッド
    Design System v2.0 Section 05 参照
  -------------------------------------------------- */
  --grid-columns:      12;
  --grid-gutter:       1.5rem;
  --container-max:     1200px;
  --container-padding: 1.5rem;

  /* --------------------------------------------------
    アニメーション
    Design System v2.0 Section 14 参照
  -------------------------------------------------- */
  --duration-fast:   150ms;
  --duration-normal: 250ms;
  --duration-slow:   400ms;

  --ease-out:      cubic-bezier(0, 0, 0.2, 1);
  --ease-in:       cubic-bezier(0.4, 0, 1, 1);
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);

}
