:root {
  --bg: #FBF8F2;
  --surface: #F3EEE6;
  --card: #FFFFFF;
  --surface-soft: rgba(243, 238, 230, 0.92);
  --border: #DDD6CB;
  --text: #1F1B16;
  --muted: #625C54;
  --primary: #C97A18;
  --secondary: #506EF5;
  --accent: #C97A18;
  --accent-secondary: #D48C2A;
  --highlight: #D89A21;
  --success: #2FA46A;
  --warning: #D89A21;
  --danger: #D95A5A;
  --shadow: 0 20px 60px rgba(40, 30, 20, 0.08);
  --radius: 22px;
  --radius-sm: 16px;
  --radius-xs: 12px;
  --border-soft: 1px solid var(--border);
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', 'Poppins', sans-serif;
  --text-lg: 1.125rem;
  --text-md: 1rem;
  --text-sm: 0.94rem;
  --text-xs: 0.85rem;
  --spacing-xs: 0.75rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2.5rem;
  --spacing-xl: 3.5rem;
  --transition: 180ms ease;
}

[data-theme='light'] {
  --bg: #FBF8F2;
  --surface: #F3EEE6;
  --card: #FFFFFF;
  --surface-soft: rgba(243, 238, 230, 0.92);
  --border: #DDD6CB;
  --text: #1F1B16;
  --muted: #625C54;
  --primary: #C97A18;
  --secondary: #506EF5;
  --accent: #C97A18;
  --accent-secondary: #D48C2A;
  --highlight: #D89A21;
  --success: #2FA46A;
  --warning: #D89A21;
  --danger: #D95A5A;
  --shadow: 0 24px 55px rgba(40, 30, 20, 0.08);
}

[data-theme='dark'] {
  --bg: #171613;
  --surface: #211F1A;
  --card: #2B2822;
  --surface-soft: rgba(43, 40, 34, 0.92);
  --border: #3C3831;
  --text: #F5F2EC;
  --muted: #B7B0A4;
  --primary: #D18A2E;
  --secondary: #6F8CFB;
  --accent: #D18A2E;
  --accent-secondary: #E09A42;
  --highlight: #F2B84B;
  --success: #47C27C;
  --warning: #F2B84B;
  --danger: #E66767;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.30);
}
