/* ============================================
   Origin Coaching — Design Tokens
   ============================================ */

:root {
  /* ---- Colors (MUJI-inspired: ultra-clean white-dominant) ---- */
  --color-canvas: #fafafa;
  --color-surface: #ffffff;
  --color-surface-subtle: #f5f5f5;
  --color-surface-warm: #f7f7f7;

  --color-text-primary: #1a1a1a;
  --color-text-secondary: #666666;
  --color-text-muted: #999999;
  --color-text-inverse: #ffffff;

  --color-primary: #1a1a1a;
  --color-primary-hover: #000000;
  --color-primary-active: #000000;

  --color-accent: #8b2332;
  --color-accent-hover: #6e1c28;
  --color-accent-soft: #d4a0a8;

  --color-border: #e8e8e8;
  --color-border-strong: #cccccc;
  --color-disabled: #d5d5d5;

  /* Overlays */
  --color-warm-overlay: rgba(0, 0, 0, 0.03);
  --color-dark-overlay: rgba(0, 0, 0, 0.6);

  /* ---- Typography ---- */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", -apple-system, "Segoe UI", Arial, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.25rem;
  --text-6xl: 4rem;

  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;

  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.06em;
  --tracking-wider: 0.12em;

  /* ---- Spacing ---- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-section: clamp(4rem, 8vw, 7rem);

  /* ---- Layout ---- */
  --container: 80rem;
  --measure: 44rem;

  /* ---- Borders & Radii ---- */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 9999px;

  /* ---- Shadows ---- */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);

  /* ---- Transitions ---- */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}
