:root {
            --bg-color: #ececec;
            --text-main: #111111;
            --text-muted: #555555;
            --cherry-red: #9b0000;
            --vermilion: #e63925;
            
            --font-display: 'Bodoni Moda', serif;
            --font-body: 'Inter', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;

            --nav-width: 280px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            font-family: var(--font-body);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background:
                linear-gradient(115deg, rgba(255, 244, 210, 0.12), transparent 28%, transparent 72%, rgba(120, 0, 0, 0.08)),
                repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.028) 0 1px, transparent 1px 3px);
            opacity: 0.55;
            mix-blend-mode: soft-light;
            pointer-events: none;
            z-index: 150;
            animation: grainDrift 10s steps(6) infinite;
        }

        body::after {
            content: '';
            position: fixed;
            inset: 0;
            background:
                radial-gradient(circle at 18% 22%, rgba(255, 208, 120, 0.16), transparent 24%),
                radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.16), transparent 18%);
            opacity: 0.5;
            pointer-events: none;
            z-index: 151;
            animation: ambientPulse 12s ease-in-out infinite alternate;
        }

        
        h1, h2, h3, .display-text {
            font-family: var(--font-display);
            font-weight: 900;
            line-height: 0.9;
            letter-spacing: -0.03em;
        }

        .meta-text {
            font-family: var(--font-mono);
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
        }

        
        .app-container {
            display: flex;
            min-height: 100vh;
        }

        nav {
            width: var(--nav-width);
            height: 100vh;
            position: fixed;
            left: 0;
            top: 0;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 3rem 2rem;
            border-right: 1px solid rgba(0,0,0,0.05);
            z-index: 100;
            background: var(--bg-color);
        }

        .logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            text-decoration: none;
            color: var(--text-main);
            letter-spacing: -0.02em;
        }

        .nav-links {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-muted);
            font-size: 0.85rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: color 0.3s ease;
            position: relative;
            display: inline-block;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 4px;
            background-color: var(--cherry-red);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nav-links a:hover, .nav-links a.active {
            color: var(--text-main);
        }

        .nav-links a.active::before {
            opacity: 1;
        }

        .nav-footer {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        main {
            margin-left: var(--nav-width);
            width: calc(100% - var(--nav-width));
            position: relative;
            overflow: clip;
        }

        .page {
            display: none;
            padding: 4rem;
            min-height: 100vh;
            animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .page.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        
        .editorial-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: contrast(1.1) brightness(0.95);
        }

        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            border: 1px solid var(--text-main);
            color: var(--text-main);
            text-decoration: none;
            font-family: var(--font-mono);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            transition: all 0.3s ease;
            cursor: pointer;
            background: transparent;
        }

        .btn:hover {
            background: var(--text-main);
            color: var(--bg-color);
        }

        
        #home {
            padding: 0;
            display: none;
            grid-template-columns: 1fr 1fr;
            height: 100vh;
            position: relative;
            overflow: hidden;
            isolation: isolate;
            --pointer-x: 0px;
            --pointer-y: 0px;
            background:
                linear-gradient(180deg, rgba(7, 6, 8, 0.35), rgba(7, 6, 8, 0.06)),
                #120f10;
        }

        #home.active {
            display: grid;
        }

        #home::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 20% 18%, rgba(255, 196, 92, 0.34), transparent 30%),
                radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.24), transparent 20%),
                radial-gradient(circle at 50% 74%, rgba(148, 8, 0, 0.22), transparent 30%),
                linear-gradient(135deg, rgba(255,255,255,0.12), rgba(0,0,0,0.18));
            mix-blend-mode: screen;
            opacity: 0.78;
            transform: scale(1);
            pointer-events: none;
            z-index: 1;
        }

        #home::after {
            content: '';
            position: absolute;
            top: 8%;
            bottom: 8%;
            left: 50%;
            width: 1px;
            background: linear-gradient(to bottom, transparent, rgba(17, 17, 17, 0.28), transparent);
            opacity: 0.55;
            transform: translateX(-50%) scaleY(1);
            pointer-events: none;
            z-index: 3;
            box-shadow: 0 0 38px rgba(255, 214, 158, 0.2);
        }

        .hero-split {
            position: relative;
            height: 100%;
            overflow: hidden;
            --shift-x: 0px;
            --shift-y: 0px;
            background: #171214;
        }

        .hero-split::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(to top, rgba(9, 8, 10, 0.68), transparent 42%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%);
            opacity: 0.94;
            z-index: 1;
            pointer-events: none;
        }

        .hero-split::after {
            content: '';
            position: absolute;
            inset: -10%;
            background:
                radial-gradient(circle at 50% 50%, rgba(255,255,255,0.18), transparent 34%),
                linear-gradient(180deg, rgba(236, 236, 236, 0.1), rgba(0, 0, 0, 0.2));
            opacity: 0;
            transform: translate3d(calc(var(--shift-x) * -0.35), calc(var(--shift-y) * -0.35), 0) scale(1.08);
            transition: opacity 1.1s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
            mix-blend-mode: screen;
            pointer-events: none;
            z-index: 2;
        }

        .hero-split:first-child {
            box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.08);
        }

        .hero-split:first-child .display-text {
            color: #8a0000;
        }
        
        .hero-split:last-child .display-text {
            color: #ff4d2d;
        }

        .hero-split img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.18) translate3d(calc(var(--shift-x) * 0.7), calc(var(--shift-y) * 0.7), 0);
            transform-origin: center center;
            transition: transform 1.8s cubic-bezier(0.16, 1, 0.3, 1), filter 1s ease;
            filter: saturate(0.88) contrast(1.12) brightness(0.72);
            position: relative;
            z-index: 0;
        }

        .hero-split:first-child img {
            object-position: center 22%;
        }

        .hero-split:last-child img {
            object-position: center 40%;
        }

        .hero-text-container {
            position: absolute;
            bottom: 7%;
            width: 100%;
            text-align: center;
            z-index: 10;
            overflow: hidden;
            padding: 2rem 0;
        }

        .hero-split .display-text {
            font-size: clamp(4.8rem, 11vw, 13rem);
            margin: 0;
            mix-blend-mode: screen;
            opacity: 1;
            transform: translate3d(calc(var(--shift-x) * -0.3), calc(var(--shift-y) * -0.2), 0) scale(1);
            letter-spacing: -0.06em;
            text-shadow:
                0 18px 54px rgba(0, 0, 0, 0.22),
                0 0 28px rgba(255, 94, 53, 0.08);
            transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
            line-height: 0.82;
        }

        .hero-meta {
            position: absolute;
            top: 2rem;
            left: 2rem;
            max-width: 200px;
            z-index: 10;
            opacity: 1;
            transform: translate3d(0, 0, 0);
            transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .hero-meta p {
            color: rgba(245, 237, 228, 0.7);
            text-shadow: 0 8px 24px rgba(0, 0, 0, 0.26);
        }

        #home.active::before {
            animation: heroVeilIn 1.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        #home.active::after {
            animation: heroDividerIn 1.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        #home.active .hero-split::after {
            animation: heroGlowIn 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        #home.active .hero-split img {
            animation:
                heroImageIn 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards,
                heroImageFloat 12s ease-in-out 1.8s infinite alternate;
        }

        #home.active .hero-meta {
            animation: heroMetaIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
        }

        #home.active .hero-split .display-text {
            animation: heroTitleIn 1.3s cubic-bezier(0.16, 1, 0.3, 1) both;
        }

        #home.active .hero-split:first-child .hero-meta,
        #home.active .hero-split:first-child .display-text {
            animation-delay: 0.12s;
        }

        #home.active .hero-split:last-child .hero-meta,
        #home.active .hero-split:last-child .display-text {
            animation-delay: 0.28s;
        }

        @keyframes heroVeilIn {
            from { opacity: 0; transform: scale(1.08); }
            to { opacity: 0.78; transform: scale(1); }
        }

        @keyframes heroDividerIn {
            from { opacity: 0; transform: translateX(-50%) scaleY(0.6); }
            to { opacity: 0.55; transform: translateX(-50%) scaleY(1); }
        }

        @keyframes heroGlowIn {
            from { opacity: 0; transform: scale(1.08); }
            to { opacity: 0.62; transform: scale(1); }
        }

        @keyframes heroImageIn {
            from {
                transform: scale(1.24) translate3d(0, 34px, 0);
                filter: saturate(0.72) contrast(1) brightness(0.58);
            }
            to {
                transform: scale(1.08) translate3d(calc(var(--shift-x) * 0.7), calc(var(--shift-y) * 0.7), 0);
                filter: saturate(0.98) contrast(1.1) brightness(0.88);
            }
        }

        @keyframes heroImageFloat {
            from {
                transform: scale(1.08) translate3d(calc(var(--shift-x) * 0.6), calc(var(--shift-y) * 0.65), 0);
            }
            to {
                transform: scale(1.11) translate3d(calc(var(--shift-x) * 0.8), calc((var(--shift-y) * 0.8) - 12px), 0);
            }
        }

        @keyframes heroMetaIn {
            from { opacity: 0; transform: translate3d(0, 28px, 0); }
            to { opacity: 1; transform: translate3d(0, 0, 0); }
        }

        @keyframes heroTitleIn {
            from {
                opacity: 0;
                transform: translate3d(0, 72px, 0) scale(0.92);
                letter-spacing: -0.11em;
            }
            to {
                opacity: 1;
                transform: translate3d(calc(var(--shift-x) * -0.3), calc(var(--shift-y) * -0.2), 0) scale(1);
                letter-spacing: -0.06em;
            }
        }

        @keyframes grainDrift {
            0% { transform: translate3d(0, 0, 0); }
            25% { transform: translate3d(-0.5%, 0.6%, 0); }
            50% { transform: translate3d(0.4%, -0.4%, 0); }
            75% { transform: translate3d(0.6%, 0.3%, 0); }
            100% { transform: translate3d(-0.4%, -0.5%, 0); }
        }

        @keyframes ambientPulse {
            from { opacity: 0.38; transform: scale(1); }
            to { opacity: 0.58; transform: scale(1.03); }
        }

        
        #about .about-grid {
            display: grid;
            grid-template-columns: 4fr 5fr;
            gap: 6rem;
            align-items: center;
            height: calc(100vh - 8rem);
        }

        .about-image-wrapper {
            position: relative;
            height: 80vh;
        }
        
        .about-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-image-wrapper::after {
            content: 'REF. 084 / ARCHIVE';
            position: absolute;
            bottom: -2rem;
            right: 0;
            font-family: var(--font-mono);
            font-size: 0.65rem;
            color: var(--text-muted);
        }

        .about-content h1 {
            font-size: 5rem;
            color: var(--cherry-red);
            margin-bottom: 2rem;
        }

        .about-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            max-width: 600px;
            color: #333;
        }

        .experience-list {
            margin-top: 4rem;
            border-top: 1px solid rgba(0,0,0,0.1);
        }

        .experience-item {
            display: grid;
            grid-template-columns: 1fr 3fr;
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
        }

        .experience-item .year {
            font-family: var(--font-mono);
            color: var(--cherry-red);
        }

        .experience-item h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        
        #media-kit h1 {
            font-size: 6rem;
            margin-bottom: 1rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4rem;
            margin: 6rem 0;
        }

        .stat-card {
            border-left: 2px solid var(--cherry-red);
            padding-left: 2rem;
        }

        .stat-value {
            font-family: var(--font-display);
            font-size: 5rem;
            color: var(--vermilion);
            line-height: 1;
            margin-bottom: 1rem;
        }

        .stat-label {
            font-weight: 500;
            font-size: 1.1rem;
            color: var(--text-main);
        }

        .mk-download {
            margin-top: 4rem;
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        
        #blog h1 {
            font-size: 6rem;
            color: var(--cherry-red);
            margin-bottom: 3rem;
        }

        .blog-filters {
            display: flex;
            gap: 2rem;
            margin-bottom: 4rem;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            padding-bottom: 1rem;
        }

        .filter-btn {
            background: none;
            border: none;
            font-family: var(--font-mono);
            font-size: 0.8rem;
            text-transform: uppercase;
            cursor: pointer;
            color: var(--text-muted);
            transition: color 0.3s;
        }

        .filter-btn.active, .filter-btn:hover {
            color: var(--cherry-red);
        }

        .article-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 4rem;
        }

        .article-card {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            text-decoration: none;
            color: inherit;
            group: hover;
        }

        .article-img-wrapper {
            width: 100%;
            height: 400px;
            overflow: hidden;
        }

        .article-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .article-card:hover .article-img-wrapper img {
            transform: scale(1.05);
        }

        .article-card h2 {
            font-size: 2.5rem;
            line-height: 1.1;
            transition: color 0.3s;
        }

        .article-card:hover h2 {
            color: var(--cherry-red);
        }

        
        #contacts {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .contact-info h1 {
            font-size: 7rem;
            color: var(--vermilion);
            margin-bottom: 2rem;
            word-wrap: break-word;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 3rem;
            max-width: 500px;
        }

        .form-group {
            position: relative;
        }

        .form-group input, .form-group textarea {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid var(--text-main);
            padding: 1rem 0;
            font-family: var(--font-body);
            font-size: 1.1rem;
            color: var(--text-main);
            outline: none;
            border-radius: 0;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-group label {
            position: absolute;
            left: 0;
            top: 1rem;
            font-family: var(--font-mono);
            font-size: 0.75rem;
            text-transform: uppercase;
            color: var(--text-muted);
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .form-group input:focus ~ label,
        .form-group input:valid ~ label,
        .form-group textarea:focus ~ label,
        .form-group textarea:valid ~ label {
            top: -1rem;
            font-size: 0.65rem;
            color: var(--cherry-red);
        }

        .form-group input:focus, .form-group textarea:focus {
            border-bottom-color: var(--cherry-red);
        }

        @media (prefers-reduced-motion: reduce) {
            body::before,
            body::after,
            #home::before,
            #home::after,
            .hero-split::after,
            .hero-split img,
            .hero-split .display-text,
            .hero-meta {
                transition: none !important;
                transform: none !important;
                opacity: 1 !important;
                animation: none !important;
                filter: saturate(1) contrast(1.08) brightness(0.95) !important;
            }
        }
