/* define colors */

:root {

    /* revisions one  */
    --black: #0A0A0A;
    --grey: #151515;
    --light-grey: #2c2c2c;
    --gold: #F9D371;
    --dark-blue: #0d0f14;


    --pink: #EE4C7C;
    --dark-pink: #9A1750;
    --light-pink: #E3AFBC;
    --cream: #E3E2DF;
    --dark-cream: hsl(45, 7%, 82%);
    --dark-red: #9A1750;

    --nu-black: #1A1A1D;
    --nu-grey: #4E4E50;
    --nu-dark-red: #6F2232;
    --nu-pink: #950740;
    --nu-red: #C3073F;

}


/* -------------------------------------------------------- */
/* CSS RESET                                                */
/* -------------------------------------------------------- */



/* This is to attempt to make the webpage look the same in every browser */

/* box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* margins */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
picture {
    margin: 0;
}


/* set up the body */

body {
    line-height: 1.5;
    min-height: 100vh;

}

/* make images easier to work with */

img,
picture {
    max-width: 100%;
    display: block;
}

/* make form elements easier to work with */
input,
button,
textarea,
select {
    font: inherit;
}

/* remove animations for people who've turned them off */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}



html {
    scroll-behavior: smooth;
}

/* make it so you can't scroll horizontally */
.siteWrapper {
    position: relative;
    overflow-x: hidden;
    scroll-behavior: smooth;
    margin-bottom: 0;
}


::-webkit-scrollbar {
    background-color: var(--dark-blue);
    border-left: solid 1px rgba(255, 255, 255, 0.198);
}

::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.198);
    border-radius: 20px;
    border: 4px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: rgba(255, 255, 255, 0.403);
}

/*-------------------*/
/* NEW NAVBAR        */
/*-------------------*/




#toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--nu-grey);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

#toggle::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 2px;
    background: var(--cream);
    transform: translateY(-5px);
    transition: 0.2s;
}

#toggle::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 2px;
    background: var(--cream);
    transform: translateY(5px);
    transition: 0.2s;
}

#toggle.active::before {
    transform: translateY(0px) rotate(45deg);
}

#toggle.active::after {
    transform: translateY(0px) rotate(-45deg);
}

#sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    /* background: rgba(40, 40, 40, 0.9); */
    background: var(--nu-black);
    transition: 0.5s;
}

#sidebar.active {
    left: 0px;
}

#sidebar ul {
    position: relative;
    margin-top: 50px;
}

#sidebar ul li {
    list-style: none;
    display: inline-block;
    width: 100%;
    padding: 10px 40px;
    text-transform: uppercase;
}

#sidebar ul li:hover {
    background: var(--nu-grey);
}

#sidebar ul li a {
    color: var(--cream);
    text-decoration: none;
    font-size: 2.5rem;
}



header {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    z-index: 99;
    font-family: "Kanit";
}

header i {
    color: var(--cream);
    cursor: pointer;
}


@media(max-width:500px) {}


@media screen and (min-width: 1240px) {
    #toggle {
        display: none;
        top: -20px;
    }


}

@media screen and (max-width: 1240px) {
    header li {
        display: none;
    }

    header #checkbox {
        display: none;
    }

}

@media screen and (min-width: 1240px) {

    #sidebar {
        display: none;
    }



    #toggle {
        display: none;
    }

    .checkbox {
        display: none;
    }


    header ul {
        flex: 2;
        display: flex;
        justify-content: space-evenly;

    }

    header i {
        color: var(--cream);

    }

    header ul li {
        list-style: none;

    }

    header ul li a {
        text-decoration: none;
        color: var(--cream);
        font-weight: 600;
        text-transform: uppercase;
        padding: 10px 15px;

    }

    header ul li a:hover {
        border-bottom: 2px solid var(--cream);
    }

    header .menu {
        font-size: 2.5em;
        display: none;


    }
}



/*-------------------*/
/* HERO SECTION      */
/*-------------------*/



#parallax {
    width: 100%;
    height: 100vh;
    background-color: var(--cream);
    background-image: url("img/Hero_img2.png");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.hero-content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}


.hero-text h1 {
    font-size: 10rem;
    margin-bottom: 5px;
    text-transform: capitalize;
    /* font-family: 'Kanit', sans-serif; */
    font-family: 'Montserrat', sans-serif;
    color: var(--cream);

}


.hero-text h5 {

    font-size: 3rem;
    /* font-family: 'Kanit', sans-serif; */
    font-family: 'Montserrat Black', sans-serif;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #e3e2dfc4;
    ;
}


.hero-text button {
    position: relative;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Montserrat Black', sans-serif;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 30px;

    font-size: 1.5rem;
    transition: all 0.3s ease;

    color: var(--cream);
    background-color: transparent;
    border: solid var(--nu-red);
}



.hero-text button:hover {
    border: solid var(--nu-red);
    background-color: var(--nu-red);
    color: var(--cream);
    cursor: pointer;
    transition: ease;
}


.hero-text p {
    color: var(--cream);
    font-family: 'Montserrat Black', sans-serif;
    letter-spacing: .2rem;
    margin-bottom: 2rem;
    transform: rotate(90deg);
    transition: ease;
}

.hero-text i {
    color: var(--cream);
}

.scroll-icon {
    transform: translateY(145px);
    transition: ease;
    animation: scroll-icon 2s ease-in-out infinite;
    position: absolute;
    top: 590px;
    right: 1px;

}

@keyframes scroll-icon {
    0% {
        opacity: 50%;
        transform: translateY(135px);
    }

    50% {
        opacity: 100%;
        transform: translateY(145px);
    }

    100% {
        opacity: 50%;
        transform: translateY(135px);
    }
}




@media screen and (max-width: 1500px) {
    .hero-text h1 {
        font-size: 6rem;
    }

    .hero-text h5 {
        font-size: 1.8rem;
    }

}

@media screen and (max-width: 1172px) {
    .hero-text h1 {
        font-size: 5rem;
        margin-bottom: 20px;
    }

    .hero-text span {
        font-size: 5rem;
        margin-bottom: 20px;
    }

    .hero-text h5 {
        font-size: 1.8rem;
    }
}



@media screen and (max-width: 650px) {
    #parallax {
        position: relative;
        height: auto;
        min-height: 72svh;
        padding: 105px 18px 58px 18px;
    }

    .hero-text h1 {
        font-size: 3.6rem;
        line-height: 1;
        margin-bottom: 14px;
    }

    .hero-text span {
        font-size: 3.6rem;
        margin-bottom: 0;
    }

    .hero-text h5 {
        font-size: 1.35rem;
        line-height: 1.2;
        margin-bottom: 32px;
    }

    .hero-text button {
        padding: 10px 28px;
        font-size: 1.25rem;
    }

    .hero-text p {
        margin-bottom: 1rem;
        font-size: 0.85rem;
    }

    .scroll-icon {
        position: absolute;
        top: auto;
        right: 18px;
        bottom: 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        transform: translateY(0);
        animation: scroll-icon-mobile 2s ease-in-out infinite;
    }

    .scroll-icon p {
        display: none;
    }

    .scroll-icon i {
        display: block;
        margin-top: 0;
    }
}

@keyframes scroll-icon-mobile {
    0% {
        opacity: 50%;
        transform: translateY(-4px);
    }

    50% {
        opacity: 100%;
        transform: translateY(4px);
    }

    100% {
        opacity: 50%;
        transform: translateY(-4px);
    }
}


/*-------------------*/
/* ABOUT SECTION     */
/*-------------------*/


.about {
    width: 100%;
    height: 100vh;
    background-color: var(--nu-black);
    display: flex;
    justify-content: center;
    align-items: center;
}

.about img {
    height: auto;
    width: 600px;
    max-width: 100%;
    padding: 0 10px;

}

.content .text {
    margin-top: 14%;
    width: 550px;
    max-width: 100%;
    padding: 0 10px;
}


.content {
    width: 1280px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

.content .text h1 {
    font-size: 4rem;
    margin-bottom: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat Black', sans-serif;
    color: var(--cream);

}


.content .text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    margin-top: 0;
    text-transform: uppercase;
    font-family: 'Montserrat Black', sans-serif;
    color: var(--cream);
}

.content .text h5 {
    color: var(--cream);
    font-size: 1.5rem;
    font-family: 'Montserrat Black', sans-serif;
    margin-bottom: 25px;
    text-transform: capitalize;
    letter-spacing: 1px;
}


.content .text a {
    font-family: 'Montserrat Black', sans-serif;
    color: var(--cream);
    font-size: 1.4rem;
    line-height: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 45px;
}

.content .text span {
    color: var(--nu-red);
}

.content .text p {
    font-family: 'Montserrat Black', sans-serif;
    color: var(--cream);
    font-size: 1.4rem;
    line-height: 1.65;
    letter-spacing: 1.2px;
    margin-bottom: 45px;
}


.content .text button {
    position: relative;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Montserrat Black', sans-serif;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 30px;

    font-size: 1.5rem;
    transition: all 0.3s ease;

    color: var(--cream);
    background-color: transparent;
    border: solid var(--nu-red);

    margin-bottom: 200px;
}


.content .text button:hover {
    border: solid var(--nu-red);
    background-color: var(--nu-red);
    color: var(--cream);
    cursor: pointer;
}

@media screen and (max-width: 1180px) {
    .about {
        width: 100%;
        height: auto;
        padding: 70px 0px;
    }
}

@media screen and (max-width: 650px) {
    .content .text button {
        margin-bottom: 20px;
        margin-left: 25%;
    }
}



@media screen and (max-width: 1172px) {}



@media screen and (max-width: 650px) {}


/*-------------------*/
/* WORK SECTION      */
/*-------------------*/

.work {
    background-color: var(--nu-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    min-height: auto;
    height: auto;
    text-align: center;
    padding: 100px 30px;
}

.work-content {
    width: 100%;
    max-width: 1180px;
}

.work-text {
    max-width: 100%;
    padding: 0 10px;
}

.work-text2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    padding: 0 10px;
}

.work-text3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    padding: 0 10px;
}

.work h1 {
    font-size: 4rem;
    margin-bottom: 30px;
    text-transform: capitalize;
    font-family: 'Montserrat Black', sans-serif;
    color: var(--cream);
    padding-bottom: 20px;
}

.recent-work-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
}

.recent-work-card {
    position: relative;
    display: block;
    min-height: 320px;
    overflow: hidden;
    border: 1px solid rgba(227, 226, 223, 0.16);
    border-radius: 8px;
    background: var(--grey);
    color: var(--cream);
    text-align: left;
    text-decoration: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
    isolation: isolate;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.recent-work-card--featured {
    grid-column: 1 / -1;
    min-height: 420px;
}

.recent-work-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
    transform: scale(1);
    transition: opacity 0.3s ease, transform 0.45s ease;
}

.recent-work-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(26, 26, 29, 0.08) 0%, rgba(26, 26, 29, 0.72) 58%, rgba(26, 26, 29, 0.96) 100%);
}

.recent-work-card__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 28px;
}

.recent-work-card__artist {
    margin-bottom: 8px;
    color: var(--nu-red);
    font-family: 'Montserrat Black', sans-serif;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 1.8px;
    line-height: 1.2;
    text-transform: uppercase;
}

.recent-work-card h2 {
    color: var(--cream);
    font-family: 'Montserrat Black', sans-serif;
    font-size: 2.1rem;
    line-height: 1;
    text-transform: uppercase;
}

.recent-work-card__role {
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    color: var(--cream);
    font-family: 'Montserrat Black', sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(10px);
    transition: max-height 0.3s ease, margin-top 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.recent-work-card:hover,
.recent-work-card:focus-visible {
    border-color: rgba(195, 7, 63, 0.7);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.36);
    transform: translateY(-4px);
}

.recent-work-card:hover img,
.recent-work-card:focus-visible img {
    opacity: 0.52;
    transform: scale(1.04);
}

.recent-work-card--golden img {
    transform: scale(1.85);
}

.recent-work-card--golden:hover img,
.recent-work-card--golden:focus-visible img {
    transform: scale(1.91);
}

.recent-work-card:hover .recent-work-card__role,
.recent-work-card:focus-visible .recent-work-card__role {
    max-height: 80px;
    margin-top: 14px;
    opacity: 1;
    transform: translateY(0);
}

.recent-work-card:focus-visible {
    outline: 3px solid var(--nu-red);
    outline-offset: 4px;
}

@media (hover: none) {
    .recent-work-card__role {
        max-height: 80px;
        margin-top: 14px;
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 850px) {
    .work {
        padding: 80px 20px;
    }

    .recent-work-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .recent-work-card,
    .recent-work-card--featured {
        grid-column: auto;
        min-height: 300px;
    }
}

@media screen and (max-width: 650px) {
    .work h1 {
        margin-bottom: 20px;
        font-size: 3rem;
    }

    .work {
        min-height: auto;
        height: auto;
        padding: 70px 16px;
    }

    .work-content {
        margin-bottom: 0;
    }

    .recent-work-card,
    .recent-work-card--featured {
        min-height: 260px;
    }

    .recent-work-card__content {
        padding: 22px;
    }

    .recent-work-card h2 {
        font-size: 1.65rem;
    }
}

/*-------------------------*/
/* DISCOGRAPHY SECTION     */
/*-------------------------*/

.DISCOGRAPHY {
    background-color: var(--nu-dark-red);
    text-align: center;
    padding-bottom: 200px;
    padding-top: 30px;
}


.disc-container {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.disc-container h1 {
    font-size: 4rem;
    margin-top: 50px;
    margin-bottom: 25px;
    text-transform: capitalize;
    font-family: 'Montserrat Black', sans-serif;
    color: var(--cream);
    justify-content: center;
    padding-bottom: 50px;
}

.row {
    width: 100%;
    justify-content: center;
    display: flex;

    flex-wrap: wrap;


}

.image {
    background: var(--nu-black);
    position: relative;
    flex: auto;
    max-width: 300px;
    height: 300px;
    margin: 20px;
    overflow: hidden;
}

.image img {
    opacity: 1;
    position: relative;
    vertical-align: top;
    transition: 0.6s;
    transition-property: opacity;
}

.image:hover img {
    opacity: 0.2;
}

.image .details {
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    width: 100%;
    height: 100%;
}

.image .details h2 {
    text-align: center;
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 300;
    margin-top: 100px;
    font-family: 'Montserrat', sans-serif;
    opacity: 0;
    transition: 0.6s;
    transition-property: opacity, transform;
}

.image .details h2 {
    font-weight: 900;
}

.image:hover .details h2 {
    transform: translateY(-65px);
    opacity: 1;
}

.image .details p {
    margin: 30px 30px 0 30px;
    font-family: 'Montserrat Black', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: 0.6s;
    transition-property: opacity, transform;
}

.image:hover .details p {
    opacity: 1;
    transform: translateY(-85px);
}

.more {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    bottom: -60px;
    transition: 0.6s;
    transition-property: bottom;
}

.more a {
    font-family: 'Montserrat', sans-serif;
}

.image:hover .more {
    bottom: 0;
}

.more .read-more {
    color: #000;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;

}

.more .read-more span {
    font-weight: 900;
}

.more .icon-links i {
    color: #000;
    font-size: 20px;
}

.more .icon-links a:not(:last-child) i {
    margin-right: 20px;
}

/* Responsive CSS */

@media (max-width: 1080px) {
    .image {
        flex: 100%;
        max-width: 300px;
        max-height: 300px;
    }

    .disc-container h1 {
        font-size: 3rem;
    }
}

@media (max-width: 400px) {
    .image .details p {
        font-size: 16px;
    }



    .more .read-more,
    .more .icon-links a i {
        font-size: 18px;
    }
}

/*---------------------------*/
/* CONTACT SECTION           */
/*---------------------------*/

/* remove the ugly stock focus highlights */
input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}



.contact {
    width: 100%;
    height: auto;
    background-color: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* font-family: 'Kanit', sans-serif; */
    font-family: 'Montserrat Black', sans-serif;

}

.form {
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    overflow: hidden;
    width: 80%;
    max-width: 1000px;
    border: 0;
}

.form-input,
.form-button {
    font-family: 'Montserrat Black', sans-serif;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1.5px;
    border: 0;
    background-color: var(--dark-cream);
}

.form-input::placeholder {
    opacity: 0.5;
}

.form-input {
    padding: 1.5em;
    width: 100%;
}

.form-input:focus::placeholder {
    color: var(--nu-red);
    opacity: 0.85;
}

.form-item:nth-of-type(1) {
    position: relative;
}


.form-item:nth-of-type(2) {
    position: relative;
}

.form-item:nth-of-type(3) {
    position: relative;
}

.form-item:nth-of-type(4) {
    position: relative;
}

.form-item:nth-of-type(1)::after {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: var(--cream);
}

.form-item:nth-of-type(2)::after {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: var(--cream);
}

.form-item:nth-of-type(3)::after {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: var(--cream);
}

.form-item:nth-of-type(4)::after {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: var(--cream);
}


.contact h1 {
    font-size: 4rem;
    margin-top: 80px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    color: var(--nu-black);
}


.form-button {
    background-color: var(--nu-red);
    color: var(--cream);
    padding: 1em 2em;
    font-size: 1.5rem;
    border: solid var(--nu-red);
    transition: all 0.3s ease;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;

}

.form-button:hover {
    color: var(--nu-red);
    background-color: var(--cream);
    border: solid var(--nu-red);
    cursor: pointer;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow: hidden;
}



@media screen and (max-width: 1172px) {}



@media screen and (max-width: 1240px) {
    .contact h1 {
        font-size: 3rem;
        margin-bottom: 20px;

    }
}



@media screen and (max-width: 650px) {}




/*-------------------------------*/
/* MIX MY SINGLE FUNNEL PAGE     */
/*-------------------------------*/

.mix-page {
    background-color: var(--nu-black);
    color: var(--cream);
}

.funnel-container {
    width: min(1120px, 90%);
    margin: 0 auto;
}

.funnel-narrow {
    max-width: 820px;
}

.funnel-hero {
    min-height: 86vh;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 18% 20%, rgba(195, 7, 63, 0.26), transparent 34%),
        linear-gradient(135deg, rgba(26, 26, 29, 0.94), rgba(26, 26, 29, 0.78)),
        url("img/Hero_img2.png") center / cover;
    padding: 150px 0 96px 0;
    text-align: center;
}

.funnel-hero__content {
    max-width: 960px;
}

.funnel-eyebrow {
    color: var(--nu-red);
    font-family: 'Montserrat Black', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.funnel-hero h1,
.funnel-section h2,
.funnel-final-cta h2 {
    color: var(--cream);
    font-family: 'Montserrat Black', sans-serif;
    line-height: 1;
    text-transform: uppercase;
}

.funnel-hero h1 {
    font-size: clamp(3.2rem, 8vw, 6.8rem);
    margin-bottom: 24px;
}

.funnel-hero__subhead {
    max-width: 820px;
    margin: 0 auto 34px auto;
    color: rgba(227, 226, 223, 0.82);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    line-height: 1.65;
}

.funnel-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 12px 30px;
    border: solid var(--nu-red);
    border-radius: 30px;
    background-color: var(--nu-red);
    color: var(--cream);
    font-family: 'Montserrat Black', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 1.1;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.funnel-button:hover,
.funnel-button:focus-visible {
    background-color: transparent;
    color: var(--cream);
}

.funnel-trust {
    margin-top: 20px;
    color: rgba(227, 226, 223, 0.68);
    font-family: 'Montserrat Black', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.7px;
}

.funnel-section {
    background-color: var(--nu-black);
    padding: 92px 0;
}

.funnel-section--intro,
.funnel-section--faq {
    background-color: #151518;
}

.funnel-section--proof {
    background-color: #111114;
}

.funnel-section__heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.funnel-section h2,
.funnel-final-cta h2 {
    font-size: clamp(2.1rem, 5vw, 3.8rem);
    margin-bottom: 18px;
}

.funnel-section p,
.funnel-final-cta p {
    color: rgba(227, 226, 223, 0.78);
    font-family: 'Montserrat Black', sans-serif;
    font-size: 1.08rem;
    line-height: 1.7;
}

.funnel-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.funnel-card,
.funnel-step,
.funnel-faq-grid article {
    border: 1px solid rgba(227, 226, 223, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.funnel-card {
    padding: 26px;
}

.funnel-card h3,
.funnel-step h3,
.funnel-faq-grid h3 {
    color: var(--cream);
    font-family: 'Montserrat Black', sans-serif;
    font-size: 1.14rem;
    line-height: 1.25;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.funnel-card p,
.funnel-step p,
.funnel-faq-grid p {
    font-size: 0.96rem;
    line-height: 1.55;
}

.funnel-work-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.funnel-work-grid .recent-work-card {
    min-height: 280px;
}

.funnel-work-grid .recent-work-card h2 {
    font-size: 1.55rem;
}


.mix-page .recent-work-card--deathbed img {
    transform: scale(1.5);
}

.mix-page .recent-work-card--deathbed:hover img,
.mix-page .recent-work-card--deathbed:focus-visible img {
    transform: scale(1.56);
}

.funnel-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.funnel-step {
    padding: 28px;
}

.funnel-step span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--nu-red);
    font-family: 'Montserrat Black', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 2px;
}

.funnel-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.funnel-faq-grid article {
    padding: 24px;
}

.funnel-final-cta {
    background: linear-gradient(135deg, rgba(111, 34, 50, 0.72), rgba(26, 26, 29, 1));
    padding: 92px 0;
    text-align: center;
}

.funnel-final-cta p {
    margin-bottom: 28px;
}

.funnel-contact h1 {
    font-family: 'Montserrat Black', sans-serif;
}

@media screen and (max-width: 980px) {

    .funnel-card-grid,
    .funnel-work-grid,
    .funnel-steps,
    .funnel-faq-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 650px) {
    .funnel-hero {
        min-height: auto;
        padding: 112px 0 68px 0;
    }

    .funnel-hero h1 {
        font-size: 3rem;
        margin-bottom: 18px;
    }

    .funnel-hero__subhead {
        font-size: 1rem;
        line-height: 1.55;
        margin-bottom: 26px;
    }

    .funnel-trust {
        font-size: 0.82rem;
        line-height: 1.45;
    }

    .funnel-section,
    .funnel-final-cta {
        padding: 62px 0;
    }

    .funnel-card-grid,
    .funnel-work-grid,
    .funnel-steps,
    .funnel-faq-grid {
        grid-template-columns: 1fr;
    }

    .funnel-section__heading {
        margin-bottom: 26px;
    }

    .funnel-card,
    .funnel-step,
    .funnel-faq-grid article {
        padding: 22px;
    }

    .funnel-work-grid .recent-work-card {
        min-height: 250px;
    }
}

/*-------------------*/
/* FOOTER SECTION    */
/*-------------------*/

.footer__container {
    background-color: var(--nu-black);
    padding: 64px 0 56px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    margin-top: 0;
}

.footer__inner {
    width: min(1180px, 90%);
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(420px, 1.2fr);
    gap: 56px;
    align-items: center;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#footerLogoScooterAllen {
    color: var(--cream);
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
    line-height: 1;
}

.website__rights {
    color: rgba(227, 226, 223, 0.72);
    font-size: 0.82rem;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.footer__connect {
    justify-self: end;
    width: 100%;
    max-width: 460px;
}

.social__icons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    margin-top: 8px;
}

.social__icon--link {
    color: var(--cream);
    font-size: 1.8rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.social__icon--link:hover,
.social__icon--link:focus-visible {
    color: var(--nu-red);
}

.footer-newsletter {
    width: 100%;
    max-width: 460px;
    text-align: left;
}

.footer-newsletter__copy {
    margin-bottom: 14px;
}

.footer-newsletter h2 {
    color: var(--cream);
    font-family: 'Montserrat Black', sans-serif;
    font-size: 1.1rem;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-newsletter p {
    color: rgba(227, 226, 223, 0.72);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.92rem;
    line-height: 1.45;
    margin-top: 5px;
}

.footer-newsletter__form {
    width: 100%;
    margin: 0;
}

.footer-newsletter__fields {
    display: flex;
    gap: 10px;
    align-items: stretch;
    width: 100%;
}

.footer-newsletter__field {
    flex: 1 1 auto;
}

.footer-newsletter__input {
    width: 100%;
    min-height: 48px;
    padding: 0 15px;
    border: 1px solid rgba(227, 226, 223, 0.34);
    border-radius: 5px;
    background-color: rgba(227, 226, 223, 0.08);
    color: var(--cream);
    font-family: inherit;
    font-size: 0.9rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.footer-newsletter__input:focus {
    border-color: var(--nu-red);
}

.footer-newsletter__input::placeholder {
    color: rgba(227, 226, 223, 0.62);
}

.footer-newsletter__submit {
    min-height: 48px;
    padding: 0 26px;
    border: solid var(--nu-red);
    border-radius: 5px;
    background-color: var(--nu-red);
    color: var(--cream);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.footer-newsletter__submit:hover,
.footer-newsletter__submit:focus-visible {
    background-color: transparent;
    color: var(--cream);
}

.footer-newsletter__submit span {
    display: block;
}

.footer-newsletter .formkit-alert {
    display: none;
    list-style: none;
    margin: 0 0 12px 0;
    padding: 10px;
    border-radius: 5px;
    font-family: inherit;
    font-size: 0.9rem;
}

.footer-newsletter .formkit-alert:not(:empty) {
    display: block;
}

.footer-newsletter .formkit-powered-by-convertkit-container,
.footer-newsletter .formkit-powered-by-convertkit {
    display: none !important;
}

@media screen and (max-width: 1050px) {
    .footer__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer__connect {
        justify-self: stretch;
        max-width: none;
    }
}

@media screen and (max-width: 650px) {
    .footer__container {
        padding: 48px 0;
    }

    .footer__inner {
        width: min(520px, 88%);
        gap: 28px;
        text-align: center;
    }

    .footer__brand {
        align-items: center;
    }

    .footer__connect {
        justify-self: stretch;
        max-width: none;
    }

    .social__icons {
        justify-content: center;
        margin-top: 6px;
    }

    .footer-newsletter {
        text-align: center;
    }

    .footer-newsletter__fields {
        flex-direction: column;
    }

    .footer-newsletter__submit {
        width: 100%;
    }
}


/*-------------------*/
/* FAQ SECTION     */
/*-------------------*/


.faq {
    width: 100%;
    height: auto;
    background-color: var(--nu-black);
    display: flex;
    justify-content: center;
    align-items: center;
}


.faq_content .faq_text {
    margin-top: 14%;
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
}


.faq_content {
    width: 1280px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

.faq_content .faq_text h1 {
    font-size: 4.5rem;
    margin-bottom: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat Black', sans-serif;
    color: var(--cream);

}


.faq_content .faq_text h2 {
    font-size: 2.1rem;
    margin-bottom: 25px;
    margin-top: 0;
    text-transform: uppercase;
    font-family: 'Montserrat Black', sans-serif;
    color: var(--cream);
}

.faq_content .faq_text h5 {
    color: var(--cream);
    font-size: 1.5rem;
    font-family: 'Montserrat Black', sans-serif;
    margin-bottom: 25px;
    text-transform: capitalize;
    letter-spacing: 1px;
}


.faq_content .faq_text a {
    font-family: 'Montserrat Black', sans-serif;
    color: var(--cream);
    font-size: 1.4rem;
    line-height: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 45px;
}

.faq_content .faq_text span {
    color: var(--nu-red);
}

.faq_content .faq_text p {
    font-family: 'Montserrat Black', sans-serif;
    color: var(--cream);
    font-size: 1.2rem;
    line-height: 1.5rem;
    letter-spacing: 1.2px;
    margin-bottom: 45px;
}



@media screen and (max-width: 1180px) {
    .faq_about {
        width: 100%;
        height: auto;
        padding: 70px 0px;
    }
}

@media screen and (max-width: 650px) {
    .faq_content .faq_text button {
        margin-bottom: 20px;
        margin-left: 25%;
    }
}



@media screen and (max-width: 1172px) {}



@media screen and (max-width: 650px) {}