/* ==========================================================================
   DESIGN TOKENS
   Premium Navy & Gold — real estate / architectural blueprint influence
   ========================================================================== */

:root {

  /* ---- Color: Navy ---- */
  --navy-900: #0A1628;
  --navy-800: #0F1F35;
  --navy-700: #14273F;
  --navy-600: #1D3555;

  /* ---- Color: Gold ---- */
  --gold-600: #A9821C;
  --gold-500: #C9A227;
  --gold-300: #E4CB7A;
  --gold-100: #F3E6BC;
  --gold-050: #FBF4DD;

  /* ---- Color: Neutral / Cream ---- */
  --cream-50: #FAF8F3;
  --cream-100: #F3EFE4;
  --white: #FFFFFF;
  --border: #E3DFD4;

  /* ---- Color: Slate (text) ---- */
  --slate-900: #1A202C;
  --slate-700: #32384A;
  --slate-600: #4A5568;
  --slate-400: #8A93A6;

  /* ---- Color: Status ---- */
  --success: #2F855A;
  --success-bg: #E7F3EC;
  --error: #C53030;
  --error-bg: #FBEAEA;

  /* ---- Typography ---- */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --text-xs:   clamp(0.75rem, 0.72rem + 0.15vw, 0.8125rem);
  --text-sm:   clamp(0.875rem, 0.84rem + 0.15vw, 0.9375rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  --text-lg:   clamp(1.125rem, 1.06rem + 0.3vw, 1.25rem);
  --text-xl:   clamp(1.375rem, 1.28rem + 0.45vw, 1.625rem);
  --text-2xl:  clamp(1.75rem, 1.6rem + 0.7vw, 2.125rem);
  --text-3xl:  clamp(2.25rem, 1.95rem + 1.4vw, 3rem);
  --text-4xl:  clamp(2.75rem, 2.25rem + 2.2vw, 4.25rem);

  /* ---- Spacing (4px base) ---- */
  --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-32: 8rem;

  /* ---- Layout ---- */
  --container-max: 1280px;
  --container-pad: clamp(1.25rem, 4vw, 3rem);

  /* ---- Radius ---- */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  /* ---- Shadow ---- */
  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 22, 40, 0.10);
  --shadow-lg: 0 20px 48px rgba(10, 22, 40, 0.16);
  --shadow-gold: 0 10px 30px rgba(201, 162, 39, 0.25);

  /* ---- Motion ---- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 180ms;
  --duration-base: 280ms;
  --duration-slow: 480ms;

  /* ---- Z-index ---- */
  --z-navbar: 100;
  --z-modal: 200;
  --z-floating: 90;
  --z-toast: 300;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
