:root {
    --nav-h: 80px;
    --bg-dark: #000000;
    --bg-anthracite: #1a1a1a;
    --white: #ffffff;
    --pt-serif: "PT Serif", serif;
    --satoshi: 'Satoshi', sans-serif;
    --cubic: cubic-bezier(0.23, 1, 0.32, 1);
    --container-w: 1200px;
    --side-gutter: 25px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body,
html {
    width: 100%;
    background-color: var(--bg-dark);
    color: var(--white);
    font-family: var(--satoshi);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ÐšÐ¾Ð³Ð´Ð° Ð¿Ð¾Ð¿Ð°Ð¿ Ð¾Ñ‚ÐºÑ€Ñ‹Ñ‚ */
body.no-scroll {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden !important;
}

/* ===== NAVIGATION ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 10000;
    display: flex;
    align-items: center;
    background-color: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    width: 100%;
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 var(--side-gutter);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 35px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.6;
    transition: 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}


/* Ð¡Ð¾ÑÑ‚Ð¾ÑÐ½Ð¸Ðµ Ð°ÐºÑ‚Ð¸Ð²Ð½Ð¾Ð¹ ÑÑÑ‹Ð»ÐºÐ¸ */
.nav-links a.active {
    opacity: 1;
    position: relative;
}

/* Ð›Ð¸Ð½Ð¸Ñ Ð¿Ð¾Ð´ Ñ‚ÐµÐºÑÑ‚Ð¾Ð¼ */
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    /* Ð Ð°ÑÑÑ‚Ð¾ÑÐ½Ð¸Ðµ Ð¾Ñ‚ Ñ‚ÐµÐºÑÑ‚Ð° Ð´Ð¾ Ð»Ð¸Ð½Ð¸Ð¸ */
    left: 0;
    width: 100%;
    height: 2px;
    /* Ð¢Ð¾Ð»Ñ‰Ð¸Ð½Ð° Ð»Ð¸Ð½Ð¸Ð¸ */
    background-color: var(--white);
}

/* Burger Button */
.burger-btn {
    display: none;
    /* ÐŸÐ¾ ÑƒÐ¼Ð¾Ð»Ñ‡Ð°Ð½Ð¸ÑŽ ÑÐºÑ€Ñ‹Ñ‚ Ð½Ð° Ð´ÐµÑÐºÑ‚Ð¾Ð¿Ðµ */
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10001;
    padding: 10px;
}

.burger-btn span {
    width: 28px;
    height: 2px;
    background-color: var(--white);
    transition: 0.4s var(--cubic);
}

/* Ð¡Ð¾ÑÑ‚Ð¾ÑÐ½Ð¸Ðµ ÐºÑ€ÐµÑÑ‚Ð¸ÐºÐ° */
.burger-btn.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-btn.is-active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ÐœÐ¾Ð±Ð¸Ð»ÑŒÐ½Ð¾Ðµ Ð¼ÐµÐ½ÑŽ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-dark);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: right 0.6s var(--cubic);
}

.mobile-menu.is-active {
    right: 0;
}

.mobile-menu a {
    font-family: var(--pt-serif);
    padding: 10px 16px;
    margin: -10px -16px;
    font-size: 32px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s var(--cubic);
}

/* ÐÐ½Ð¸Ð¼Ð°Ñ†Ð¸Ñ Ð¿Ð¾ÑÐ²Ð»ÐµÐ½Ð¸Ñ ÑÑÑ‹Ð»Ð¾Ðº Ð² Ð¼ÐµÐ½ÑŽ */
.mobile-menu.is-active a {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

/* ===== ÐÐ”ÐÐŸÐ¢Ð˜Ð’ ===== */
@media (max-width: 991px) {
    .nav-links {
        display: none;
        /* ÐŸÑ€ÑÑ‡ÐµÐ¼ Ð¾Ð±Ñ‹Ñ‡Ð½Ñ‹Ðµ ÑÑÑ‹Ð»ÐºÐ¸ */
    }

    .burger-btn {
        display: flex;
        /* ÐŸÐ¾ÐºÐ°Ð·Ñ‹Ð²Ð°ÐµÐ¼ Ð±ÑƒÑ€Ð³ÐµÑ€ */
    }
}

/* ===== MINIMAL FOOTER ===== */
.footer {
    background-color: var(--bg-anthracite);
    color: var(--white);
    padding: 32px 0 18px;
    font-family: var(--satoshi);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-container {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 var(--side-gutter);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    line-height: 0;
}

.footer-logo img {
    height: 28px;
    width: auto;
}

.footer-address {
    font-style: normal;
    font-size: 9px;
    line-height: 1.5;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.4;
    max-width: 200px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 14px;
    padding-left: 14px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-socials img {
    width: 13px;
    height: 13px;
    opacity: 0.55;
    transition: opacity 0.3s, transform 0.3s;
}

.footer-socials a:hover img {
    opacity: 1;
    transform: translateY(-2px);
}

.footer-nav-wrapper ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 26px;
}

.footer-nav-wrapper a {
    color: var(--white);
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.footer-nav-wrapper a:hover {
    opacity: 1;
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 12px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-align: center;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.footer-bottom .footer-dev {
    opacity: 0.25;
    font-size: 8px;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .footer {
        padding: 24px 0 16px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin-bottom: 14px;
    }

    .footer-left {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer-logo img {
        height: 24px;
    }

    .footer-address {
        display: none;
    }

    .footer-socials {
        margin-left: 0;
        padding-left: 0;
        border-left: 0;
        gap: 14px;
    }

    .footer-nav-wrapper ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .footer-divider {
        margin-bottom: 10px;
    }

    .footer-bottom {
        font-size: 9px;
        letter-spacing: 0.1em;
    }
}



/* ===== 1. CORE & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html, body {
    width: 100%;
    background-color: var(--bg-dark);
    color: var(--white);
    font-family: var(--satoshi);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: var(--container-w);
    margin: 0 auto;
    padding: 0 var(--side-gutter);
}

img {
    display: block;
    max-width: 100%;
}

/* ===== 3. BOSS SECTIONS (VIDEO PLACES) ===== */
.boss-page {
    padding-top: var(--nav-h);
}

.boss-section {
    padding-bottom:var(--nav-h) ;
}

.boss-section.bg-anthracite{
    padding-top: var(--nav-h);
}

.bg-dark { background-color: var(--bg-dark); }
.bg-anthracite { background-color: var(--bg-anthracite); }

.boss-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.boss-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.boss-static-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--cubic);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    cursor: pointer;
    position: relative;
}

.boss-media:hover .boss-static-img {
    transform: scale(1.05);
}

.play-overlay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s var(--cubic);
    z-index: 2;
    pointer-events: none;
}

.play-overlay-btn svg {
    width: 24px;
    fill: #fff;
}

.boss-media:hover .play-overlay-btn {
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) scale(1.1);
}

.boss-info h2 {
    font-family: var(--pt-serif);
    font-size: clamp(24px, 4vw, 32px);
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.description-block p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.6;
}

/* ===== 4. LOZU SECTIONS (3:4 PHOTOS) ===== */
.lozu-section {
    padding-top:var(--nav-h);
    padding-bottom: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lozu-row {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.lozu-row.reverse {
    flex-direction: row-reverse;
}

.lozu-media {
    flex: 0 0 36%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.lozu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.8s var(--cubic), transform 0.8s var(--cubic);
    display: block;
}

.lozu-row:hover .lozu-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.lozu-info {
    flex: 1;
}

.lozu-number {
    font-family: var(--pt-serif);
    font-size: 60px;
    font-weight: 700;
    opacity: 0.7;
    margin-bottom: 10px;
    display: block;
}

.lozu-info h2 {
    font-family: var(--pt-serif);
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.lozu-info p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.7;
    margin-bottom: 20px;
}

/* ===== 5. VIDEO POPUP ===== */
.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s var(--cubic);
    cursor: none; 
}

.video-popup.is-active {
    display: flex;
    opacity: 1;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(15px);
}

.popup-content {
    position: relative;
    width: 85%;
    max-width: 1000px;
    transform: translateY(-100px);
    transition: transform 0.6s var(--cubic);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    background: #000;
    line-height: 0;
}

.video-popup.is-active .popup-content {
    transform: translateY(0);
}

.popup-content video {
    width: 100%;
    height: auto;
    max-height: 80vh;
    display: block;
}

.video-popup.is-active #cursorClose {
    opacity: 1;
    visibility: visible;
}

.video-popup.is-active {
    cursor: default;
}

.close-popup {
    display: none;
}

#cursorClose {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 21000;
    font-family: var(--satoshi);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease; 
}

/* ===== 7. RESPONSIVE ===== */
@media (max-width: 991px) {
    .boss-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 960px) {
    .lozu-row, .lozu-row.reverse {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .lozu-media {
        width: 80%;
        max-width: 400px;
    }

    .lozu-info { width: 100%; }
}

@media (max-width: 768px) {
    .play-overlay-btn {
        width: 40px;
        height: 40px;
        transform: translate(-50%, -50%); 
    }

    .play-overlay-btn svg {
        width: 12px;
        height: 12px;
    }
}
