        :root {
            --charcoal: #0a0a0a;
            --steel: #1a252b;
            --amber: #b89150;
            --off-white: #faf9f6;
        }

        body {
            background-color: var(--off-white);
            color: var(--charcoal);
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden;
        }
    html, body {
      box-sizing: border-box;
      height: 100%;
      margin: 0;
      padding: 0;
    }
    
    body {
      font-family: 'Georgia', serif;
      background-color: #f8f9fa;
      color: #1a1a1a;
    }
    
    .font-display {
      font-family: 'Syne', sans-serif;
    }
    
    .font-accent {
      font-family: 'Poppins', sans-serif;
    }
    
    .font-serif {
      font-family: 'Crimson Text', serif;
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
    }
    
    @keyframes pulse-glow {
      0%, 100% { opacity: 0.3; }
      50% { opacity: 0.8; }
    }
    
    @keyframes slide-up {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes fade-in {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    
    .animate-float { animation: float 4s ease-in-out infinite; }
    .animate-pulse-glow { animation: pulse-glow 3s ease-in-out infinite; }
    .animate-slide-up { animation: slide-up 0.6s ease-out forwards; }
    .animate-fade-in { animation: fade-in 0.8s ease-out forwards; }
    
    .delay-100 { animation-delay: 0.1s; }
    .delay-200 { animation-delay: 0.2s; }
    .delay-300 { animation-delay: 0.3s; }
    .delay-400 { animation-delay: 0.4s; }
    
    .gradient-orange-blue {
      background: linear-gradient(135deg, #FF6A3D 0%, #6AD0FF 100%);
    }
    
    .gradient-blue-orange {
      background: linear-gradient(135deg, #6AD0FF 0%, #FF6A3D 100%);
    }
    
    .text-gradient {
      background: linear-gradient(135deg, #FF6A3D 0%, #6AD0FF 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .btn-orange {
      background: #FF6A3D;
      color: white;
      transition: all 0.3s ease;
    }
    
    .btn-orange:hover {
      background: #e55a2b;
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(255, 106, 61, 0.3);
    }
    
    .btn-blue {
      background: #6AD0FF;
      color: #1a1a1a;
      transition: all 0.3s ease;
    }
    
    .btn-blue:hover {
      background: #50c1f5;
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(106, 208, 255, 0.3);
    }
    
    .card-hover {
      transition: all 0.3s ease;
    }
    
    .card-hover:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }
    
    .page-hidden { display: none !important; }
    .page-visible { display: block; }
    
    .section-divider {
      height: 2px;
      background: linear-gradient(90deg, transparent, #FF6A3D, #6AD0FF, transparent);
    }
    
    .nav-link {
      position: relative;
      color: #1a1a1a;
      font-weight: 500;
      transition: color 0.3s ease;
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 0;
      height: 2px;
      background: #FF6A3D;
      transition: width 0.3s ease;
    }
    
    .nav-link:hover {
      color: #FF6A3D;
    }
    
    .nav-link:hover::after {
      width: 100%;
    }
    
    .stat-card {
      background: white;
      border: 2px solid transparent;
      transition: all 0.3s ease;
    }
    
    .stat-card:hover {
      border-color: #6AD0FF;
      box-shadow: 0 10px 30px rgba(106, 208, 255, 0.15);
    }
    
    .toast {
      position: fixed;
      bottom: 20px;
      right: 20px;
      padding: 16px 24px;
      border-radius: 8px;
      color: white;
      font-weight: 600;
      z-index: 1000;
      animation: slide-up 0.3s ease-out;
    }
    /* Slow zoom-in for background */
@keyframes zoomSlow {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}
.animate-zoom-slow {
  animation: zoomSlow 30s linear infinite alternate;
}

/* Slide up fade-in for text */
@keyframes slideUpFade {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.animate-slide-up-delay-1 { animation: slideUpFade 1s ease forwards 0.3s; }
.animate-slide-up-delay-2 { animation: slideUpFade 1s ease forwards 0.6s; }
.animate-slide-up-delay-3 { animation: slideUpFade 1s ease forwards 0.9s; }
.animate-slide-up-delay-4 { animation: slideUpFade 1s ease forwards 1.2s; }

    .toast-success { background: #10b981; }
    .toast-error { background: #ef4444; }
    
    .image-cover {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
        /* Typography */
        .serif { font-family: 'Cormorant Garamond', serif; }
        .mono { font-family: 'Space Mono', monospace; text-transform: uppercase; letter-spacing: 0.25em; font-size: 0.65rem; }
        .cursive { font-family: 'Mrs Saint Delafield', cursive; color: var(--amber); font-size: 4rem; }

        /* Navigation & Transitions */
        .page-view { display: none; min-height: 100vh; opacity: 0; transform: translateY(10px); transition: all 0.8s ease; }
        .page-view.active { display: block; opacity: 1; transform: translateY(0); }
        
        /* Animations */
        @keyframes maskReveal {
            from { clip-path: inset(0 100% 0 0); }
            to { clip-path: inset(0 0 0 0); }
        }
        .reveal-text { animation: maskReveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards; }

        .btn-editorial {
            position: relative;
            padding: 1rem 2rem;
            border: 1px solid var(--charcoal);
            font-family: 'Space Mono', monospace;
            font-size: 0.7rem;
            letter-spacing: 0.2em;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: transparent;
            cursor: pointer;
        }
        .btn-editorial:hover { background: var(--charcoal); color: white; padding-left: 2.5rem; padding-right: 1.5rem; }

        .cart-dot {
            position: absolute;
            top: -5px;
            right: -10px;
            background: var(--amber);
            color: white;
            font-size: 10px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-track { background: var(--off-white); }
        ::-webkit-scrollbar-thumb { background: var(--charcoal); }

        .sticky-header { backdrop-filter: blur(10px); background: rgba(250, 249, 246, 0.85); border-bottom: 1px solid rgba(0,0,0,0.05); }
