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

/* scroll-behavior: smooth removed — conflicts with Lenis */

body {
    background: #ffffff;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    overflow-x: hidden;
}



.header {
    position: fixed;
    top: 25px;
    left: 35px;
    right: 35px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    z-index: 9999;

    transition:
        transform .42s cubic-bezier(.22, 1, .36, 1),
        opacity .3s ease;
}

.header.header-hide {
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
}

.header.header-show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}




/* =========================
   HEADER ACTIONS
========================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* =========================
   CONTACT BUTTON
========================= */

.contact-btn {
    position: relative;

    height: 56px;
    min-width: 200px;
    padding: 0 26px;

    background: #14E27A;
    color: #050505;
    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;

    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 19px;
    font-weight: 800;
    line-height: 1;

    overflow: hidden;
    cursor: pointer;

    transform-origin: center;
    transition:
        transform .45s cubic-bezier(.22, 1, .36, 1),
        background .35s ease,
        box-shadow .35s ease;
}

/* subtle hover shine */
.contact-btn::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(255, 255, 255, .22);
    transform: translateX(-110%) skewX(-18deg);
    transition: transform .65s cubic-bezier(.22, 1, .36, 1);
    pointer-events: none;
}

.contact-btn:hover::before {
    transform: translateX(115%) skewX(-18deg);
}

/* text switch */

.contact-text {
    position: relative;
    height: 20px;
    min-width: 96px;
    display: block;
    overflow: hidden;
}

.contact-text span {
    position: absolute;
    left: 0;
    top: 0;

    display: block;
    transition: transform .42s cubic-bezier(.22, 1, .36, 1);
}

.text-default {
    transform: translateY(0);
}

.text-hover {
    transform: translateY(130%);
}

.contact-btn:hover .text-default {
    transform: translateY(-130%);
}

.contact-btn:hover .text-hover {
    transform: translateY(0);
}

/* arrow */

.contact-btn .arrow-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    position: relative;
    z-index: 2;

    transition:
        transform .45s cubic-bezier(.22, 1, .36, 1),
        opacity .35s ease;
}

.contact-btn:hover {
    transform: translateY(-3px) rotate(-1.8deg) skewX(-4deg);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .14);
}

.contact-btn:hover .arrow-icon {
    transform: translate(7px, -2px) rotate(-45deg);
}





/* ========================
   MENU BUTTON
========================= */

.menu-btn {
    position: relative;

    width: 56px;
    height: 56px;

    border: none;
    background: #14E27A;
    color: #050505;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;

    cursor: pointer;
    overflow: hidden;

    transform-origin: center;
    transition:
        transform .45s cubic-bezier(.22, 1, .36, 1),
        background .35s ease,
        box-shadow .35s ease;
}

.menu-btn span {
    width: 23px;
    height: 2.5px;
    background: #050505;
    display: block;

    transition:
        transform .42s cubic-bezier(.22, 1, .36, 1),
        width .35s ease;
}

.menu-btn:hover {
    transform: translateY(-3px) rotate(3deg) skewX(-5deg);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .14);
}

.menu-btn:hover span:nth-child(1) {
    width: 15px;
    transform: translateX(4px);
}

.menu-btn:hover span:nth-child(2) {
    width: 25px;
}

.menu-btn:hover span:nth-child(3) {
    width: 17px;
    transform: translateX(-4px);
}

/* active/open state optional */

.menu-btn.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    width: 24px;
}

.menu-btn.is-active span:nth-child(2) {
    transform: scaleX(0);
}

.menu-btn.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    width: 24px;
}

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

@media (max-width: 768px) {

    .header {
        top: 20px;
        left: 20px;
        right: 20px;
        align-items: center;
    }

    .logo img {
        height: 60px;
        max-width: 145px;
    }

    .header-actions {
        gap: 8px;
    }

    .contact-btn {
        min-width: 148px;
        height: 48px;
        padding: 0 17px;
        font-size: 15px;
        gap: 18px;
        display: none !important;


    }

    .contact-text {
        height: 16px;
        min-width: 72px;
    }

    .contact-btn .arrow-icon {
        width: 18px;
        height: 18px;
    }

    .menu-btn {
        width: 48px;
        height: 48px;
        gap: 5px;
    }

    .menu-btn span {
        width: 21px;
        height: 2px;
    }

    .contact-btn:hover,
    .menu-btn:hover {
        transform: none;
        box-shadow: none;
    }

}



/* =========================
   HERO VIMEO SAME POSITION PLAY
========================= */

.hero-video {
    width: 100%;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
    position: relative;
    background: #050505;
    cursor: none;
}

.hero-vimeo-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    background: #050505;
}

.hero-vimeo-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 100vw;
    height: 56.25vw;

    min-width: 177.78vh;
    min-height: 100vh;

    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

/* Hover Play Reel pill */
#playReel {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10;

    transform: translate(-50%, -50%) scale(.85);

    width: 128px;
    height: 42px;
    padding: 0;

    border: none;
    border-radius: 999px;

    background: #050505;
    color: #ffffff;

    cursor: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    overflow: hidden;

    box-shadow: 0 12px 36px rgba(0, 0, 0, .35);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.hero-video:hover #playReel {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.play-reel-marquee {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}

.play-reel-marquee span {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: .4px;

    animation: playReelScroll 4s linear infinite;
}

@keyframes playReelScroll {
    from {
        transform: translateX(0);
    }

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

/* Mobile */
@media (max-width: 768px) {

    .hero-video {
        height: 70vh;
        min-height: 420px;
        cursor: default;
    }

    #playReel {
        left: 50%;
        top: auto;
        bottom: 30px;

        transform: translateX(-50%) scale(1);

        opacity: 1;
        visibility: visible;
        pointer-events: none;

        width: 128px;
        height: 42px;
        padding: 0;

        background: #050505;
        color: #ffffff;

        z-index: 100;
    }

    .hero-video:hover #playReel {
        transform: translateX(-50%) scale(1);
    }
}


#heroVideoSection {
    position: relative;
}

#heroVimeoFrame {
    pointer-events: none;
}

#playReel {
    position: absolute;
    pointer-events: none;
    z-index: 10;
}



/*==================================
ABOUT
==================================*/

.about {
    background: #fafaf8;
    padding: 130px 7% 90px;
}

.about-inner {
    max-width: 1320px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 100px;
    align-items: start;
}

/* LEFT */

.about-title {
    margin: 0;
    font-size: 65px;
    line-height: 1;
    letter-spacing: -2px;
    font-weight: 700;
    color: #111;
}

.about-title span {
    color: #22e36e;
}

/* BIG ARROW */

.about-arrow {
    margin-top: 55px;
    width: 170px;
    transition: .45s ease;
    cursor: pointer;
}

.about-arrow img {
    width: 100%;
    display: block;
    transition: .45s ease;
}

.about-arrow:hover img {
    transform: rotate(-12deg) scale(1.08);
}

/* RIGHT */

.about-heading {
    margin: 0 0 26px;
    font-size: 24px;
    line-height: 1.6;
    font-weight: 600;
    color: #111;
}

.about-text {
    max-width: 560px;
    margin: 0;
    font-size: 19px;
    line-height: 1.9;
    color: #555;
}

/* CTA */

.about-btn {
    display: inline-block;
    margin-top: 40px;

    color: #111;
    text-decoration: none;

    font-size: 18px;
    font-weight: 600;

    position: relative;
    transition: .35s;
}

.about-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0;
    height: 2px;

    background: #22e36e;
    transition: .35s;
}

.about-btn:hover {
    color: #22e36e;
}

.about-btn:hover::after {
    width: 100%;
}




@media(max-width:992px) {

    .about {
        padding: 100px 5% 70px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-title {
        font-size: 56px;
    }

    .about-arrow {
        width: 130px;
        margin-top: 40px;
    }

    .about-heading {
        font-size: 22px;
    }

    .about-text {
        font-size: 17px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .stat {
        padding: 0;
    }

    .stat::after {
        display: none;
    }

}

@media(max-width:768px) {

    .about {
        padding: 80px 24px 60px;
    }

    .about-title {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .about-arrow {
        width: 110px;
        margin-top: 30px;
    }

    .about-heading {
        font-size: 20px;
    }

    .about-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .about-btn {
        margin-top: 28px;
        font-size: 17px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .stat {
        padding: 0;
    }

    .stat h2 {
        font-size: 42px;
    }

    .stat::after {
        display: none;
    }

}


/* ==============================
   CLEAN BRAND GALLERY
================================= */


/* ==============================
   CLEAN BRAND GALLERY
   ONE ROW • NO DUPLICATE
============================== */

.brands-gallery {
    position: relative;
    width: 100%;

    /* IMPORTANT: remove 100vh */
    height: 520px;

    padding: 0;

    background: #fafaf8;

    overflow: hidden;

    display: flex;
    align-items: center;
}


/* ==============================
   HORIZONTAL TRACK
============================== */

.gallery-track {
    display: flex;
    width: max-content;

    flex-shrink: 0;

    overflow: visible;

    will-change: transform;

    transform: translate3d(0, 0, 0);
}


/* ==============================
   SINGLE GROUP
============================== */

.gallery-group {
    display: flex;
    align-items: center;

    gap: 16px;

    flex-shrink: 0;

    padding: 0;
}


/* ==============================
   CARDS
============================== */

.gallery-card {
    position: relative;

    flex: 0 0 auto;

    height: 400px;

    overflow: hidden;

    border-radius: 14px;

    background: #181b1a;

    transform: translate3d(0, 0, 0);

    backface-visibility: hidden;
}


/* ==============================
   DIFFERENT SIZES
============================== */

.gallery-card--small {
    width: 260px;
}

.gallery-card--portrait {
    width: 310px;
}

.gallery-card--large {
    width: 490px;
}

.gallery-card--wide {
    width: 580px;
}


/* ==============================
   IMAGE / VIDEO
============================== */

.gallery-card img,
.gallery-card video {
    width: 100%;
    height: 100%;

    display: block;

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

    user-select: none;
    -webkit-user-drag: none;

    transform: translate3d(0, 0, 0);

    transition:
        transform 0.7s cubic-bezier(.22, 1, .36, 1),
        filter 0.7s ease;
}


/* ==============================
   IMAGE TREATMENT
============================== */

.gallery-card img {
    filter: saturate(.9) contrast(1.02);
}


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

.gallery-card::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    background: linear-gradient(
        180deg,
        transparent 65%,
        rgba(0, 0, 0, .12)
    );
}


/* ==============================
   HOVER
============================== */

.gallery-card:hover img,
.gallery-card:hover video {
    transform: scale(1.035);

    filter: saturate(1) contrast(1.03);
}


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

@media (max-width: 1024px) {

    .brands-gallery {
        height: 385px;
    }

    .gallery-group {
        gap: 12px;
    }

    .gallery-card {
        height: 285px;
        border-radius: 12px;
    }

    .gallery-card--small {
        width: 220px;
    }

    .gallery-card--portrait {
        width: 260px;
    }

    .gallery-card--large {
        width: 400px;
    }

    .gallery-card--wide {
        width: 470px;
    }

}


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

@media (max-width: 768px) {

    .brands-gallery {
        height: 275px;
    }

    .gallery-group {
        gap: 10px;
    }

    .gallery-card {
        height: 215px;
        border-radius: 10px;
    }

    .gallery-card--small {
        width: 160px;
    }

    .gallery-card--portrait {
        width: 190px;
    }

    .gallery-card--large {
        width: 290px;
    }

    .gallery-card--wide {
        width: 330px;
    }

}


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

@media (max-width: 480px) {

    .brands-gallery {
        height: 240px;
    }

    .gallery-card {
        height: 190px;
    }

    .gallery-card--small {
        width: 145px;
    }

    .gallery-card--portrait {
        width: 170px;
    }

    .gallery-card--large {
        width: 250px;
    }

    .gallery-card--wide {
        width: 290px;
    }

}



/* =========================
   SERVICES LUXE ACCORDION
========================= */

.services-luxe {
    position: relative;
    background: #050505;
    color: #fff;
    padding: 130px 0;
    overflow: hidden;
}

.services-luxe-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(20, 226, 122, .18), transparent 30%),
        radial-gradient(circle at 85% 75%, rgba(20, 226, 122, .10), transparent 32%),
        linear-gradient(180deg, #050505 0%, #020202 100%);
    pointer-events: none;
}

.services-luxe::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 96px 96px;
    opacity: .35;
    pointer-events: none;
}

.services-luxe-container {
    position: relative;
    z-index: 2;
    width: min(1200px, 88%);
    margin: auto;
}

/* =========================
   HEADLINE
========================= */

.services-luxe-head {
    margin-bottom: 76px;
}

.services-luxe-head span {
    display: inline-block;
    margin-bottom: 18px;
    color: #14E27A;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.services-luxe-head h2 {
    max-width: 980px;
    margin: 0;
    color: #fff;
    font-size: clamp(46px, 5.2vw, 60px);
    line-height: .92;
    letter-spacing: -2px;
    font-weight: 700;
}

.services-luxe-head h2 strong {
    display: block;
    color: #14E27A;
    font-weight: 700;
    white-space: nowrap;
}

/* =========================
   LIST
========================= */

.services-luxe-list {
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.luxe-service {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    overflow: hidden;
}

.luxe-service::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(20, 226, 122, .14), transparent 55%);
    opacity: 0;
    transform: scaleX(.7);
    transform-origin: left;
    transition: .6s cubic-bezier(.22, 1, .36, 1);
    pointer-events: none;
}

.luxe-service.active::before,
.luxe-service:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

/* =========================
   SERVICE TRIGGER
========================= */

.luxe-service-trigger {
    width: 100%;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 70px 1fr 54px;
    align-items: center;
    gap: 24px;
    padding: 30px 28px;
    background: transparent;
    border: none;
    color: #fff;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
}

.luxe-service-no {
    align-self: start;
    padding-top: 8px;
    color: #14E27A;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
}

.luxe-service-trigger h3 {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: clamp(30px, 4vw, 50px);
    line-height: .95;
    letter-spacing: -2px;
    font-weight: 600;
    transition: .45s cubic-bezier(.22, 1, .36, 1);
}

.luxe-service-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
    transition: .45s cubic-bezier(.22, 1, .36, 1);
}

.luxe-service.active .luxe-service-trigger h3,
.luxe-service:hover .luxe-service-trigger h3 {
    color: #14E27A;
    transform: translateX(10px);
}

.luxe-service.active .luxe-service-icon {
    background: #14E27A;
    color: #000;
    transform: rotate(45deg);
}

.luxe-service:hover .luxe-service-icon {
    background: #14E27A;
    color: #000;
}

/* =========================
   SERVICE CONTENT
========================= */

.luxe-service-content {
    position: relative;
    z-index: 2;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-left: 98px;
    padding-right: 80px;
    transition:
        max-height .7s cubic-bezier(.22, 1, .36, 1),
        opacity .45s ease,
        padding-bottom .45s ease;
}

.luxe-service.active .luxe-service-content {
    max-height: 280px;
    opacity: 1;
    padding-bottom: 36px;
}

.luxe-service-content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 17px;
    line-height: 1.7;
}

.luxe-service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.luxe-service-tags span {
    padding: 10px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .055);
    color: #fff;
    font-size: 14px;
    transition: .35s ease;
}

.luxe-service-tags span:hover {
    background: #14E27A;
    color: #000;
    border-color: #14E27A;
}

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

@media(max-width: 1024px) {

    .services-luxe {
        padding: 110px 0;
    }

    .services-luxe-head h2 {
        font-size: clamp(44px, 7vw, 70px);
    }

    .luxe-service-trigger h3 {
        font-size: clamp(34px, 6vw, 52px);
    }

}

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

@media(max-width: 768px) {

    .services-luxe {
        padding: 80px 0;
    }

    .services-luxe-container {
        width: calc(100% - 44px);
    }

    .services-luxe-head {
        margin-bottom: 46px;
    }

    .services-luxe-head span {
        font-size: 12px;
        margin-bottom: 14px;
    }

    .services-luxe-head h2 {
        font-size: 40px;
        line-height: 1;
        letter-spacing: -2px;
    }

    .services-luxe-head h2 strong {
        white-space: normal;
    }

    .luxe-service-trigger {
        grid-template-columns: 38px 1fr 38px;
        gap: 12px;
        padding: 24px 0;
    }

    .luxe-service-no {
        font-size: 12px;
        padding-top: 6px;
    }

    .luxe-service-trigger h3 {
        font-size: 28px;
        line-height: 1;
        letter-spacing: -1.4px;
    }

    .luxe-service-icon {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

    .luxe-service.active .luxe-service-trigger h3,
    .luxe-service:hover .luxe-service-trigger h3 {
        transform: none;
    }

    .luxe-service-content {
        padding-left: 50px;
        padding-right: 0;
    }

    .luxe-service.active .luxe-service-content {
        max-height: 440px;
        padding-bottom: 34px;
    }

    .luxe-service-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .luxe-service-tags {
        gap: 10px;
        margin-top: 22px;
    }

    .luxe-service-tags span {
        font-size: 13px;
        padding: 8px 13px;
    }

}

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

@media(max-width: 480px) {

    .services-luxe-container {
        width: calc(100% - 36px);
    }

    .services-luxe-head h2 {
        font-size: 36px;
    }

    .luxe-service-trigger {
        grid-template-columns: 34px 1fr 34px;
    }

    .luxe-service-trigger h3 {
        font-size: 25px;
    }

    .luxe-service-content {
        padding-left: 46px;
    }

    .luxe-service-tags span {
        font-size: 12px;
    }

}



/* =========================
   PROJECT LINK FIX
========================= */

.project {
    display: block;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.project:visited,
.project:hover,
.project:focus {
    color: inherit;
    text-decoration: none;
}

.project h2,
.project p {
    color: inherit;
}



.project-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px 70px;
    background: #fff;
}

.project-heading span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #999;
    text-transform: uppercase;
}

.project-heading h2 {
    margin-top: 18px;
    font-size: 60px;
    line-height: 1;
    letter-spacing: -2px;
    font-weight: 700;
    color: #111;
    max-width: 900px;
}

.project-list {
    position: relative;
}

.project {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.project-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(.22, 1, .36, 1);
}

.project::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .70) 0%,
            rgba(0, 0, 0, .25) 40%,
            transparent 75%);
    z-index: 1;
}

.project-content {
    position: absolute;
    left: 70px;
    bottom: 60px;
    z-index: 2;
    color: #fff;
}

.project-content h2 {
    font-size: 60px;
    font-weight: 700;
    line-height: .95;
    letter-spacing: -2px;
    margin-bottom: 14px;
}

.project-content p {
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: .9;
}

.project:hover .project-img {
    transform: scale(1.05);
}






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

@media (max-width:768px) {

    .project-heading {
        padding: 60px 20px 50px;
    }

    .project-heading h2 {
        font-size: 40px;
        line-height: 1;
        letter-spacing: -1px;
    }

    .project {
        height: 70vh;
    }

    .project-content {
        left: 24px;
        right: 24px;
        bottom: 30px;
    }

    .project-content h2 {
        font-size: 32px;
        letter-spacing: -1px;
        margin-bottom: 10px;
    }

    .project-content p {
        font-size: 12px;
        letter-spacing: 2px;
    }

}



/* =========================
   PROJECT CURSOR MARQUEE
========================= */

.project-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;

    width: 130px;
    height: 45px;

    overflow: hidden;

    background: #14E27A;
    border-radius: 999px;

    pointer-events: none;

    opacity: 0;
    visibility: hidden;

    transform: translate3d(-50%, -50%, 0) scale(.75);

    transition:
        opacity .22s ease,
        visibility .22s ease,
        transform .32s cubic-bezier(.22, 1, .36, 1);

    will-change: left, top, transform;
}

.project-cursor.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate3d(-50%, -50%, 0) scale(1);
}

.project-cursor-track {
    display: flex;
    align-items: center;

    width: max-content;
    height: 100%;

    animation: projectCursorMarquee 5s linear infinite;
    will-change: transform;
}

.project-cursor-item {
    display: inline-flex;
    align-items: center;
    gap: 17px;

    flex-shrink: 0;

    padding-right: 17px;

    color: #000000;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.project-cursor-item::after {
    content: "→";

    font-size: 16px;
    font-weight: 500;
}

@keyframes projectCursorMarquee {
    from {
        transform: translateX(0);
    }

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


/* Slight image interaction */

.project:hover .project-img {
    transform: scale(1.045);
}





/* =========================
   MOBILE VIEW CASE
========================= */

@media screen and (max-width: 767px) {

    .project {
        position: relative;
        overflow: hidden;
    }

    .project-cursor {
        display: block !important;

        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;

        z-index: 99999 !important;

        width: 130px;
        height: 45px;

        overflow: hidden;

        background: #14E27A;
        border-radius: 999px;

        pointer-events: none;

        opacity: 0;
        visibility: hidden;

        transform:
            translate3d(-50%, -50%, 0)
            scale(.75);

        transition:
            opacity .25s ease,
            visibility .25s ease,
            transform .35s
            cubic-bezier(.22, 1, .36, 1);
    }

    .project-cursor.is-mobile-visible {
        opacity: 1 !important;
        visibility: visible !important;

        transform:
            translate3d(-50%, -50%, 0)
            scale(1);
    }

    .project-cursor-track {
        display: flex;
        align-items: center;

        width: max-content;
        height: 100%;

        animation:
            projectCursorMarquee
            5s linear infinite;
    }

    .project-cursor-item {
        display: inline-flex;
        align-items: center;
        gap: 17px;

        flex-shrink: 0;

        padding-right: 17px;

        color: #000000;

        font-size: 12px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: .5px;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .project-cursor-item::after {
        content: "→";

        font-size: 16px;
        font-weight: 500;
    }

    .project-img {
        transition:
            transform .7s
            cubic-bezier(.22, 1, .36, 1),
            filter .5s ease;
    }

    .project.is-mobile-active .project-img {
        transform: scale(1.045);
        filter: brightness(.72);
    }

}



/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .project-cursor-track {
        animation: none;
    }

    .project-cursor {
        transition: opacity .2s ease;
    }
}



.project-picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.project-picture .project-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}


/* =========================
   VIEW ALL CASE STUDIES CTA
========================= */

.case-all-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    /* padding: 20px 0 95px; */
}

.case-all-cta a {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    padding: 16px 24px;

    color: #050505;
    text-decoration: none;

    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.2px;

    /* border-bottom: 1.5px solid #050505; */

    transition:
        gap .35s cubic-bezier(.22, 1, .36, 1),
        color .3s ease,
        border-color .3s ease;
}

.case-all-cta-arrow {
    font-size: 24px;
    line-height: 1;
    transition:
        transform .35s cubic-bezier(.22, 1, .36, 1);
}

.case-all-cta a:hover {
    gap: 28px;
    color: #14e27a;
    /* border-color: #14e27a; */
}

.case-all-cta a:hover .case-all-cta-arrow {
    transform: translateX(5px);
}


@media (max-width: 767px) {

       .case-all-cta a {
        font-size: 14px;
        padding: 14px 18px;
        gap: 14px;
    }

}



/* =========================
   AWARDS OVERLAY — FINAL
========================= */

.awards-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;

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

    padding: 36px;

    visibility: hidden;
    opacity: 0;
    pointer-events: none;

    transition:
        opacity .35s ease,
        visibility .35s ease;
}

.awards-overlay.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.awards-overlay-backdrop {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, .48);
    backdrop-filter: blur(4px);
}

.awards-overlay-panel {
    position: relative;
    z-index: 2;

    width: min(1180px, 90vw);
    height: min(760px, 86vh);
    min-height: 0;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #fff;
    border-radius: 12px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .22);

    opacity: 0;
    transform: translateY(35px) scale(.98);

    transition:
        opacity .4s ease,
        transform .5s cubic-bezier(.22, 1, .36, 1);
}

.awards-overlay.is-open .awards-overlay-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}


/* Header */

.awards-overlay-top {
    flex: 0 0 auto;

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

    padding: 22px 26px;

    background: #fff;
    border-bottom: 1px solid #ddd;
}

.awards-overlay-top h2 {
    margin: 0;

    color: #111;
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.awards-overlay-close {
    position: relative;

    width: 44px;
    height: 44px;

    padding: 0;
    border: 0;
    border-radius: 50%;

    background: transparent;
    cursor: pointer;

    transition:
        background .3s ease,
        transform .3s ease;
}

.awards-overlay-close:hover {
    background: #f1f1f1;
    transform: rotate(90deg);
}

.awards-overlay-close span {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 20px;
    height: 1.5px;

    background: #666;
}

.awards-overlay-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.awards-overlay-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}


/* Important scrolling container */

.awards-overlay-content {
    position: relative;

    flex: 1 1 0;
    min-height: 0;

    overflow-x: hidden;
    overflow-y: auto;

    padding: 0 16px 20px;

    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
}

.awards-overlay-content::-webkit-scrollbar {
    width: 7px;
}

.awards-overlay-content::-webkit-scrollbar-track {
    background: transparent;
}

.awards-overlay-content::-webkit-scrollbar-thumb {
    background: #111;
    border-radius: 20px;
}


/* Table */

.awards-overlay-table {
    width: 100%;
}

.awards-overlay-head,
.awards-overlay-row {
    display: grid;

    grid-template-columns:
        110px
        minmax(240px, 2fr)
        minmax(240px, 2fr)
        minmax(280px, 2fr);

    column-gap: 24px;
}

.awards-overlay-head {
    position: sticky;
    top: 0;
    z-index: 5;

    padding: 20px 8px;

    background: #fff;
    border-bottom: 1px solid #ddd;

    color: #111;
    font-size: 14px;
    font-weight: 600;
}

.awards-overlay-row {
    align-items: center;

    padding: 18px 8px;

    border-bottom: 1px solid #e4e4e4;
    transition: background .3s ease;
}

.awards-overlay-row:hover {
    background: #f7f7f7;
}

.awards-overlay-row span {
    color: #111;
    font-size: 18px;
    line-height: 1.55;
}


/* Background lock */

html.awards-overlay-active,
body.awards-overlay-active {
    overflow: hidden !important;
}


/* Tablet */

@media (max-width: 1000px) {
    .awards-overlay {
        padding: 22px;
    }

    .awards-overlay-panel {
        width: 94vw;
        height: 88vh;
    }

    .awards-overlay-content {
        overflow-x: auto;
    }

    .awards-overlay-table {
        min-width: 940px;
    }
}


/* Mobile */

@media (max-width: 700px) {
    .awards-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .awards-overlay-panel {
        width: 100%;
        height: 90vh;

        border-radius: 18px 18px 0 0;

        transform: translateY(100%);
    }

    .awards-overlay.is-open .awards-overlay-panel {
        transform: translateY(0);
    }

    .awards-overlay-top {
        padding: 19px 20px;
    }

    .awards-overlay-top h2 {
        font-size: 24px;
        letter-spacing: -.5px;
    }

    .awards-overlay-content {
        padding: 0 20px 35px;
        overflow-x: hidden;
    }

    .awards-overlay-table {
        min-width: 0;
    }

    .awards-overlay-head {
        display: none;
    }

    .awards-overlay-row {
        display: block;
        padding: 22px 0;
    }

    .awards-overlay-row span {
        display: grid;
        grid-template-columns: 105px 1fr;
        gap: 14px;

        margin-bottom: 12px;
        font-size: 15px;
    }

    .awards-overlay-row span:last-child {
        margin-bottom: 0;
    }

    .awards-overlay-row span::before {
        content: attr(data-label);

        color: #888;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
    }
}



/* =========================
   MAIN AWARDS SECTION — RESET
========================= */

.awards {
    display: block;
    width: 100%;
    padding: 140px 0;
    background: #fff;
}

.awards-container {
    width: 86%;
    max-width: 1500px;
    margin: 0 auto;
}

.awards-top {
    margin-bottom: 70px;
}

.awards-top .section-tag {
    display: block;
    color: #111;
    font-size: 15px;
    line-height: 1.4;
}

.awards-top h2 {
    margin: 18px 0 0;
    color: #111;
    font-size: 60px;
    font-weight: 700;
    line-height: .9;
    letter-spacing: -4px;
}

.awards-table {
    display: block;
    width: 100%;
}

.table-head,
.table-row {
    display: grid;
    grid-template-columns: 120px 2fr 2fr 1.5fr;
    column-gap: 24px;
}

.table-head {
    padding-bottom: 18px;
    color: #999;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid #ddd;
}

.table-row {
    position: relative;
    align-items: center;
    padding: 32px 0;
    border-bottom: 1px solid #ececec;
    transition:
        padding-left .45s cubic-bezier(.22, 1, .36, 1),
        background .35s ease;
}

.table-row span {
    color: #111;
    font-size: 20px;
    line-height: 1.4;
}

.table-row:hover {
    padding-left: 20px;
}

.table-row::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background: #111;
    transition: width .5s ease;
}

.table-row:hover::after {
    width: 100%;
}

.awards-footer {
    display: flex;
    justify-content: center;
    margin-top: 70px;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 0;
    border: 0;
    outline: 0;

    background: transparent;
    color: #111;

    font-family: inherit;
    font-size: 18px;
    font-weight: 600;

    cursor: pointer;
    transition: letter-spacing .35s ease;
}

.view-all .career-submit-arrow {
    display: inline-block;
    transition: transform .35s ease;
}

.view-all:hover {
    letter-spacing: .5px;
      color: #14e27a;
}

.view-all:hover .career-submit-arrow {
    transform: translateX(8px);
}

@media (max-width: 900px) {
    .awards {
        padding: 90px 0;
    }

    .awards-top h2 {
        font-size: 56px;
        letter-spacing: -2px;
    }

    .table-head {
        display: none;
    }

    .table-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 22px 0;
    }

    .table-row:hover {
        padding-left: 0;
    }

    .table-row span {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .awards {
        padding: 70px 0;
    }

    .awards-top {
        margin-bottom: 45px;
    }

    .awards-top h2 {
        font-size: 42px;
        letter-spacing: -1px;
    }
}


/*================================
PREMIUM FOOTER — RESPONSIVE FINAL
================================*/

.footer {
    position: relative;
    width: 100%;
    background: #050505;
    color: #fff;
    padding: 0 0 42px;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 12% 15%,
            rgba(20, 226, 122, .13),
            transparent 28%
        ),
        radial-gradient(
            circle at 82% 80%,
            rgba(20, 226, 122, .10),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #050505 0%,
            #020202 100%
        );
    pointer-events: none;
}

.footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, .025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .025) 1px,
            transparent 1px
        );
    background-size: 90px 90px;
    opacity: .32;
    pointer-events: none;
}

.footer > * {
    position: relative;
    z-index: 2;
}


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

.footer-top {
    width: min(calc(100% - 120px), 1320px);
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(180px, 1fr)
        minmax(300px, 1.4fr)
        minmax(220px, 1fr);

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

.footer-top > div {
    min-width: 0;
    padding: 72px 0;
}

.footer-top > div:nth-child(2) {
    padding-left: clamp(40px, 5vw, 90px);
    padding-right: clamp(30px, 4vw, 70px);

    border-left:
        1px solid rgba(255, 255, 255, .09);

    border-right:
        1px solid rgba(255, 255, 255, .09);
}


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

.footer-links span,
.footer-contact span {
    display: block;

    color: rgba(255, 255, 255, .42);

    font-size: 14px;
    line-height: 1.4;

    margin-bottom: 26px;
}

.footer-links a,
.footer-contact a {
    position: relative;

    display: table;
    max-width: 100%;

    color: #fff;
    text-decoration: none;

    margin-bottom: 16px;

    transition:
        color .35s ease,
        transform .35s ease;
}

.footer-links a::after,
.footer-contact a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -4px;

    width: 0;
    height: 1px;

    background: #14E27A;

    transition: width .35s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #14E27A;
    transform: translateX(8px);
}

.footer-links a:hover::after,
.footer-contact a:hover::after {
    width: 100%;
}


/* =================================
   CONTACT
================================= */

.footer-contact p {
    margin-top: 26px;

    color: rgba(255, 255, 255, .42);

    line-height: 1.5;
}


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

.footer-cta {
    min-width: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-btn {
    position: relative;

    width: clamp(125px, 11vw, 170px);
    aspect-ratio: 1 / 1;
    height: auto;

    border-radius: 50%;

    color: #000;
    background: #14E27A;

    text-decoration: none;

    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 800;

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

    gap: 10px;

    text-align: center;

    padding: 15px;

    overflow: hidden;
    flex-shrink: 0;

    transition:
        transform .45s cubic-bezier(.22, 1, .36, 1),
        background .35s ease;
}

.footer-btn::before {
    content: "";

    position: absolute;
    inset: -40%;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255, 255, 255, .55),
            transparent
        );

    transform:
        translateX(-100%)
        rotate(20deg);

    transition:
        transform .7s ease;
}

.footer-btn:hover::before {
    transform:
        translateX(100%)
        rotate(20deg);
}

.footer-btn:hover {
    background: #fff;

    transform:
        rotate(-8deg)
        scale(1.04);
}

.footer-btn img {
    width: clamp(17px, 1.5vw, 22px);
    height: auto;

    display: block;
    flex-shrink: 0;

    filter: brightness(0);

    transition:
        transform .35s ease;
}

.footer-btn:hover img {
    transform: translateX(8px);
}


/* =================================
   FOOTER LOGO
   LARGE + NO CROPPING
================================= */

.footer-logo {
    width: calc(100% - 340px) !important;
    max-width: none !important;

    margin-left: 170px !important;
    margin-right: 170px !important;

    margin-top: 42px !important;
    margin-bottom: 42px !important;

    padding: 0 !important;

    box-sizing: border-box !important;

    overflow: visible !important;

    text-align: center !important;
}

.footer-logo h2 {
    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    font-size:
        clamp(60px, 6.7vw, 105px) !important;

    line-height: .82 !important;

    letter-spacing: -6px !important;

    font-weight: 850 !important;

    text-align: center !important;

    white-space: nowrap !important;

    text-transform: uppercase !important;

    overflow: visible !important;
}


/* WORDS */

.footer-logo .footer-word {
    display: inline-block !important;

    white-space: nowrap !important;
}

.footer-logo .footer-space {
    display: inline-block !important;

    width: .22em !important;
}

.footer-logo .footer-char {
    display: inline-block;
}

.footer-logo h2 .footer-green {
    color: #14E27A !important;
}

.footer-logo h2 .footer-char:hover {
    color: #14E27A;
}


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

.footer-bottom {
    width: min(calc(100% - 120px), 1320px);

    margin: 0 auto;

    display: flex;

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

    gap: 30px;

    padding-top: 30px;

    border-top:
        1px solid rgba(255, 255, 255, .09);
}

.social {
    display: flex;

    gap: clamp(18px, 2.5vw, 32px);

    flex-wrap: wrap;
}

.social a,
.privacy-link,
.footer-bottom p {
    color: rgba(255, 255, 255, .42);

    text-decoration: none;

    transition:
        color .35s ease,
        transform .35s ease;
}

.social a:hover,
.privacy-link:hover {
    color: #14E27A;

    transform:
        translateY(-4px);
}

.footer-bottom p {
    margin: 0;
}


/* =================================
   LARGE LAPTOP
================================= */

@media (max-width: 1440px) and (min-width: 1201px) {

    .footer-top {
        width: calc(100% - 100px);

        grid-template-columns:
            minmax(170px, 1fr)
            minmax(280px, 1.35fr)
            minmax(200px, .9fr);
    }

    .footer-logo {
        width: calc(100% - 240px) !important;

        margin-left: 120px !important;
        margin-right: 120px !important;
    }

    .footer-logo h2 {
        font-size:
            clamp(58px, 6.6vw, 100px) !important;

        letter-spacing: -5px !important;
    }

    .footer-bottom {
        width: calc(100% - 100px);
    }
}


/* =================================
   LAPTOP
================================= */

@media (max-width: 1200px) and (min-width: 901px) {

    .footer {
        padding-bottom: 34px;
    }

    .footer-top {
        width: calc(100% - 70px);

        grid-template-columns:
            minmax(160px, 1fr)
            minmax(260px, 1.3fr)
            minmax(180px, .8fr);
    }

    .footer-top > div {
        padding: 55px 0;
    }

    .footer-top > div:nth-child(2) {
        padding-left: 45px;
        padding-right: 35px;
    }

    .footer-btn {
        width: 125px;
        font-size: 14px;
    }

    .footer-btn img {
        width: 17px;
    }

    .footer-logo {
        width: calc(100% - 100px) !important;

        margin-left: 50px !important;
        margin-right: 50px !important;

        margin-top: 42px !important;
        margin-bottom: 42px !important;
    }

    .footer-logo h2 {
        font-size:
            clamp(52px, 6.5vw, 82px) !important;

        letter-spacing: -4px !important;
    }

    .footer-bottom {
        width: calc(100% - 70px);

        font-size: 14px;
    }
}


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

@media (max-width: 900px) and (min-width: 769px) {

    .footer {
        padding:
            0 35px 36px;
    }

    .footer-top {
        width: 100%;

        grid-template-columns:
            1fr
            1.25fr
            150px;
    }

    .footer-top > div {
        padding: 48px 0;
    }

    .footer-top > div:nth-child(2) {
        padding-left: 32px;
        padding-right: 25px;
    }

    .footer-links a,
    .footer-contact a {
        font-size: 14px;
    }

    .footer-contact span,
    .footer-links span {
        font-size: 12px;
    }

    .footer-contact p {
        font-size: 13px;
    }

    .footer-btn {
        width: 115px;
        font-size: 13px;
        gap: 7px;
    }

    .footer-btn img {
        width: 16px;
    }

    .footer-logo {
        width: 100% !important;

        margin:
            40px 0 !important;

        text-align: left !important;
    }

    .footer-logo h2 {
        font-size:
            clamp(42px, 6.8vw, 62px) !important;

        letter-spacing: -2px !important;

        text-align: left !important;
    }

    .footer-bottom {
        width: 100%;

        font-size: 13px;
    }
}


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

@media (max-width: 768px) {

    .footer {
        padding:
            42px 22px 58px;
    }

    .footer-top {
        width: 100%;

        display: block;

        border-bottom:
            1px solid rgba(255, 255, 255, .09);

        padding-bottom: 34px;
    }

    .footer-top > div {
        padding: 0 !important;

        border: none !important;
    }

    .footer-links {
        margin-bottom: 42px;
    }

    .footer-links span,
    .footer-contact span {
        margin-bottom: 20px;

        font-size: 13px;
    }

    .footer-links a {
        margin-bottom: 14px;

        font-size: 16px;
    }

    .footer-contact {
        margin-bottom: 38px;
    }

    .footer-contact a {
        margin-bottom: 14px;

        font-size: 16px;

        word-break: break-word;
    }

    .footer-contact p {
        margin-top: 22px;

        font-size: 14px;

        line-height: 1.6;
    }

    .footer-cta {
        justify-content: flex-start;

        margin-bottom: 30px;
    }

    .footer-btn {
        width: 100px;
        height: 100px;

        font-size: 12px;

        gap: 7px;
    }

    .footer-btn img {
        width: 15px;
    }

    .footer-logo {
        width: 100% !important;

        margin:
            30px 0 26px !important;

        padding: 0 !important;

        overflow: visible !important;

        text-align: left !important;
    }

    .footer-logo h2 {
        display: flex !important;

        flex-direction: column !important;

        align-items: flex-start !important;

        width: 100% !important;

        font-size:
            clamp(36px, 10.5vw, 46px) !important;

        line-height: .88 !important;

        letter-spacing: -1.5px !important;

        white-space: normal !important;

        text-align: left !important;

        overflow: visible !important;
    }

    .footer-logo .footer-word {
        display: block !important;

        max-width: 100% !important;

        white-space: nowrap !important;
    }

    .footer-logo .footer-space {
        display: none !important;
    }

    .footer-bottom {
        width: 100%;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        padding-top: 22px;

        padding-bottom: 30px;
    }

    .social {
        display: flex;

        flex-direction: row;

        gap: 18px;

        flex-wrap: wrap;
    }

    .social a,
    .privacy-link,
    .footer-bottom p {
        font-size: 14px;
    }
}


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

@media (max-width: 480px) {

    .footer {
        padding:
            36px 18px 64px;
    }

    .footer-logo {
        margin:
            30px 0 26px !important;
    }

    .footer-logo h2 {
        font-size:
            clamp(34px, 10.5vw, 40px) !important;

        letter-spacing: -1.3px !important;
    }

    .footer-contact a,
    .footer-links a {
        font-size: 16px;
    }

    .social {
        gap: 18px;
    }
}


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

@media (max-width: 360px) {

    .footer {
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-logo h2 {
        font-size: 32px !important;

        letter-spacing: -1px !important;
    }

    .footer-bottom {
        gap: 16px;
    }

    .social {
        gap: 14px;
    }
}


/* =========================
   SIMPLE FULLSCREEN MENU
========================= */

.menu-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #16E777;
    color: #000;
    z-index: 99999;

    transform: translateY(100%);
    transition: transform 0.9s cubic-bezier(.76, 0, .24, 1);

    overflow: hidden;
    pointer-events: none;
}

.menu-overlay.active {
    transform: translateY(0);
    pointer-events: all;
}

/* subtle grid only */
.menu-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, .055) 1px, transparent 1px);
    background-size: 90px 90px;
    opacity: .32;
    pointer-events: none;
}

/* remove duplicate background text */
.menu-overlay::after,
.menu-panel::after {
    display: none !important;
    content: none !important;
}

/* =========================
   TOP
========================= */

.menu-top {
    position: absolute;
    top: 48px;
    left: 70px;
    right: 70px;
    z-index: 3;

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

    opacity: 0;
}

.menu-logo {
    width: 160px;
    filter: brightness(0);
}

.close-menu {
    width: 62px;
    height: 62px;
    border: none;
    background: #050505;
    color: #fff;
    font-size: 28px;
    cursor: pointer;

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

    transition: .35s cubic-bezier(.22, 1, .36, 1);
}

.close-menu:hover {
    background: #fff;
    color: #000;
    transform: rotate(90deg) scale(1.05);
}


/* =========================
   LINKS
========================= */

.menu-links {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.menu-links a {
    display: block;
    position: relative;
    width: fit-content;

    color: rgba(0, 0, 0, .45);
    text-decoration: none;

    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(78px, 8.6vw, 150px);
    line-height: .78;
    letter-spacing: -2.5px;
    font-weight: 900;

    opacity: 0;
    transform: translateY(100%);

    overflow: hidden;
    outline: none;
    border: none;
    background: none;
}

/* remove old underline */
.menu-links a::before,
.menu-links a::after {
    display: none !important;
    content: none !important;
}

.menu-links a:focus,
.menu-links a:focus-visible,
.menu-links a:active {
    outline: none !important;
    box-shadow: none !important;
}

/* roll text wrapper */
.menu-link-text {
    position: relative;
    display: block;
    overflow: hidden;
    line-height: .78;
}

.menu-link-main,
.menu-link-hover {
    display: block;
    line-height: .78;
    transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

.menu-link-main {
    color: rgba(0, 0, 0, .42);
    transform: translateY(0);
}

.menu-link-hover {
    position: absolute;
    left: 0;
    top: 0;

    color: #050505;
    transform: translateY(105%);
}

/* hover same position */
.menu-links a:hover .menu-link-main {
    transform: translateY(-105%);
}

.menu-links a:hover .menu-link-hover {
    transform: translateY(0);
}

/* mobile */
@media(max-width:768px) {

    .menu-links {
        left: 24px;
        right: 24px;
        top: 26vh;
        transform: none;
    }

    .menu-links a {
        font-size: clamp(52px, 15vw, 82px);
        line-height: .88;
        letter-spacing: -.1px;
    }

    .menu-link-text,
    .menu-link-main,
    .menu-link-hover {
        line-height: .88;
    }

}

@media(max-width:480px) {

    .menu-links {
        top: 24vh;
    }

    .menu-links a {
        font-size: 50px;
    }

}


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

@media(max-width:768px) {

    .menu-overlay {
        overflow-y: auto;
    }

    .menu-top {
        top: 28px;
        left: 24px;
        right: 24px;
    }

    .menu-logo {
        width: 110px;
    }

    .close-menu {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .menu-links {
        left: 24px;
        right: 24px;
        top: 26vh;
        transform: none;
    }

    .menu-links a {
        font-size: clamp(52px, 15vw, 82px);
        line-height: .88;
        letter-spacing: -1px;
    }

    .menu-links a::after {
        height: 4px;
        bottom: 4px;
    }

    .menu-links a:hover {
        transform: none;
    }

    .menu-right {
        left: 24px;
        right: 24px;
        bottom: 34px;
        align-items: flex-start;
        gap: 28px;
    }

    .social-icons {
        gap: 14px;
    }

    .social-icons a {
        width: 48px;
        height: 48px;
    }

    .social-icons img {
        width: 20px;
        height: 20px;
    }

    .menu-info {
        align-items: flex-start;
        gap: 12px;
    }

    .menu-info a {
        font-size: 15px;
    }

    .menu-info p {
        margin-top: 10px;
        font-size: 13px;
    }

}

@media(max-width:480px) {

    .menu-links {
        top: 24vh;
    }

    .menu-links a {
        font-size: 50px;
    }

}



/* =========================
   MENU RIGHT SIDE RESTORE
========================= */

.menu-right {
    position: absolute !important;
    right: 70px !important;
    bottom: 60px !important;
    z-index: 5 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 40px !important;

    opacity: 0;
}

.menu-overlay.active .menu-right {
    pointer-events: auto;
}

.social-icons {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px !important;
    margin: 0 !important;
}

.social-icons a {
    width: 64px !important;
    height: 64px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 1px solid rgba(0, 0, 0, .38) !important;
    border-radius: 50% !important;

    text-decoration: none !important;
    overflow: hidden !important;
}

.social-icons a::before,
.social-icons a::after {
    display: none !important;
    content: none !important;
}

.social-icons img {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;

    object-fit: contain !important;
    display: block !important;

    filter: brightness(0) !important;
}

.social-icons a:hover {
    background: #050505 !important;
    transform: translateY(-7px) !important;
}

.social-icons a:hover img {
    filter: brightness(0) invert(1) !important;
}

.menu-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    gap: 14px !important;
}

.menu-info a {
    color: #050505 !important;
    text-decoration: none !important;
    font-size: 17px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
}

.menu-info p {
    margin: 18px 0 0 !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    color: rgba(0, 0, 0, .65) !important;
}

/* mobile restore */
@media (max-width: 768px) {
    .menu-right {
        left: 24px !important;
        right: 24px !important;
        bottom: 34px !important;
        align-items: flex-start !important;
        gap: 28px !important;
    }

    .social-icons {
        gap: 14px !important;
    }

    .social-icons a {
        width: 48px !important;
        height: 48px !important;
    }

    .social-icons img {
        width: 20px !important;
        height: 20px !important;
        max-width: 20px !important;
        max-height: 20px !important;
    }

    .menu-info {
        align-items: flex-start !important;
    }

    .menu-info a {
        font-size: 15px !important;
    }

    .menu-info p {
        font-size: 13px !important;
    }
}

/* =========================================================
   FOOTER — FINAL PAGE ALIGNMENT FIX
   Keeps the black footer full-width while aligning its
   inner content with the main page content.
========================================================= */

@media (min-width: 1441px) {

    .footer-top,
    .footer-bottom,
    .footer-logo {
        width: calc(100% - 360px) !important;
        max-width: none !important;
        margin-left: 180px !important;
        margin-right: 180px !important;
    }

    .footer-top {
        grid-template-columns:
            1fr
            1.4fr
            1fr !important;
    }

    .footer-top > div:nth-child(2) {
        padding-left: 80px !important;
        padding-right: 80px !important;
    }
}


/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1440px) and (min-width: 1201px) {

    .footer-top,
    .footer-bottom,
    .footer-logo {
        width: calc(100% - 240px) !important;
        max-width: none !important;
        margin-left: 120px !important;
        margin-right: 120px !important;
    }

    .footer-top > div:nth-child(2) {
        padding-left: 55px !important;
        padding-right: 55px !important;
    }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) and (min-width: 901px) {

    .footer-top,
    .footer-bottom,
    .footer-logo {
        width: calc(100% - 100px) !important;
        max-width: none !important;
        margin-left: 50px !important;
        margin-right: 50px !important;
    }

    .footer-top > div:nth-child(2) {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}


/* =========================================================
   TABLET + MOBILE
========================================================= */

@media (max-width: 900px) {

    .footer-top,
    .footer-bottom,
    .footer-logo {
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}
