.identity-bar {
    background: var(--white);
    padding: 2px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--gold-border);
    box-shadow: 0 2px 12px rgba(26, 58, 92, .06);
}

.identity-left {
    display: flex;
    align-items: center;
    gap: 20px
}

.identity-logo {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    object-fit: contain;
    flex-shrink: 0;
}

.identity-logo-placeholder {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #f5c96e;
    flex-shrink: 0;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    letter-spacing: -.02em;
}

.identity-name {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -.01em;
}

.identity-sub {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 4px;
}

.identity-sub span {
    font-size: 18px;
    color: var(--mid-gray);
    letter-spacing: .02em;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.identity-sub span strong {
    color: var(--navy-light);
    font-weight: 600
}

.identity-right {
    display: flex;
    align-items: center;
    gap: 28px
}

.affil-block {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: var(--navy-pale);
    border-radius: 8px;
    border: 1px solid var(--gold-border)
}

.affil-logo-placeholder {
    width: 40px;
    height: 40px;
    background: var(--navy);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f5c96e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: -.02em;
    flex-shrink: 0;
    text-align: center;
    line-height: 1.2
}

.affil-text span:first-child {
    display: block;
    font-size: 10px;
    color: var(--warm-gray);
    letter-spacing: .06em;
    text-transform: uppercase
}

.affil-text strong {
    display: block;
    font-size: 12.5px;
    color: var(--navy);
    font-weight: 700
}

.identity-apply-btn {
    background: var(--gold);
    color: white;
    padding: 11px 24px;
    border-radius: 7px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .04em;
    text-decoration: none;
    white-space: nowrap;
    transition: all .25s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.identity-apply-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(184, 125, 42, .3)
}

/*  Mobile Nav  */
.mobile-dropdown {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-toggle {
    padding: 14px 10px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-dropdown-content a {
    padding: 10px 20px;
    font-size: 14px;
    opacity: 0.8;
}

@media(max-width:1200px) {
    .identity-bar {
        padding: 14px 24px
    }

    .identity-right {
        gap: 14px
    }
}

@media(max-width:1100px) {
    .identity-bar {
        padding: 12px 20px
    }

    .identity-name {
        font-size: 16px
    }

    .identity-right {
        gap: 10px
    }

    .identity-apply-btn {
        display: none
    }
}

@media(max-width:768px) {
    .identity-right .affil-block:last-of-type {
        display: none
    }

    .identity-name {
        font-size: 14px
    }

    .identity-logo-placeholder {
        width: 56px;
        height: 56px
    }
}

@media(max-width:640px) {
    .identity-bar {
        padding: 10px 16px
    }

    .identity-right {
        display: none
    }

    .identity-name {
        font-size: 16px
    }

    .identity-sub {
        display: none;
    }
}