body .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
    padding: 0px 64px;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.08); */
}

.header-container {
    width: 100%;
    max-width: var(--container-width);
    min-height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

header.site-header {
    width: 100%;
    transition: all 0.3s ease;
    z-index: 999;
}

header.site-header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #060606;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    animation: headerSlideDown 0.3s ease;
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* =========================================
   LOGO
========================================= */

.site-logo {
    display: flex;
    align-items: center;
    gap: 16px;

    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 49px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    transition: transform 0.3s ease;
}

.site-logo:hover .logo-icon {
    transform: translateY(-2px);
}

.logo-icon-svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: rgba(255, 255, 255, 0.9);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;

    transition: stroke 0.3s ease;
}

.logo-icon-svg circle {
    fill: rgba(255, 255, 255, 0.9);
    stroke: none;
    transition: fill 0.3s ease;
}

.site-logo:hover .logo-icon-svg,
.site-logo:hover .logo-icon-svg circle {
    stroke: #fff;
    fill: #fff;
}

.logo-text {
    display: inline-flex;
    align-items: baseline;
    gap: 0;

    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 18px;
    letter-spacing: 2.2px;
    white-space: nowrap;
}

.logo-text-strong {
    font-weight: 700;
}

.logo-text-light {
    font-weight: 400;
}


/* =========================================
   NAVIGATION
========================================= */

.main-nav {
    margin: auto auto auto 0px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;

    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-list li {
    margin: 0;
    padding: 0;
}

.nav-list a {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
    color: #fff;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: var(--sm-paragraph-size);
    font-style: normal;
    line-height: var(--sm-paragraph-line-height);
    letter-spacing: var(--sm-paragraph-letter-spacing);
    transition: opacity 0.3s ease;
}

.nav-list a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.35s ease;
}


.nav-list a:hover::after {
    width: 100%;
}

body .nav-list a:hover,
body .nav-list a:focus {
    color: #fff;
}


/* =========================================
   GET IN TOUCH BUTTON
========================================= */

.header-cta {
    height: 45px;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background-color: transparent;
    color: var(--color-white);
    font-family: var(--font-mono);
    font-weight: var(--fw-regular);
    font-style: normal;
    font-size: 12px;
    line-height: var(--banner-button-line-height);
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
    display: flex;
    gap: 7px;
    align-items: center;
}

.header-cta:hover {
    background: #fff;
    color: #222;
    border-color: #fff;
    transform: translateY(-1px);
}

.cta-arrow {
    font-size: 15px;
    line-height: 1;

    transition: transform 0.3s ease;
}

.header-cta:hover .cta-arrow {
    transform: translateX(3px);
}

.main-nav  a.header-cta-mobile{
    display: none;
}

/* =========================================
   MOBILE MENU BUTTON
========================================= */

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 8px;
    background: transparent;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease;
    border: none;
}

.nav-toggle:hover {
    border-color: none;
    background: rgba(255, 255, 255, 0);
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 1px;

    margin: 5px 0;

    background: #fff;

    transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* =========================================
   ACTIVE NAV ITEM — persistent underline
========================================= */

.nav-list .current-menu-item>a::after,
.nav-list a[aria-current="page"]::after {
    width: 100%;
}

/* Optional: slightly dim non-active links so the active one stands out more */
.nav-list a {
    opacity: 0.85;
}

.nav-list .current-menu-item>a,
.nav-list a:hover,
.nav-list a:focus,
.nav-list a[aria-current="page"] {
    opacity: 1;
}

@media(max-width:1024px) {
    header.site-header {
        padding: 0px 40px;
    }

    .footer-row {
        padding: 32px 0 32px !important;
        background-image: none !important;
    }
     header.site-header.nav-open {
        background-color: #060606;
    }
    .nav-list a{
        width: fit-content;
    }

}

/* =========================================
   RESPONSIVE HEADER
========================================= */

@media (max-width: 992px) {


    .logo-icon {
        width: 34px;
        height: 40px;
    }

    .logo-text {
        font-size: 15px;
        letter-spacing: 1.6px;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;

        width: 100%;

        margin: 0;

        background: rgba(20, 20, 20, 0.97);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);

        max-height: 0;
        overflow: hidden;

        transition: max-height 0.35s ease;
    }

    .site-header.nav-open .main-nav {
        max-height: 100vh;
        height: 100vh;
        background: #060606;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;

        padding: 10px 40px 20px;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list a {
        display: block;
        padding: 12px 0;
    }

    .header-cta {
        display: none;
    }

    .nav-toggle {
        display: block;
    }
     .main-nav a.header-cta-mobile {
        display: flex !important;
        height: 45px;
        padding: 12px 24px;
        border: 1px solid rgba(255, 255, 255, 0.45);
        background-color: transparent;
        color: var(--color-white);
        font-family: var(--font-mono);
        font-weight: var(--fw-regular);
        font-style: normal;
        font-size: 12px;
        line-height: var(--banner-button-line-height);
        letter-spacing: 0;
        text-transform: uppercase;
        text-decoration: none;
        transition: background-color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
        gap: 7px;
        align-items: center;
        justify-content: center;
        margin: 16px;
        width: fit-content;
    }
    .main-nav a.header-cta-mobile:hover {
        background: #fff;
        color: #222;
        border-color: #fff;
        transform: translateY(-1px);
    }
    .main-nav a.header-cta-mobile:hover .cta-arrow {
        transform: translateX(3px);
    }
}

@media (max-width: 767px) {
    header.site-header {
        padding: 0px 16px;
    }

    .nav-list {
        padding: 10px 16px;
    }
     .main-nav a.header-cta-mobile {
        width: 100%;
     }

}

/* =========================================
   FOOTER CTA
========================================= */

.footer-cta-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}


/* Dark overlay */

.footer-cta-overlay {
    position: absolute;
    inset: 0;
     background: linear-gradient(180deg, rgb(0 0 0 / 41%) 64.29%, #000000 100%), linear-gradient(0deg, rgb(0 0 0 / 51%), rgba(0, 0, 0, 0.2));

}


/* CTA content */

.footer-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 128px 20px;
}

.footer-cta-content h2 {
    margin: 0 0 25px;
    color: #fff;
    font-size: var(--counter-number-size);
    font-weight: var(--fw-regular);
    font-style: normal;
    line-height: var(--counter-number-line-height);
    letter-spacing: var(--counter-number-letter-spacing);
    font-family: var(--font-display);
}


/* CTA button */

.footer-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-width: 130px;
    height: 40px;

    padding: 0 18px;

    color: #fff;
    text-decoration: none;

    border: 1px solid rgba(255, 255, 255, 0.7);

    font-family: monospace;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.5px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        border-color 0.3s ease;
}

.footer-cta-button span {
    font-size: 14px;
    line-height: 1;

    transition: transform 0.3s ease;
}

.footer-cta-button:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
    transform: translateY(-1px);
}

.footer-cta-button:hover span {
    transform: translateX(3px);
}


/* =========================================
   MAIN FOOTER
========================================= */

.site-footer {
    background: #000000;
    color: #fff;
    padding: 0px 64px;
}

.footer-row {
    max-width: var(--container-width);
    margin: auto;
    padding: 64px 0 32px;

    background-repeat: no-repeat;
    background-size: cover;
}



/* Footer container */

.footer-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns:
        1.6fr 1fr 1fr 1fr 1fr;
    column-gap: 55px;
    row-gap: 30px;
    padding-bottom: 30px;
}


/* =========================================
   FOOTER LOGO
========================================= */

.footer-brand {
    display: flex;
    align-items: flex-start;
}

.footer-logo {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;

    color: #fff;
    text-decoration: none;

    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}


/* Logo icon */

.footer-logo-icon {
    width: 23px;
    height: 27px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon .logo-icon-svg {
    width: 100%;
    height: 100%;

    fill: none;
    stroke: rgba(255, 255, 255, 0.85);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-logo-icon .logo-icon-svg circle {
    fill: rgba(255, 255, 255, 0.85);
    stroke: none;
}


/* Logo text */

.footer-logo-text {
    display: inline-flex;
    align-items: baseline;

    font-family: Arial, sans-serif;

    font-size: 15px;
    line-height: 1.15;

    letter-spacing: 1.4px;

    color: #fff;
}

.footer-logo-text .logo-text-strong {
    font-weight: 700;
}

.footer-logo-text .logo-text-light {
    font-weight: 400;
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column h4 {
    margin: 0 0 14px;
    color: #aaa;
    letter-spacing: -2%;
    text-transform: uppercase;
    font-family: var(--font-mono);
    font-weight: var(--fw-regular);
    font-style: normal;
    font-size: var(--wp--preset--font-size--normal);
    line-height: var(--banner-button-line-height);
}

.footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-column li {
    margin: 0 0 10px;
    padding: 0;
}

.footer-column a {
    position: relative;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: opacity 0.3s ease, transform 0.3s ease;
    font-family: var(--font-body);
    font-size: var(--sm-paragraph-size);
    font-style: normal;
    line-height: var(--sm-paragraph-line-height);
    letter-spacing: var(--sm-paragraph-letter-spacing);
}

.footer-column a:hover {
    color: #fff;
    transform: translateX(3px);
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    padding: 35px 0 0;
}

.footer-bottom p {
    margin: 0;
    color: #777;
    font-size: var(--wp--preset--font-size--normal);
    font-family: 'Inter';
}


/* =========================================
   RESPONSIVE FOOTER
========================================= */
@media(max-width:1024px) {
    footer.site-footer {
        padding: 0px 40px;
    }
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 10px;
    }

    .footer-cta-content h2 {
        font-size: 24px;
    }

    .footer-cta-content {
        padding: 64px 16px;
    }

}

@media (max-width: 767px) {
    footer.site-footer {
        padding: 0px 16px;
    }

    .footer-row {
        background-image: none;
    }
    .footer-logo::after {
            content: '';
            display: block;
            width: 200px; /* image width */
            height: 50px; /* image height */
            background-image: url('/wp-content/uploads/2026/08/logo_reverse_outlined-white.webp');
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center;
        }
        .site-footer .footer-logo-image{
            display: none;
        }
}

@media (max-width: 560px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        column-gap: 24px;
    }
}
.site-header .site-logo img {
    height: auto;
    width: 156px;
}

.site-footer .footer-logo-image {
    height: auto;
    width: 113px;
}