/* Başlık logosunu koyu site paletiyle bütünleştirir. */
.hd-header .hd-brand-link,
.hd-site .hd-header .hd-brand-link {
    position: relative;
    background: linear-gradient(145deg, #dce2da 0%, #cbd5cc 100%);
    border: 1px solid rgba(239, 210, 167, .22);
    box-shadow:
        0 10px 28px rgba(2, 14, 10, .2),
        inset 0 1px 0 rgba(255, 255, 255, .36),
        inset 0 -2px 0 rgba(217, 107, 59, .28);
    transition:
        transform .28s cubic-bezier(.22, 1, .36, 1),
        background-color .28s ease,
        box-shadow .28s ease;
}

.hd-header .hd-brand-image {
    mix-blend-mode: multiply;
    filter: saturate(.82) contrast(1.035);
    transition: filter .28s ease;
}

.hd-header .hd-brand-link:hover {
    transform: translateY(-2px);
    background: linear-gradient(145deg, #e4e8e1 0%, #d4dcd4 100%);
    box-shadow:
        0 14px 32px rgba(2, 14, 10, .24),
        inset 0 1px 0 rgba(255, 255, 255, .42),
        inset 0 -2px 0 rgba(217, 107, 59, .45);
}

.hd-header .hd-brand-link:hover .hd-brand-image {
    filter: saturate(.92) contrast(1.055);
}

@media (min-width: 1181px) {
    .hd-nav-shell {
        width: min(1220px, calc(100% - 48px));
    }

    .hd-header .hd-brand {
        min-width: 124px;
    }

    .hd-header .hd-brand-link {
        padding: 4px 6px;
        border-radius: 12px;
    }

    .hd-header .hd-brand-image {
        width: 112px !important;
        height: 55px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hd-header .hd-brand-link,
    .hd-header .hd-brand-image {
        transition: none;
    }
}
