        body { 
            font-family: 'Inter', sans-serif; 
            background-color: #0f121a; 
            color: #fff; 
            scroll-behavior: smooth; 
        }
        h1, h2, .font-serif { font-family: 'Playfair Display', serif; }
        
        /* SPA Переходы */
        .page-section { display: none; opacity: 0; transition: opacity 0.3s ease-in-out; }
        .page-section.active { display: block; opacity: 1; }
        /* Hero background fade */
        .hero-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }
        .hero-bg-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1.2s ease;
            will-change: opacity;
        }
        .hero-bg-img.is-active { opacity: 0.3; }
        @media (prefers-reduced-motion: reduce) {
            .hero-bg-img { transition: none; }
        }


        /* Кастомные стили */
        .btn-primary {
            background: linear-gradient(135deg, #FF7800, #FF9D40);
            box-shadow: 0 4px 15px rgba(255, 120, 0, 0.4);
            transition: all 0.3s ease;
        }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255, 120, 0, 0.6); }
        
        /* Галерея */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 16px;
        }
        .gallery-item { aspect-ratio: 4/3; overflow: hidden; border-radius: 12px; background: #1a1e29; }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .gallery-item:hover img { transform: scale(1.05); }

        /* Loader заглушка для карты */
        .map-placeholder {
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23333333' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        /* FAQ плавное раскрытие */
        .faq-content {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            padding-top: 0;
            padding-bottom: 0;
            transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
        }
        .faq-content.open {
            max-height: 320px;
            opacity: 1;
            padding-top: 1rem;
            padding-bottom: 1rem;
        }

        /* Плавное появление модалки */
        .modal-shell {
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease;
        }
        .modal-shell.open {
            opacity: 1;
            pointer-events: auto;
        }
        .modal-panel {
            transform: translate(-50%, -50%) scale(0.96);
            opacity: 0;
            transition: transform 0.25s ease, opacity 0.25s ease;
        }
        .modal-shell.open .modal-panel {
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }

        /* FAQ cards */
        .faq-card {
            background: radial-gradient(circle at 20% 20%, rgba(255, 120, 0, 0.08), transparent 40%), #1a1f2b;
            border: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
            transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
        }
        .faq-card:hover {
            border-color: rgba(255, 120, 0, 0.4);
            transform: translateY(-2px);
            background: radial-gradient(circle at 80% 0%, rgba(255, 120, 0, 0.07), transparent 50%), #1a1f2b;
        }
        .faq-icon {
            width: 32px;
            height: 32px;
            border-radius: 9999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.08);
            color: #f97316;
            font-weight: 800;
            font-size: 14px;
        }
        .faq-toggle {
            width: 32px;
            height: 32px;
            border-radius: 9999px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.08);
            color: #f97316;
            font-weight: 800;
            font-size: 18px;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .faq-card:hover .faq-toggle { background: rgba(255, 255, 255, 0.12); }
