/* ══════════════════════════════════════════════
   DEMO LIFESTYLE — Design Tokens
   ══════════════════════════════════════════════ */

:root {
  --gold: #072447;
  --gold-dark: #04182F;
  --gold-light: #EBF0F8;
  --accent: #2765FF;
  --accent-dark: #1A4FCC;
  --accent-light: #EBF1FF;
  --charcoal: #072447;
  --charcoal-mid: #0A3260;
  --charcoal-light: #0E3D7A;
  --grey: #6B6B6B;
  --grey-light: #9CA3AF;
  --grey-border: #E0E0E0;
  --light: #eef2f8;
  --off-white: #FAFAFA;
  --white: #FFFFFF;
  --success: #22c55e;
  --success-light: #dcfce7;
  --warning: #f59e0b;
  --warning-light: #fef3c7;
  --danger: #ef4444;
  --danger-light: #fef2f2;
  --info: #2765FF;
  --info-light: #EBF1FF;
  --shadow-soft: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-lift: 0 6px 24px rgba(0,0,0,0.12);
  --shadow-modal: 0 20px 60px rgba(0,0,0,0.25);
  --radius: 10px;
  --radius-sm: 5px;
  --radius-lg: 16px;
  --radius-full: 50px;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-ui: 'Lato', sans-serif;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 60px;
  --space-4xl: 80px;
  --container-max: 1280px;
  --container-pad: 60px;
  --nav-height: 68px;
  --sidebar-width: 260px;
  --ease: 0.2s ease;
  --ease-bounce: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 900px) {
  :root {
    --container-pad: 24px;
  }
}
