/* =========================================================
   HEADER — BASE
   ========================================================= */

.site-headero {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    width: 100%;

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

    box-sizing: border-box;

    min-height: 90px;
    padding: 0 40px;

  

    animation: header-scroll linear both;
    animation-timeline: scroll();
    animation-range: 0 150px;
}


/* =========================================================
   HEADER — ANIMATION
   ========================================================= */

@keyframes header-scroll {

    from {
        min-height: 90px;
        padding-top: 0;
        padding-bottom: 0;

        color: #ffffff;

        background-color: rgba(255, 255, 255, 0);

        box-shadow: 0 0 0 rgba(0, 0, 0, 0);

        backdrop-filter: blur(0);
        -webkit-backdrop-filter: blur(0);
    }

    to {
        min-height: 80px;
        padding-top: 0;
        padding-bottom: 0;

        color: #555555;

        background-color: rgba(255, 255, 255, 0.96);

        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);

        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

}


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

.brando {
    display: flex;
    align-items: center;


    text-decoration: none;

    color: inherit;

    animation: brand-scroll linear both;
    animation-timeline: scroll();
    animation-range: 0 150px;
}


@keyframes brand-scroll {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(0.88);

    }

}


/* =========================================================
   LOGO
   ========================================================= */

.brand-logo-o {
    display: block;

    height: 55px;
    filter: brightness(0) invert(1);
    
    width: auto;
    object-fit: contain;

    transform-origin: left center;

    animation: logo-scroll linear both;
    animation-timeline: scroll();
    animation-range: 0 150px;
}


@keyframes logo-scroll {

    from {
        filter: brightness(0) invert(1);
        height: 55px;
    }

    to {
        filter: brightness(0);
        height: 45px;
    }

}


/* =========================================================
   NAVIGATION
   ========================================================= */

.site-nav-o {
    display: flex;
    align-items: center;

    gap: 32px;

    animation: nav-scroll linear both;
    animation-timeline: scroll();
    animation-range: 0 150px;
}


@keyframes nav-scroll {

    from {
        gap: 32px;
    }

    to {
        gap: 24px;
    }

}


.site-nav .aaaa {
    position: relative;

    color: inherit;

    text-decoration: none;

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

    white-space: nowrap;

    transition:
        opacity 0.3s ease,
        color 0.3s ease;

    animation: nav-text-scroll linear both;
    animation-timeline: scroll();
    animation-range: 0 150px;
}


@keyframes nav-text-scroll {

    from {
        font-size: 14px;
    }

    to {
        font-size: 13px;
    }

}


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

.site-nav a:hover {
    opacity: 0.65;
}


/* =========================================================
   ACTIVE LINK
   ========================================================= */

.site-nav a.active {
    font-weight: 500;
}


/* =========================================================
   HEADER CTA
   ========================================================= */

.header-cta-o {
    display: flex;
    align-items: center;

    animation: cta-container-scroll linear both;
    animation-timeline: scroll();
    animation-range: 0 150px;
}


@keyframes cta-container-scroll {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(0.90);
    }

}


.header-cta .btnnnn {
    padding: 12px 20px;

    font-size: 13px;

    white-space: nowrap;

    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;

    animation: cta-scroll linear both;
    animation-timeline: scroll();
    animation-range: 0 150px;
}


@keyframes cta-scroll {

    from {
        padding: 12px 20px;
        font-size: 13px;
    }

    to {
        padding: 9px 16px;
        font-size: 11px;
    }

}


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

.menu-toggle {
    display: none;

    border: 0;
    background: transparent;

    padding: 8px;

    cursor: pointer;
}


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

@media (max-width: 900px) {

    .site-header {
        min-height: 76px;
        padding: 0 24px;
    }

    .site-nav,
    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;

        flex-direction: column;

        gap: 5px;
    }

    .menu-toggle span {
        display: block;

        width: 22px;
        height: 1px;

        background: currentColor;
    }

    .brand-logo {
        height: 40px;
    }

}


/* =========================================================
   MOBILE — SCROLL
   ========================================================= */

@media (max-width: 900px) {

    .site-header {
        animation-range: 0 100px;
    }

    .brand-logo {
        animation-range: 0 100px;
    }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

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

    .site-header,
    .brand,
    .brand-logo,
    .site-nav,
    .site-nav a,
    .header-cta,
    .header-cta .btn {
        animation: none !important;
    }

}







/*============================================================
MAIN
============================================================*/

/* =========================================================
   PAGE TITLE / HERO
   ========================================================= */

.page-title {
    position: relative;

    width: 100%;
    /* min-height: 560px; */
    min-height: 595px;
    overflow: hidden;
    max-width: none;

    min-height: 70vh;

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

    color: #fff !important;

    background: #111;
}


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

.page-title-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;


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

    display: block;
}


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

.page-title::after {
    content: "";


    position: absolute;
    inset: 0;

    /* background: rgba(0, 0, 0, 0.35); */

    z-index: 1;
}


/* =========================================================
   CONTENT
   ========================================================= */
.page-title p {
    color: #fff !important;


}
.page-title-overlay {
    position: relative;

    z-index: 2;

    width: min(900px, 90%);

    text-align: center;

    padding: 80px 20px;
}


/* =========================================================
   BREADCRUMB
   ========================================================= */

.page-title .crumbs {
    margin: 0 0 24px;

    font-size: 12px;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}

.page-title .crumbs a {
    color: inherit;
    text-decoration: none;
}

.page-title .crumbs span {
    margin: 0 8px;
    opacity: 0.7;
}


/* =========================================================
   TITLE
   ========================================================= */

.page-title h1 {
    margin: 0;

    color: #fff;

    font-size: clamp(42px, 7vw, 82px);

    line-height: 0.95;

    font-weight: 400;

    letter-spacing: -0.03em;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.page-title-description {
    max-width: 620px;

    margin: 28px auto 0;

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

    font-size: 16px;

    line-height: 1.6;
}


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

@media (max-width: 700px) {

    .page-title {
        min-height: 460px;
    }

    .page-title-overlay {
        padding: 60px 20px;
    }

    .page-title h1 {
        font-size: clamp(40px, 12vw, 60px);
    }

    .page-title-description {
        font-size: 15px;
    }

}

.site-header {
    position: fixed;
    z-index: 100;
    background-color: #fff;

    width: 100%;
}

.gallery-hidden {
    display: none !important;
}