/* ============================================================
   variables.css — Design Tokens
   B.I.Y Corporate Design System
   ============================================================ */

:root {
  /* ── Color: Navy ────────────────────────────────────────── */
  --color-navy: #0f2547;
  --color-navy-deep: #081427;
  --color-navy-soft: #1a3158;
  --color-navy-mute: #20406b;

  /* ── Color: Gold ────────────────────────────────────────── */
  --color-gold: #c8a84a;
  --color-gold-soft: #d8bd66;
  --color-gold-deep: #a18437;
  --color-gold-mute: rgba(200, 168, 74, 0.16);
  --color-gold-line: rgba(200, 168, 74, 0.35);

  /* ── Color: Neutral ─────────────────────────────────────── */
  --color-bg: #f6f3ec;
  --color-bg-cream: #faf8f3;
  --color-bg-soft: #efebe2;
  --color-white: #ffffff;

  /* ── Color: Text ────────────────────────────────────────── */
  --color-text: #2a2a2a;
  --color-text-light: #545454;
  --color-text-muted: #8a8a8a;
  --color-text-on-navy: rgba(255, 255, 255, 0.86);
  --color-text-on-navy-muted: rgba(255, 255, 255, 0.6);

  /* ── Color: Border ──────────────────────────────────────── */
  --color-border: #d8d3c6;
  --color-border-soft: #e8e3d6;
  --color-border-navy: rgba(255, 255, 255, 0.12);

  /* ── Color: Utility ─────────────────────────────────────── */
  --color-danger: #b34d4d;
  --color-danger-bg: #b34d4d;
  --color-success: #2f7d5b;

  /* ── Typography: Family ─────────────────────────────────── */
  --font-serif-ja: 'Noto Serif JP', 'Yu Mincho', 'YuMincho', serif;
  --font-sans-ja: 'Noto Sans JP', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-serif-en: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans-en: 'Inter', 'Helvetica Neue', sans-serif;

  /* ── Typography: Size ───────────────────────────────────── */
  --fs-display: clamp(44px, 7vw, 78px);
  --fs-hero: clamp(36px, 5.5vw, 60px);
  --fs-h1: clamp(32px, 4.5vw, 48px);
  --fs-h2: clamp(26px, 3.6vw, 40px);
  --fs-h3: clamp(20px, 2.4vw, 26px);
  --fs-h4: 18px;
  --fs-lg: 17px;
  --fs-md: 16px;
  --fs-base: 15px;
  --fs-sm: 14px;
  --fs-xs: 12px;
  --fs-xxs: 11px;
  --fs-2xl: 22px;
  --fs-3xl: 28px;
  --fs-4xl: clamp(34px, 5vw, 48px);
  --fs-xl: 20px;

  /* ── Typography: Weight ─────────────────────────────────── */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* ── Typography: Letter spacing ─────────────────────────── */
  --tracking-tight: -0.01em;
  --tracking-normal: 0;
  --tracking-wide: 0.04em;
  --tracking-wider: 0.1em;
  --tracking-widest: 0.2em;

  /* ── Typography: Line height ────────────────────────────── */
  --lh-tight: 1.3;
  --lh-snug: 1.5;
  --lh-normal: 1.75;
  --lh-relaxed: 2;

  /* ── Layout ─────────────────────────────────────────────── */
  --container-width: 1200px;
  --container-narrow: 880px;
  --container-wide: 1320px;
  --container-padding: 40px;

  /* ── Spacing: Section ───────────────────────────────────── */
  --section-padding: 140px 0;
  --section-padding-lg: 160px 0;
  --section-padding-md: 96px 0;
  --section-padding-sm: 64px 0;

  /* ── Radius ─────────────────────────────────────────────── */
  --radius-none: 0;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-full: 9999px;

  /* ── Shadow ─────────────────────────────────────────────── */
  --shadow-sm: 0 1px 2px rgba(15, 37, 71, 0.04);
  --shadow-md: 0 14px 36px rgba(15, 37, 71, 0.07);
  --shadow-lg: 0 28px 64px rgba(15, 37, 71, 0.12);
  --shadow-gold: 0 12px 28px rgba(200, 168, 74, 0.24);

  /* ── Motion ─────────────────────────────────────────────── */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition: 320ms var(--ease-out);
  --transition-base: 280ms var(--ease-out);
  --transition-fast: 180ms var(--ease-out);
  --transition-slow: 600ms var(--ease-out);

  /* ── Z-index ────────────────────────────────────────────── */
  --z-base: 1;
  --z-header: 100;
  --z-overlay: 900;
  --z-modal: 1000;
}
