/* ============================================
   CLUBHOUSE CREATIVE — DESIGN TOKENS
   Modern editorial clubhouse
   ============================================ */

:root, [data-theme="light"] {
  /* ---------- COLOR ---------- */
  /* Surfaces — warm cream */
  --color-bg: #F5F1E8;
  --color-surface: #FAF6EC;
  --color-surface-2: #FDFAF2;
  --color-surface-offset: #EDE7D8;
  --color-surface-offset-2: #E5DEC9;
  --color-divider: #D9D1BC;
  --color-border: #C8BFA6;

  /* Text — deep ink */
  --color-text: #1A1F1B;
  --color-text-muted: #5A5F56;
  --color-text-faint: #8A8F86;
  --color-text-inverse: #F5F1E8;

  /* Primary — Forest green */
  --color-primary: #1F3A2E;
  --color-primary-hover: #2C4F40;
  --color-primary-active: #15281F;
  --color-primary-highlight: #D6DDD3;

  /* Accent — Brushed gold */
  --color-gold: #B8945F;
  --color-gold-hover: #A07F4F;
  --color-gold-active: #856A40;
  --color-gold-highlight: #ECE3CE;

  /* ---------- TYPE SCALE ---------- */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 7rem);

  /* ---------- 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-7: 1.75rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* ---------- RADIUS ---------- */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-full: 9999px;

  /* ---------- TRANSITIONS ---------- */
  --transition-interactive: 220ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 600ms cubic-bezier(0.16, 1, 0.3, 1);

  /* ---------- SHADOWS ---------- */
  --shadow-sm: 0 1px 2px oklch(0.2 0.02 130 / 0.06);
  --shadow-md: 0 8px 24px oklch(0.2 0.02 130 / 0.08);
  --shadow-lg: 0 24px 48px oklch(0.2 0.02 130 / 0.14);

  /* ---------- WIDTHS ---------- */
  --content-narrow: 640px;
  --content-default: 1080px;
  --content-wide: 1320px;
  --content-full: 100%;

  /* ---------- TYPOGRAPHY ---------- */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', 'Helvetica Neue', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
}

[data-theme="dark"] {
  --color-bg: #11140F;
  --color-surface: #161A14;
  --color-surface-2: #1B1F18;
  --color-surface-offset: #1F231C;
  --color-surface-offset-2: #252A21;
  --color-divider: #2D332A;
  --color-border: #3D4438;

  --color-text: #E8E2D2;
  --color-text-muted: #989284;
  --color-text-faint: #5F6358;
  --color-text-inverse: #11140F;

  --color-primary: #5A8769;
  --color-primary-hover: #74A283;
  --color-primary-active: #3F6A4F;
  --color-primary-highlight: #283A2F;

  --color-gold: #D4B27E;
  --color-gold-hover: #E5C898;
  --color-gold-active: #B89567;
  --color-gold-highlight: #3A3022;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.3);
  --shadow-md: 0 8px 24px oklch(0 0 0 / 0.4);
  --shadow-lg: 0 24px 48px oklch(0 0 0 / 0.5);
}
