.site-header {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    z-index: 1000;

    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.header-inner {
    width: min(1400px, 92%);
    height: 100px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    width: 150px;
    flex-shrink: 0;
}

.logo img {
    width: 100%;
    height: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;

    margin-left: auto;
}

.desktop-nav a {
    position: relative;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.desktop-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: #fff;

    transition: width 0.2s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 24px;

    background: #fff;
    color: #000;

    border: 2px solid #fff;

    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;

    transition: 0.2s ease;
}

.header-cta:hover {
    background: transparent;
    color: #fff;
}

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    background: transparent;
    border: 0;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 28px;
    height: 2px;

    margin: 6px auto;

    background: #fff;
}

.mobile-nav {
    display: none;
}