/* Logo sizing — 1.5x original (50px base) */
.navbar-brand img {
    height: 75px !important;
    width: auto !important;
    max-width: none !important;
}
.navbar {
    height: auto !important;
    min-height: 75px;
}

/* Tablet */
@media (max-width: 991px) {
    .navbar-brand img {
        height: 60px !important;
    }
    .navbar {
        min-height: 60px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .navbar-brand img {
        height: 45px !important;
    }
    .navbar {
        min-height: 45px;
    }
}
