/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    min-height: 100%;

    overflow-x: hidden;

    background: #202020;
    color: #f4f4f1;

    font-family: Arial, Helvetica, sans-serif;
}



/* =========================================
   FIXED NAVIGATION
========================================= */

.top-nav {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 40px;

    background: rgba(20, 20, 20, 0.97);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);

    z-index: 1000;
}


/* LEFT LINKS */

.nav-links {
    display: flex;
    align-items: center;

    gap: 34px;
}

.nav-links a {
    color: #fff;

    text-decoration: none;

    font-size: 13px;
    letter-spacing: 0.08em;

    transition: opacity 0.2s ease;
}

.nav-links a:hover {
    opacity: 0.55;
}


/* CENTER LOGO */

.nav-logo-link {
    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo {
    display: block;

    width: 82px;
    height: auto;

    transition: transform 0.25s ease;
}

.nav-logo-link:hover .nav-logo {
    transform: scale(1.1);
}


/* RIGHT ICONS */

.nav-icons {
    margin-left: auto;

    display: flex;
    align-items: center;

    gap: 10px;
}

.nav-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;

    border:
        1px solid rgba(255, 255, 255, 0.18);

    color: #fff;

    font-size: 19px;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.nav-icon:hover {
    background: #fff;
    color: #000;
}



/* =========================================
   CENTRAL BLACK SHEET
========================================= */

.page-sheet {
    position: relative;

    width: calc(100% - 520px);
    max-width: 1180px;

    min-height: 100vh;

    margin: 0 auto;

    background: #050505;

    box-shadow:
        -18px 0 45px rgba(0, 0, 0, 0.16),
         18px 0 45px rgba(0, 0, 0, 0.16);

    z-index: 2;
}



/* =========================================
   SIDE BACKGROUND
========================================= */

.background-cards {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 1400px;

    overflow: hidden;

    pointer-events: none;

    z-index: 1;
}



/* =========================================
   SIDE MONEY
========================================= */

.money-bg {
    position: absolute;

    width: 430px;
    height: auto;

    opacity: 0.13;

    filter:
        grayscale(100%)
        brightness(0.75)
        contrast(1.15);

    pointer-events: none;
    user-select: none;

    z-index: 0;
}


.hundred-bg {
    top: 180px;
    left: -70px;

    transform: rotate(-12deg);
}

.ten-bg {
    top: 470px;
    left: -65px;

    transform: rotate(12deg);
}

.money-one {
    top: 165px;
    right: -55px;

    transform: rotate(12deg);
}

.money-hundred-right {
    top: 470px;
    right: -60px;

    transform: rotate(-12deg);
}

.hundred2-bg {
    top: 760px;
    left: -70px;

    transform: rotate(-12deg);
}

.money2-one {
    top: 760px;
    right: -55px;

    transform: rotate(12deg);
}

.ten-bg-bottom {
    top: 1070px;
    left: -65px;

    transform: rotate(12deg);
}

.hundred-bg-right-bottom {
    top: 1070px;
    right: -65px;

    transform: rotate(-12deg);
}



/* =========================================
   SIDE PHRASES
========================================= */

.side-phrase {
    position: absolute;

    width: 220px;

    color: #fff;

    opacity: 0.10;

    font-size: 17px;
    font-weight: 700;

    line-height: 1.05;

    letter-spacing: 0.03em;

    pointer-events: none;
    user-select: none;

    z-index: 1;
}


.side-slogan {
    top: 100px;
    left: 35px;

    text-align: left;
}

.side-phrase-bottom {
    top: 400px;
    left: 70px;

    text-align: left;
}

.side-slogan-right {
    top: 100px;
    right: 30px;

    text-align: right;
}

.side-phrase-right {
    top: 400px;
    right: 120px;

    text-align: right;
}

.side-phrase-never {
    top: 680px;
    left: 35px;

    text-align: left;
}

.side-phrase-change {
    top: 680px;
    right: 30px;

    text-align: right;
}

.side-phrase-outgrow {
    top: 980px;
    left: 110px;

    text-align: left;
}

.never-settle {
    top: 980px;
    right: 110px;

    text-align: right;
}



/* =========================================
   POLAROID CARDS
========================================= */

.polaroid-card {
    position: absolute;

    width: 190px;

    padding:
        10px
        10px
        34px;

    background: #eeeeea;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.35);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;

    pointer-events: auto;

    z-index: 2;
}


.polaroid-card video {
    display: block;

    width: 100%;
    height: 107px;

    object-fit: cover;

    background: #000;
}


.card-bottom {
    position: absolute;

    left: 12px;
    right: 12px;
    bottom: 10px;

    display: grid;

    grid-template-columns:
        1fr auto 1fr;

    align-items: center;

    color: #161616;

    font-size: 9px;
    letter-spacing: 0.12em;
}

.card-bottom span:first-child {
    justify-self: start;
}

.card-inspired {
    justify-self: center;

    font-size: 7px;
    letter-spacing: 0.18em;

    color: #000;
}

.card-bottom span:last-child {
    justify-self: end;
}



/* =========================================
   CARD POSITIONS
========================================= */

.pantera-card {
    left: 35px;
    top: 160px;

    transform: rotate(6deg);
}

.pantera-card:hover {
    transform:
        rotate(2deg)
        scale(1.07);
}


.model-card {
    left: 35px;
    top: 480px;

    transform: rotate(-6deg);
}

.model-card:hover {
    transform:
        rotate(-2deg)
        scale(1.07);
}


.model2-card {
    right: 35px;
    top: 160px;

    transform: rotate(-6deg);
}

.model2-card:hover {
    transform:
        rotate(-2deg)
        scale(1.07);
}


.model-right-card {
    right: 35px;
    top: 470px;

    transform: rotate(6deg);
}

.model-right-card:hover {
    transform:
        rotate(2deg)
        scale(1.07);
}


.model6-card {
    left: 35px;
    top: 760px;

    transform: rotate(6deg);
}

.model6-card:hover {
    transform:
        rotate(2deg)
        scale(1.07);
}


.model5-card {
    right: 35px;
    top: 760px;

    transform: rotate(-6deg);
}

.model5-card:hover {
    transform:
        rotate(-2deg)
        scale(1.07);
}


.model7-card {
    left: 35px;
    top: 1070px;

    transform: rotate(-6deg);
}

.model7-card:hover {
    transform:
        rotate(-2deg)
        scale(1.07);
}


.model8-card {
    right: 35px;
    top: 1070px;

    transform: rotate(6deg);
}

.model8-card:hover {
    transform:
        rotate(2deg)
        scale(1.07);
}


.polaroid-card:hover {
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.5);
}



/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    width: 100%;
    min-height: 100vh;

    padding:
        130px
        40px
        32px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: #050505;

    overflow: hidden;
}


.invite-block {
    width: 100%;

    margin: auto 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


.drop-count {
    margin-bottom: 22px;

    font-size: 14px;
}


.invite-title {
    width: 100%;

    margin: 0 auto;

    color: #f4f4f1;

    font-size:
        clamp(38px, 5vw, 82px);

    font-weight: 600;

    line-height: 1;

    letter-spacing: -0.045em;

    white-space: nowrap;

    text-align: center;
}


.invite-subtitle {
    margin-top: 22px;

    font-size: 13px;

    line-height: 1.4;

    letter-spacing: 0.12em;

    text-align: center;
}


.event-info {
    margin-top: 12px;

    display: flex;
    justify-content: center;

    gap: 22px;

    font-size: 11px;

    text-align: center;
}


.scroll-link {
    align-self: center;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 16px 32px;

    background: #000;

    border: 1px solid #fff;

    color: #fff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 500;

    letter-spacing: 0.12em;

    text-transform: uppercase;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.scroll-link:hover {
    background: #fff;
    color: #000;

    transform: translateY(-2px);
}



/* =========================================
   MAIN
========================================= */

main {
    position: relative;

    overflow: visible;
}


main > section {
    position: relative;

    z-index: 2;
}



/* =========================================
   MAIN MOVING 1$$ BACKGROUND
========================================= */

.moving-logo-bg {
    position: absolute;

    inset: 0;

    overflow: hidden;

    pointer-events: none;

    z-index: 0;
}



/* =========================================
   SHARED MOVING LOGO STRUCTURE
========================================= */

.moving-line {
    position: absolute;

    left: -25%;

    width: 150%;
    height: 110px;

    overflow: hidden;

    transform: rotate(-45deg);

    pointer-events: none;
}


.moving-track {
    position: absolute;

    top: 0;
    left: 0;

    display: flex;

    width: max-content;

    will-change: transform;
}


.moving-set {
    display: flex;

    align-items: center;

    flex-shrink: 0;

    gap: 80px;

    padding-right: 80px;
}


.moving-set span {
    display: block;

    flex-shrink: 0;

    color: #fff;

    font-size: 42px;
    font-weight: 600;

    letter-spacing: 2px;

    white-space: nowrap;
}


.moving-logo-bg .moving-line {
    opacity: 0.055;
}



/* =========================================
   GENERAL SECTION
========================================= */

.section {
    border-top:
        1px solid #202020;
}


.section-label {
    color: #666;

    font-size: 11px;

    letter-spacing: 2px;
}



/* =========================================
   DROP 001
========================================= */

.drop-section {
    min-height: 760px;

    padding:
        75px
        50px
        80px;
}


.drop-section > .section-label {
    margin-bottom: 25px;
}


.piece-title {
    margin:
        0
        0
        40px;

    color: #f2f2f2;

    font-size: 28px;
    font-weight: 600;

    line-height: 1.1;

    letter-spacing: 0.02em;

    text-align: center;

    text-transform: uppercase;
}



/* PHOTO + COPY */

.split {
    display: grid;

    grid-template-columns:
        380px
        minmax(0, 1fr);

    column-gap: 100px;

    align-items: start;

    max-width: 980px;

    margin: 0 auto;
}



/* =========================================
   PRODUCT GALLERY
========================================= */

.product-gallery {
    width: 380px;
}


.product-image-wrap {
    position: relative;

    width: 380px;
    height: 380px;

    overflow: hidden;

    background: #050505;
}


.product-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;

    opacity: 0;

    transform:
        translateX(30px)
        scale(0.98);

    transition:
        opacity 0.45s ease,
        transform 0.45s ease;

    pointer-events: none;
}


.product-image.active {
    opacity: 1;

    transform:
        translateX(0)
        scale(1);
}



/* GALLERY CONTROLS */

.gallery-controls {
    width: 100%;

    margin-top: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


.gallery-arrow {
    background: transparent;

    border: none;

    color: #fff;

    font-size: 26px;
    font-weight: 300;

    opacity: 0.55;

    cursor: pointer;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


.gallery-arrow:hover {
    opacity: 1;
}


.gallery-prev:hover {
    transform: translateX(-4px);
}


.gallery-next:hover {
    transform: translateX(4px);
}


.gallery-counter {
    color: #777;

    font-size: 12px;

    letter-spacing: 0.15em;
}



/* =========================================
   PRODUCT COPY
========================================= */

.copy {
    max-width: 430px;

    padding-top: 20px;

    color: #999;

    font-size: 16px;

    line-height: 1.65;
}


.copy p {
    margin: 0 0 22px;
}


.copy-signature {
    margin-top: 32px;

    color: #d8d8d8;

    font-size: 13px;

    letter-spacing: 0.10em;
}



/* =========================================
   PRICE / PRODUCT BUTTON
========================================= */

.piece-purchase {
    margin-top: 38px;

    padding-top: 22px;

    border-top:
        1px solid #292929;
}


.piece-price {
    margin-bottom: 22px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
}


.price-label {
    color: #666;

    font-size: 10px;

    letter-spacing: 0.12em;
}


.price-value {
    color: #f2f2f2;

    font-size: 18px;
    font-weight: 500;

    letter-spacing: 0.03em;

    white-space: nowrap;
}


.piece-button {
    width: 100%;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 18px;

    border: 1px solid #444;

    color: #f2f2f2;

    text-decoration: none;

    font-size: 12px;

    letter-spacing: 0.12em;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}


.piece-button span {
    font-size: 20px;

    transition:
        transform 0.25s ease;
}


.piece-button:hover {
    background: #f2f2f2;

    color: #080808;

    border-color: #f2f2f2;
}


.piece-button:hover span {
    transform: translateX(5px);
}



/* =========================================
   ABOUT 1$$ — FULL WIDTH
========================================= */

.brand-story {
    position: relative;

    left: 50%;

    width: 100vw;

    margin-left: -50vw;

    padding:
        68px
        0
        82px;

    overflow: hidden;

    isolation: isolate;

    background: #050505;

    border-top:
        1px solid #202020;

    z-index: 4;
}


/* ABOUT MOVING PATTERN */

.about-pattern {
    position: absolute;

    inset: 0;

    overflow: hidden;

    pointer-events: none;

    z-index: 0;
}


.about-pattern .moving-line {
    opacity: 0.07;
}



/* ABOUT CONTENT */

.about-inner {
    position: relative;

    width: calc(100% - 120px);
    max-width: 1340px;

    margin: 0 auto;

    z-index: 2;
}



/* ABOUT TOP */

.about-heading-row {
    position: relative;

    min-height: 50px;

    margin-bottom: 48px;

    display: flex;
    align-items: center;
}


.about-label {
    margin: 0;
}


.about-main-title {
    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 13px;

    color: #f2f2f2;

    font-size: 24px;
    font-weight: 600;

    letter-spacing: 0.02em;

    white-space: nowrap;
}


.about-main-logo {
    width: 62px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid #383838;

    background:
        rgba(5, 5, 5, 0.82);
}


.about-main-logo img {
    display: block;

    width: 38px;
    height: auto;
}



/* =========================================
   ABOUT STORY GRID
========================================= */

.brand-story-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 54px;
}


.story-block {
    min-width: 0;

    padding-top: 22px;

    border-top:
        1px solid #292929;
}


.story-number {
    display: block;

    margin-bottom: 28px;

    color: #555;

    font-size: 10px;

    letter-spacing: 0.12em;
}


.story-block h3 {
    margin:
        0
        0
        18px;

    color: #f2f2f2;

    font-size: 20px;
    font-weight: 600;

    letter-spacing: 0.02em;
}


.story-block p {
    margin:
        0
        0
        14px;

    color: #8c8c8c;

    font-size: 14px;

    line-height: 1.6;
}


.brand-signature {
    margin-top: 28px;

    color: #d8d8d8;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.16em;
}



/* =========================================
   FINAL DROP SECTION
========================================= */

.buy-section {
    position: relative;

    left: 50%;
    width: 100vw;
    margin-left: -50vw;

    min-height: 70vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: #050505;

    border-top: none;

    overflow: hidden;

    z-index: 4;
}


.buy-section p {
    color: #555;

    font-size: 11px;

    letter-spacing: 4px;
}


.buy-section h2 {
    margin:
        20px
        0
        40px;

    color: #f2f2f2;

    font-size:
        clamp(40px, 7vw, 90px);
}


.buy-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 18px 35px;

    background: transparent;

    border: 1px solid #444;

    color: #fff;

    text-decoration: none;

    font-size: 11px;

    letter-spacing: 3px;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}


.buy-btn:hover {
    background: #fff;

    color: #000;
}



/* =========================================
   FOOTER
========================================= */

footer {
    position: relative;

    left: 50%;
    width: 100vw;
    margin-left: -50vw;

    padding: 25px 60px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #050505;

    border-top: 1px solid #202020;

    color: #555;

    font-size: 11px;

    z-index: 4;
}



/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

    .page-sheet {
        width: calc(100% - 80px);
    }

    .background-cards {
        display: none;
    }

    .split {
        column-gap: 60px;
    }

}


@media (max-width: 900px) {

    .top-nav {
        padding:
            0
            22px;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        font-size: 11px;
    }


    .page-sheet {
        width: 100%;
    }


    .invite-title {
        white-space: normal;

        font-size:
            clamp(42px, 9vw, 72px);
    }


    .drop-section {
        padding:
            70px
            30px;
    }


    .split {
        grid-template-columns: 1fr;

        gap: 45px;

        max-width: 500px;
    }


    .product-gallery {
        width: 100%;
    }


    .product-image-wrap {
        width: 100%;

        height: auto;

        aspect-ratio: 1 / 1;
    }


    .copy {
        max-width: none;
    }


    .about-inner {
        width:
            calc(100% - 50px);
    }


    .about-heading-row {
        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 28px;

        margin-bottom: 45px;
    }


    .about-main-title {
        position: static;

        transform: none;

        align-self: center;
    }


    .brand-story-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

}


@media (max-width: 600px) {

    .top-nav {
        height: 74px;
    }


    .nav-links {
        gap: 12px;
    }


    .nav-links a:nth-child(2) {
        display: none;
    }


    .nav-logo {
        width: 66px;
    }


    .nav-icon {
        width: 35px;
        height: 35px;
    }


    .hero {
        padding:
            105px
            20px
            25px;
    }


    .event-info {
        flex-direction: column;

        gap: 7px;
    }


    .piece-title {
        font-size: 23px;
    }


    .drop-section {
        padding:
            60px
            20px;
    }


    .piece-price {
        align-items: flex-start;

        flex-direction: column;
    }


    .about-inner {
        width:
            calc(100% - 36px);
    }


    .about-main-title {
        font-size: 20px;
    }


    .about-main-logo {
        width: 54px;
        height: 38px;
    }


    footer {
        padding:
            22px
            20px;
    }

}/* =========================================
   LANGUAGE SWITCHER
========================================= */

.language-switcher {
    position: relative;

    width: 42px;
    height: 42px;

    flex-shrink: 0;
}


/* PLANET */

.language-toggle {
    position: absolute;

    inset: 0;

    font-size: 18px;

    transition:
        opacity 0.25s ease,
        transform 0.35s cubic-bezier(.2, .8, .2, 1);
}


/* PLANET DISAPPEARS */

.language-switcher.open .language-toggle {
    opacity: 0;

    transform:
        scale(0.55)
        rotate(-35deg);

    pointer-events: none;
}


/* LANGUAGE MENU */

.language-options {
    position: absolute;

    right: 0;
    top: 0;

    height: 42px;

    display: flex;
    align-items: center;

    gap: 6px;

    opacity: 0;

    transform:
        translateX(10px)
        scale(0.9);

    transform-origin: right center;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        transform 0.35s cubic-bezier(.2, .8, .2, 1);
}


/* MENU APPEARS */

.language-switcher.open .language-options {
    opacity: 1;

    transform:
        translateX(0)
        scale(1);

    pointer-events: auto;
}


/* EN / UA */

.language-option {
    min-width: 48px;
    height: 42px;

    padding: 0 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(15, 15, 15, 0.96);

    border:
        1px solid rgba(255, 255, 255, 0.18);

    color: #777;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.12em;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.language-option:hover {
    color: #fff;

    border-color: #666;

    background: #191919;

    transform: translateY(-2px);
}


/* CURRENT LANGUAGE */

.language-option.active {
    color: #fff;

    border-color: #777;
}


/* SMALL FADE WHEN TEXT CHANGES */

body.language-changing main,
body.language-changing .hero,
body.language-changing .nav-links {
    opacity: 0.82;
}

main,
.hero,
.nav-links {
    transition: opacity 0.18s ease;
}.brand-story {
    margin-bottom: 0;
}

.buy-section {
    margin-top: 0;
}.buy-section {
    margin-bottom: 0;
}

footer {
    margin-top: 0;
}