/* ==========================================
   HAMSA — HEADER
   Global visual language:
   White / Gray / Black / Gold
   ========================================== */

.hamsa-site-header {
    position: relative;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid #e7e7e4;
    transition:
        background .2s ease,
        box-shadow .2s ease;
}

/* ==========================================
   HEADER INNER
========================================== */

.hamsa-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 92px;
}

/* ==========================================
   BRANDING
========================================== */

.hamsa-header-left {
    display: flex;
    align-items: center;
    min-width: 0;
}

.custom-logo {
    display: block;
    max-width: 220px;
    height: auto;
}

.site-title {
    text-decoration: none;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    color: #111111;
    letter-spacing: -.02em;
}

.site-title:hover,
.site-title:focus {
    color: #111111;
}

/* ==========================================
   NAVIGATION
   Navigation styling itself remains in
   navigation.css.
========================================== */

.hamsa-header-navigation {
    margin-left: auto;
    display: flex;
    align-items: center;
}

/* ==========================================
   HEADER RIGHT
========================================== */

.hamsa-header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* ==========================================
   HEADER INTERACTION
   Gold is used only as a restrained accent.
========================================== */

.hamsa-site-header a:focus-visible {
    outline: 2px solid #c99a2e;
    outline-offset: 3px;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1199px) {

    .hamsa-header-inner {
        gap: 28px;
        min-height: 86px;
    }

    .custom-logo {
        max-width: 200px;
    }

    .site-title {
        font-size: 26px;
    }
}

@media (max-width: 991px) {

    .hamsa-header-inner {
        gap: 20px;
        min-height: 78px;
    }

    .custom-logo {
        max-width: 185px;
    }

    .site-title {
        font-size: 24px;
    }
}

@media (max-width: 600px) {

    .hamsa-header-inner {
        min-height: 72px;
        gap: 14px;
    }

    .custom-logo {
        max-width: 165px;
    }

    .site-title {
        font-size: 22px;
    }
}
