/**
 * CAJORI HOTEL - Premium Luxury Styling
 * Professional CSS Architecture
 * Version: 3.0.0 | Refactored for Performance & Maintainability
 * =====================================================
 */

/* ==========================================
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ========================================== */
:root {
  /* Brand Colors */
  --color-primary: #D65A00;
  --color-primary-light: #f07a3d;
  --color-primary-dark: #A84600;
  --color-primary-gradient: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  
  /* Neutral Colors */
  --color-secondary: #1A1A1A;
  --color-secondary-light: #2d2d2d;
  --color-dark-gradient: linear-gradient(135deg, var(--color-secondary) 0%, #0a0a0a 100%);
  
  /* Background Colors */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F9F9F9;
  --bg-tertiary: #f5f0eb;
  --bg-cream: #fff8f3;
  
  /* Text Colors */
  --text-primary: #1A1A1A;
  --text-secondary: #4A4A4A;
  --text-muted: #767676;
  --text-light: #999999;
  --text-white: #FFFFFF;
  
  /* Accent Colors */
  --color-gold: #C9A227;
  --color-gold-light: #f5d76e;
  --color-success: #0b5132;
  --color-warning: #ffc107;
  
  /* Shadows */
  --shadow-xs: 0 2px 4px rgba(0,0,0,0.04);
  --shadow-sm: 0 4px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
  --shadow-xl: 0 30px 70px rgba(0,0,0,0.18);
  --shadow-primary: 0 10px 30px rgba(214, 90, 0, 0.25);
  --shadow-primary-lg: 0 20px 50px rgba(214, 90, 0, 0.35);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 50px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Typography */
  --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  
  /* Spacing Scale (8px base) */
  --space-1: 0.5rem;   /* 8px */
  --space-2: 1rem;     /* 16px */
  --space-3: 1.5rem;   /* 24px */
  --space-4: 2rem;     /* 32px */
  --space-5: 3rem;     /* 48px */
  --space-6: 4rem;     /* 64px */
  --space-7: 6rem;     /* 96px */
  
  /* Layout */
  --container-max: 1400px;
  --container-narrow: 1200px;
  --navbar-height: 80px;
  --navbar-height-scrolled: 70px;
  
  /* Z-Index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 500;
  --z-navbar: 1000;
  --z-modal-backdrop: 1050;
  --z-modal: 1100;
  --z-tooltip: 1200;
  --z-loader: 9999;
}

/* ==========================================
   2. RESET & BASE STYLES
   ========================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100%;
  overflow-x: hidden;
}

/* Selection & Focus States */
::selection {
  background-color: var(--color-primary);
  color: var(--text-white);
}

:focus-visible {
  outline: 3px solid rgba(214, 90, 0, 0.5);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-primary-dark);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
... (rest of provided stylesheet) ...
