/* ==========================================================================
   HEADER – GLOBAL BAR + MAIN HEADER (DESKTOP BASE)
   ========================================================================== */

.siu-site-header {
    border-bottom: 0;
    position: relative;
    z-index: 10001;
    /* keep header above mobile menu overlay */
}

/* Top CTA bar (dark maroon) */

.siu-global-bar {
    background: rgb(var(--color-maroon-700));
    color: rgb(255 255 255);
    font-size: 0.8rem;
}

.siu-global-bar__inner {
    max-width: var(--siu-max-width);
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.siu-global-bar__right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    justify-content: pleft;
}

/* CTA text – Apply / Visit / Give */

.siu-global-cta-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    /* CTAs hidden by default (can be enabled later) */
    gap: 0.25rem;
}

.siu-global-cta-nav li+li::before {
    content: "/";
    margin: 0 0.35rem;
    color: rgb(255 255 255);
    opacity: 0.85;
}

.siu-global-cta-nav a {
    color: rgb(255 255 255);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.siu-global-cta-nav a:hover,
.siu-global-cta-nav a:focus-visible {
    text-decoration: underline;
}

/* Neutralize any .siu-btn-cta class */
.siu-btn-cta {
    border: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
}

/* Quicklinks & Search toggle (desktop text button) */

.siu-global-bar__toggle {
    border: none;
    background: transparent;
    color: rgb(255 255 255);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
}

.siu-global-bar__toggle:focus-visible {
    outline: 2px solid rgb(255 255 255);
    outline-offset: 2px;
}

/* Main header band – logo + primary nav */

.siu-main-header {
    background: rgb(var(--color-maroon-500));
    color: rgb(255 255 255);
}

.siu-main-header__inner {
    max-width: var(--siu-max-width);
    margin: 0 auto;
    padding: 1.25rem 1.5rem 0.75rem;
}

/* Logo */

.siu-main-header__branding {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.siu-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgb(255 255 255);
}

.siu-logo__desktop,
.siu-logo__mobile {
    display: block;
    height: 6rem;
    width: auto;
    max-width: 100%;
}

/* Desktop logo default */
.siu-logo__mobile {
    display: none;
}

@media (max-width: 700px) {
    .siu-logo__desktop {
        display: none;
    }

    .siu-logo__mobile {
        display: block;
    }
}

/* Header responsiveness (non-nav pieces) */

@media (max-width: 900px) {
    .siu-global-bar__inner {
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }

    .siu-main-header__inner {
        flex-direction: column;
    }
}