/* =========================================================
   MANNY'S HOUSE PRODUCTIONS
   HOME PAGE — CLEAN MASTER CSS
   ========================================================= */


/* =========================================================
   BRAND COLORS
   ========================================================= */

:root {
    --black: #000000;
    --off-black: #080808;
    --panel-black: #0d0d0d;

    --white: #ffffff;
    --soft-white: #f4f4f4;
    --gray: #9b9b9b;

    --blue: #2e7bb1;
}


/* =========================================================
   RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: var(--black);
    color: var(--white);

    font-family: Arial, Helvetica, sans-serif;

    overflow-x: hidden;
}

img,
video {
    display: block;

    width: 100%;
    height: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   FIXED HEADER
   ========================================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 78px;

    padding: 0 38px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    z-index: 1000;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0)
        );
}

.header-brand {
    color: var(--white);

    font-size: 13px;
    font-weight: 900;

    letter-spacing: 3px;
}

.header-nav {
    display: flex;

    align-items: center;

    gap: 25px;
}

.header-nav a {
    color: var(--white);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 2px;

    transition: color 0.25s ease;
}

.header-nav a:hover {
    color: var(--blue);
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    width: 100%;
    height: 100vh;

    min-height: 700px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: var(--black);
}


/* =========================================================
   HERO VIDEO MARQUEE
   ========================================================= */

.hero-marquee {
    position: absolute;

    inset: 0;

    overflow: hidden;

    z-index: 1;
}

.marquee-track {
    position: absolute;

    top: 10vh;
    left: 0;

    height: 80vh;

    display: flex;

    gap: 14px;

    width: max-content;

    animation:
        house-scroll
        40s
        linear
        infinite;
}

.hero-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.hero-tile {
    position: relative;

    width:
        clamp(
            300px,
            31vw,
            520px
        );

    height: 100%;

    flex-shrink: 0;

    overflow: hidden;

    background: #111111;
}

.hero-tile video {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        grayscale(20%)
        brightness(0.85);

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}

.hero-tile:hover video {
    transform: scale(1.03);

    filter:
        grayscale(0%)
        brightness(1);
}

@keyframes house-scroll {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================================
   HERO OVERLAY
   ========================================================= */

.hero-shade {
    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.65) 30%,
            rgba(0, 0, 0, 0.22) 65%,
            rgba(0, 0, 0, 0.08) 100%
        );
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {
    position: relative;

    z-index: 10;

    width:
        min(
            1250px,
            90%
        );

    margin: 0 auto;
}

.section-kicker {
    margin-bottom: 24px;

    color: var(--blue);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 5px;
}

.hero h1 {
    max-width: 1050px;

    color: var(--white);

    font-family:
        Impact,
        "Arial Black",
        sans-serif;

    font-size:
        clamp(
            75px,
            12vw,
            180px
        );

    font-weight: 900;

    line-height: 0.78;

    letter-spacing: -4px;
}

.hero h1 span {
    display: block;

    margin-top: 28px;

    color: var(--blue);

    font-size: 0.58em;
}

.hero-positioning {
    margin-top: 48px;

    color: #d7d7d7;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 3px;

    line-height: 1.7;
}

.hero-positioning span {
    margin: 0 12px;

    color: var(--blue);
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 14px;

    flex-wrap: wrap;

    margin-top: 28px;
}

.hero-buttons .primary-button {
    margin-top: 0;
}

.instagram-button {
    background: transparent;

    border:
        1px solid
        rgba(255, 255, 255, 0.45);
}


/* =========================================================
   STORY SYSTEM — DESKTOP
   ========================================================= */

.story-section {
    position: relative;

    display: grid;

    grid-template-columns:
        55%
        45%;

    width: 100%;

    background: var(--black);
}

.story-section.reverse {
    grid-template-columns:
        45%
        55%;
}

.story-section.reverse .story-visual {
    grid-column: 2;
    grid-row: 1;
}

.story-section.reverse .story-copy {
    grid-column: 1;
    grid-row: 1;
}


/* =========================================================
   STICKY VISUAL SIDE
   ========================================================= */

.story-visual {
    position: sticky;

    top: 0;

    height: 100vh;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            #1a1a1a 0%,
            #050505 75%
        );
}

.visual-frame {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;

    transform: scale(1.04);

    pointer-events: none;

    transition:
        opacity 0.8s ease,
        transform 1.2s ease;
}

.visual-frame.active {
    opacity: 1;

    transform: scale(1);

    pointer-events: auto;

    z-index: 5;
}

.visual-frame img,
.visual-frame video {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.visual-frame::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.32),
            rgba(0, 0, 0, 0.02)
        );
}

.visual-label {
    position: absolute;

    left: 30px;
    bottom: 28px;

    z-index: 20;

    color:
        rgba(
            255,
            255,
            255,
            0.62
        );

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 3px;
}


/* =========================================================
   STORY COPY SIDE
   ========================================================= */

.story-copy {
    position: relative;

    background: var(--panel-black);
}

.story-panel {
    min-height: 100vh;

    display: flex;

    align-items: center;

    padding:
        100px
        clamp(
            40px,
            6vw,
            95px
        );

    opacity: 0.22;

    transition:
        opacity
        0.6s
        ease;
}

.story-panel.active {
    opacity: 1;
}

.panel-inner {
    width: 100%;

    max-width: 650px;
}

.story-number {
    display: block;

    margin-bottom: 16px;

    color: var(--blue);

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 3px;
}

.story-label {
    margin-bottom: 24px;

    color: var(--gray);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 4px;
}

.story-panel h2 {
    margin-bottom: 37px;

    color: var(--white);

    font-family:
        Impact,
        "Arial Black",
        sans-serif;

    font-size:
        clamp(
            45px,
            5.4vw,
            82px
        );

    line-height: 0.91;

    letter-spacing: -1px;
}

.story-panel h2 span {
    display: block;

    color: var(--blue);
}

.story-panel p {
    max-width: 590px;

    margin-bottom: 19px;

    color: #c9c9c9;

    font-size: 15px;

    line-height: 1.8;
}

.accent-copy {
    color:
        var(--blue)
        !important;

    font-weight: 700;
}


/* =========================================================
   PRIMARY BUTTONS
   ========================================================= */

.primary-button {
    display: inline-flex;

    align-items: center;

    gap: 24px;

    margin-top: 28px;

    padding:
        18px
        23px;

    border:
        1px solid
        var(--blue);

    color: var(--blue);

    background: transparent;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 3px;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}

.primary-button:hover {
    color: var(--white);

    background: var(--blue);

    transform:
        translateY(-2px);
}


/* =========================================================
   SECTION BACKGROUNDS
   ========================================================= */

.visuals-section .story-copy {
    background: #0b0b0b;
}

.development-section .story-copy {
    background: #080808;
}

.live-section .story-copy {
    background: #0d0d0d;
}

.work-section .story-copy {
    background: #070707;
}


/* =========================================================
   LIVE SECTION
   ========================================================= */

.ticket-example {
    margin: 32px 0;

    padding:
        8px
        0
        8px
        22px;

    border-left:
        3px solid
        var(--blue);
}

.ticket-example span {
    display: block;

    margin-bottom: 9px;

    color: var(--gray);

    font-size: 12px;

    letter-spacing: 3px;
}

.ticket-example strong {
    display: block;

    color: var(--white);

    font-family:
        Impact,
        "Arial Black",
        sans-serif;

    font-size:
        clamp(
            24px,
            3vw,
            38px
        );

    letter-spacing: 1px;
}

.event-date {
    color:
        var(--blue)
        !important;

    font-weight: 900;

    letter-spacing: 4px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    min-height: 230px;

    padding:
        60px
        40px;

    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    background: #020202;

    border-top:
        1px solid
        #151515;

    color: #666666;

    font-size: 8px;
    font-weight: 700;

    letter-spacing: 2px;
}


/* =========================================================
   MOBILE — EXISTING STORY EXPERIENCE
   ========================================================= */

@media (max-width: 850px) {

    .site-header {
        height: 65px;

        padding:
            0
            18px;
    }

    .header-nav {
        display: none;
    }


    /* HERO */

    .hero {
        height: 100svh;

        min-height: 100svh;
    }

    .marquee-track {
        top: 0;

        height: 100%;
    }

    .hero-tile {
        width: 78vw;
    }

    .hero-shade {
        background:
            linear-gradient(
                to top,
                rgba(0, 0, 0, 0.98) 0%,
                rgba(0, 0, 0, 0.78) 38%,
                rgba(0, 0, 0, 0.28) 70%,
                rgba(0, 0, 0, 0.10) 100%
            );
    }

    .hero-content {
        align-self: flex-end;

        margin-bottom: 65px;
    }

    .section-kicker {
        font-size: 9px;

        letter-spacing: 4px;
    }

    .hero h1 {
        font-size:
            clamp(
                64px,
                21vw,
                105px
            );

        letter-spacing: -2px;
    }

    .hero-positioning {
        font-size: 9px;

        line-height: 2;

        letter-spacing: 2px;
    }

    .hero-buttons {
        display: flex;

        flex-direction: row;

        align-items: center;

        gap: 10px;

        flex-wrap: wrap;
    }

    .hero-buttons .primary-button {
        width: auto;

        flex:
            0
            0
            auto;

        justify-content: center;
    }


    /* STORY */

    .story-section,
    .story-section.reverse {
        display: block;
    }

    .story-section.reverse .story-visual,
    .story-section.reverse .story-copy {
        grid-column: auto;
        grid-row: auto;
    }

    .story-visual {
        position: sticky;

        top: 0;

        width: 100%;
        height: 100svh;
    }

    .story-copy {
        position: relative;

        z-index: 30;

        margin-top: -100svh;

        background:
            transparent
            !important;
    }

    .story-panel {
        position: relative;

        min-height: 100svh;

        align-items: flex-end;

        padding:
            120px
            26px
            60px;

        opacity: 1;

        background:
            linear-gradient(
                to top,
                rgba(0, 0, 0, 0.98) 0%,
                rgba(0, 0, 0, 0.82) 36%,
                rgba(0, 0, 0, 0.22) 72%,
                rgba(0, 0, 0, 0.05) 100%
            );
    }

    .panel-inner {
        max-width: 94%;
    }

    .story-panel h2 {
        font-size:
            clamp(
                45px,
                14vw,
                72px
            );
    }

    .story-panel p {
        font-size: 14px;

        line-height: 1.65;
    }

    .visual-label {
        display: none;
    }


    /* FOOTER */

    .site-footer {
        min-height: 280px;

        padding:
            45px
            22px;

        flex-direction: column;

        justify-content: flex-end;
        align-items: flex-start;
    }

}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 480px) {

    .hero h1 {
        font-size: 19vw;
    }

    .hero h1 span {
        margin-top: 18px;
    }

    .story-panel {
        padding:
            100px
            20px
            45px;
    }

    .story-panel h2 {
        font-size: 13vw;
    }

    .primary-button {
        width: auto;

        justify-content: center;
    }

}


/* =========================================================
   MANNY'S HOUSE APPAREL
   CLEAN FINAL STOREFRONT
   ========================================================= */


/* =========================================================
   STORE
   ========================================================= */

.apparel-store {
    position: relative;

    width: 100%;

    padding:
        35px
        clamp(24px, 4vw, 65px)
        90px;

    background: #050505;
    color: #ffffff;

    overflow: hidden;
}


/* =========================================================
   INTRO
   ========================================================= */

.apparel-storefront-intro {
    width: 100%;

    margin:
        0
        auto
        30px;

    text-align: center;
}


/* =========================================================
   MANNY'S HOUSE / APPAREL
   ========================================================= */

.apparel-billboard {
    width: 100%;

    margin: 0;

    text-align: center;
}


.apparel-billboard h2 {
    margin: 0;

    color: #ffffff;

    font-family:
        Impact,
        "Arial Black",
        sans-serif;

    font-size:
        clamp(90px, 10vw, 160px);

    font-weight: 900;

    line-height: 0.78;

    letter-spacing: -4px;

    text-align: center;
    text-transform: uppercase;
}


.apparel-billboard h2 span {
    display: block;

    margin-bottom: 8px;

    color: var(--blue);
}


/* =========================================================
   CENSORED COLLECTION
   ========================================================= */

.apparel-collection-intro {
    width: 100%;
    max-width: 700px;

    margin:
        18px
        auto
        0;

    text-align: center;
}


/* =========================================================
   CENSORED LOGO
   THE PNG HAS A LARGE EMPTY BLACK CANVAS.
   THIS CROPS THAT EMPTY AREA OUT OF THE PAGE FLOW.
   ========================================================= */

.apparel-collection-intro .censored-logo {
    display: block;

    width: 560px;
    max-width: 90%;

    height: 155px;

    margin:
        0
        auto;

    object-fit: cover;
    object-position: center;

    overflow: hidden;
}


/* =========================================================
   CENSORED STORY
   ========================================================= */

.apparel-collection-intro .censored-story {
    display: block;

    width: 100%;
    max-width: 700px;

    margin:
        10px
        auto
        0;

    padding:
        14px
        24px;

    color: #a8a8a8;

    font-size: 15px;
    font-weight: 400;

    line-height: 1.6;

    letter-spacing: 0.2px;

    text-align: center;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.13);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.13);
}


.apparel-collection-intro .censored-story strong {
    color: #ffffff;

    font-weight: 800;
}


.apparel-collection-intro .censored-story em {
    color: var(--blue);

    font-style: normal;
    font-weight: 900;
}


.apparel-collection-intro .censored-story span {
    display: block;

    margin-top: 7px;
}


/* =========================================================
   PRODUCT ROW
   FOUR ACROSS
   ========================================================= */

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;

    width: 100%;

    margin: 0;
}


.product-card {
    min-width: 0;
}


/* =========================================================
   PRODUCT IMAGE
   ========================================================= */

.product-image {
    position: relative;

    display: block;

    width: 100%;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #111111;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.product-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition:
        transform 0.4s ease,
        filter 0.3s ease;
}


/* =========================================================
   SHOP NOW OVERLAY
   ========================================================= */

.shop-overlay {
    position: absolute;

    inset: 0;

    z-index: 5;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    opacity: 0;

    color: #ffffff;

    background: rgba(0, 0, 0, 0);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 3px;

    transition:
        opacity 0.25s ease,
        background 0.25s ease;
}


.shop-overlay span {
    color: var(--blue);

    font-size: 15px;
}


/* =========================================================
   DESKTOP PRODUCT HOVER
   ========================================================= */

.product-image:hover {
    transform:
        translateY(-8px)
        scale(1.012);

    box-shadow:
        0
        18px
        42px
        rgba(0, 0, 0, 0.48);
}


.product-image:hover img {
    transform: scale(1.04);

    filter: brightness(0.48);
}


.product-image:hover .shop-overlay {
    opacity: 1;

    background:
        rgba(0, 0, 0, 0.36);
}


/* =========================================================
   PRODUCT INFO
   ========================================================= */

.product-info {
    padding-top: 17px;
}


.product-info h3 {
    margin:
        0
        0
        10px;

    color: #ffffff;

    font-family:
        Impact,
        "Arial Black",
        sans-serif;

    font-size:
        clamp(24px, 2vw, 34px);

    line-height: 1;

    letter-spacing: 0.3px;
}


.product-spec {
    margin:
        0
        0
        10px;

    color: #888888;

    font-size: 9px;
    font-weight: 800;

    line-height: 1.55;

    letter-spacing: 1.4px;
}


.product-price {
    margin: 0;

    color: var(--blue);

    font-family:
        Impact,
        "Arial Black",
        sans-serif;

    font-size: 24px;

    line-height: 1;

    letter-spacing: 1px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .apparel-store {
        padding:
            35px
            24px
            80px;
    }


    .apparel-billboard h2 {
        font-size: 15vw;
    }


    .apparel-collection-intro {
        margin-top: 15px;
    }


    .product-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            45px
            16px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .apparel-store {
        padding:
            30px
            18px
            70px;
    }


    .apparel-storefront-intro {
        margin-bottom: 25px;
    }


    /* BILLBOARD */

    .apparel-billboard h2 {
        font-size: 20vw;

        line-height: 0.82;

        letter-spacing: -2px;
    }


    .apparel-billboard h2 span {
        margin-bottom: 6px;
    }


    /* COLLECTION */

    .apparel-collection-intro {
        margin-top: 12px;
    }


    .apparel-collection-intro .censored-logo {
        width: 300px;
        max-width: 90%;

        height: 95px;

        object-fit: cover;
        object-position: center;
    }


    .apparel-collection-intro .censored-story {
        max-width: 94%;

        margin-top: 8px;

        padding:
            12px
            10px;

        font-size: 13px;

        line-height: 1.55;
    }


    /* PRODUCTS */

    .product-grid {
        grid-template-columns: 1fr;

        gap: 42px;
    }


    .product-image {
        aspect-ratio: 4 / 5;
    }


    /* MOBILE DOES NOT RELY ON HOVER */

    .shop-overlay {
        top: auto;
        bottom: 0;

        height: 27%;

        padding: 16px;

        opacity: 1;

        align-items: flex-end;
        justify-content: flex-end;

        background:
            linear-gradient(
                to top,
                rgba(0, 0, 0, 0.72),
                rgba(0, 0, 0, 0)
            );

        font-size: 9px;
    }


    .product-image:hover {
        transform: none;

        box-shadow: none;
    }


    .product-image:hover img {
        transform: none;

        filter: none;
    }


    .product-info {
        padding-top: 15px;
    }


    .product-info h3 {
        font-size: 30px;
    }


    .product-price {
        font-size: 23px;
    }

}

/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .marquee-track {
        animation: none;
    }

    *,
    *::before,
    *::after {
        transition-duration:
            0.01ms
            !important;

        animation-duration:
            0.01ms
            !important;

        animation-iteration-count:
            1
            !important;
    }

}
