
        400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #0a0a0a;
            color: #f5f5f5;
            overflow-x: hidden;
        }

        .font-display {
            font-family: 'Playfair Display', serif;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #0a0a0a;
        }
        ::-webkit-scrollbar-thumb {
            background: #c9a84c;
            border-radius: 4px;
        }

        /* Navigation */
        .nav-fixed {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-fixed.scrolled {
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(201, 168, 76, 0.15);
        }

        .nav-link {
            position: relative;
            color: rgba(255,255,255,0.7);
            transition: color 0.3s;
            font-size: 0.85rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .nav-link:hover {
            color: #c9a84c;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: #c9a84c;
            transition: width 0.3s;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero-section {
            height: 100vh;
            min-height: 700px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
        }

        .hero-logo {
            animation: floatLogo 6s ease-in-out infinite;
            filter: drop-shadow(0 20px 60px rgba(201, 168, 76, 0.3));
        }

        .brand-logo {
            display: block;
            object-fit: contain;
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 18px 60px rgba(0,0,0,0.28);
        }

        .brand-logo-nav {
            width: 132px;
            height: 58px;
            padding: 3px 10px;
        }

        .brand-logo-hero {
            width: min(520px, 82vw);
            max-height: 390px;
            padding: 10px 18px;
        }

        .brand-logo-footer {
            width: 190px;
            height: 128px;
            padding: 8px 14px;
        }

        @keyframes floatLogo {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .hero-title {
            font-size: clamp(3rem, 8vw, 7rem);
            font-weight: 900;
            letter-spacing: -0.02em;
            line-height: 1;
        }

        .gold-gradient {
            background: linear-gradient(135deg, #c9a84c 0%, #f0d77b 30%, #c9a84c 60%, #8b6914 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .gold-line {
            height: 1px;
            background: linear-gradient(90deg, transparent, #c9a84c, transparent);
        }

        /* Section animations */
        .reveal {
            opacity: 0;
            transform: translateY(60px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }

        /* Section dividers */
        .section-divider {
            width: 60px;
            height: 2px;
            background: #c9a84c;
        }

        /* Project cards */
        .project-card {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .project-card:hover {
            transform: scale(1.02);
        }

        .project-card img {
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .project-card:hover img {
            transform: scale(1.1);
        }

        .project-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
            opacity: 0.7;
            transition: opacity 0.5s;
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        /* Pchelography featured */
        .featured-project {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 16 / 9;
        }

        .featured-project::before {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid rgba(201, 168, 76, 0.3);
            z-index: 10;
            pointer-events: none;
        }

        .featured-badge {
            position: absolute;
            top: 30px;
            left: 30px;
            background: #c9a84c;
            color: #0a0a0a;
            padding: 8px 20px;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            z-index: 20;
        }

        /* Map */
        #map {
            height: 600px;
            width: 100%;
            background: #0d1117;
            border-radius: 0;
        }

        .leaflet-container {
            background: #0d1117 !important;
        }

        .custom-marker {
            background: #c9a84c;
            border: 2px solid #f0d77b;
            border-radius: 50%;
            box-shadow: 0 0 15px rgba(201, 168, 76, 0.6);
        }

        /* News cards */
        .news-card {
            transition: transform 0.4s;
        }

        .news-card:hover {
            transform: translateY(-8px);
        }

        .news-date {
            font-size: 0.75rem;
            color: #c9a84c;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        /* Merch */
        .merch-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
            border: 1px solid rgba(201, 168, 76, 0.16);
            box-shadow: 0 22px 55px rgba(0,0,0,.28);
            transition: transform .45s ease, border-color .45s ease, box-shadow .45s ease;
        }

        .merch-item:hover {
            transform: translateY(-8px);
            border-color: rgba(201, 168, 76, 0.5);
            box-shadow: 0 30px 70px rgba(0,0,0,.4);
        }

        .merch-item::after {
            content: 'Подробнее';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 16px;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            color: #c9a84c;
            text-align: center;
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transform: translateY(100%);
            transition: transform 0.4s;
        }

        .merch-item:hover::after {
            transform: translateY(0);
        }

        /* Contact section */
        .contact-link {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: rgba(255,255,255,0.7);
            transition: all 0.3s;
            font-size: 1.1rem;
        }

        .contact-link:hover {
            color: #c9a84c;
            transform: translateX(8px);
        }

        /* Footer */
        .footer-link {
            color: rgba(255,255,255,0.5);
            transition: color 0.3s;
            font-size: 0.85rem;
        }

        .footer-link:hover {
            color: #c9a84c;
        }

        /* Mobile menu */
        .mobile-menu {
            position: fixed;
            inset: 0;
            background: rgba(10, 10, 10, 0.98);
            z-index: 999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s;
        }

        .mobile-menu.open {
            opacity: 1;
            pointer-events: all;
        }

        .burger-line {
            width: 28px;
            height: 2px;
            background: #fff;
            transition: all 0.3s;
        }

        .burger.active .burger-line:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }

        .burger.active .burger-line:nth-child(2) {
            opacity: 0;
        }

        .burger.active .burger-line:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Horizontal scroll projects */
        .projects-scroll {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding: 20px 0;
            scrollbar-width: none;
        }

        .projects-scroll::-webkit-scrollbar {
            display: none;
        }

        .project-scroll-item {
            min-width: 350px;
            scroll-snap-align: start;
        }

        /* Parallax */
        .parallax-bg {
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
        }

        @media (max-width: 768px) {
            .parallax-bg {
                background-attachment: scroll;
            }
        }

        /* Pulse animation for map markers */
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(201, 168, 76, 0); }
            100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0); }
        }

        .pulse-marker {
            animation: pulse 2s infinite;
        }

        /* Loading animation */
        .loader {
            position: fixed;
            inset: 0;
            background: #0a0a0a;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.6s, visibility 0.6s;
        }

        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-bee {
            width: 80px;
            height: 80px;
            border: 2px solid rgba(201, 168, 76, 0.2);
            border-top-color: #c9a84c;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Stats counter */
        .stat-number {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1;
        }

        /* Video play button */
        .play-btn {
            width: 80px;
            height: 80px;
            border: 2px solid rgba(255,255,255,0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s;
            cursor: pointer;
        }

        .play-btn:hover {
            border-color: #c9a84c;
            background: rgba(201, 168, 76, 0.1);
            transform: scale(1.1);
        }

        .play-btn::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 18px solid #fff;
            border-top: 11px solid transparent;
            border-bottom: 11px solid transparent;
            margin-left: 6px;
        }
    