.premium-nav {
    height: 92px;
    box-shadow: 0 8px 28px rgba(55, 13, 27, .045);
}

.nav-inner {
    gap: 34px;
}

.nav-links {
    gap: 8px;
    margin-left: auto;
}

.nav-links > a {
    position: relative;
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 13px;
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.01em;
    white-space: nowrap;
}

.nav-links > a:not(.nav-call):not(.nav-cta)::after {
    content: "";
    position: absolute;
    right: 13px;
    bottom: 7px;
    left: 13px;
    height: 2px;
    border-radius: 2px;
    background: #d99a38;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .24s ease;
}

.nav-links > a:not(.nav-call):not(.nav-cta):hover::after,
.nav-links > a:not(.nav-call):not(.nav-cta):focus-visible::after {
    transform: scaleX(1);
}

.nav-links .nav-call {
    min-height: 44px;
    margin-left: 7px;
    padding: 0 17px 0 24px;
    border-left-color: #eadbd5;
}

.nav-links .nav-call i {
    margin-right: 8px;
    color: #8a213e;
}

.nav-links .nav-cta {
    min-height: 48px;
    margin-left: 2px;
    padding: 0 21px;
    border-radius: 9px;
    font-size: 15px;
}

@media (max-width: 1100px) and (min-width: 992px) {
    .nav-inner { gap: 18px; }
    .brand-logo img { width: 190px; }
    .nav-links { gap: 2px; }
    .nav-links > a { padding-inline: 9px; font-size: 14.5px; }
    .nav-links .nav-call { padding-left: 16px; }
    .nav-links .nav-cta { padding-inline: 15px; }
}

@media (max-width: 991px) {
    .premium-nav { height: 78px; }
    .nav-links {
        top: 78px;
        gap: 4px;
        margin-left: 0;
        padding: 16px;
        border: 1px solid #eee0da;
        border-radius: 12px;
    }

    .nav-links > a {
        min-height: 46px;
        justify-content: flex-start;
        padding: 0 14px;
        border-radius: 7px;
        font-size: 15.5px;
    }

    .nav-links > a:hover { background: #fff5e8; }
    .nav-links > a::after { display: none; }
    .nav-links .nav-call {
        margin: 4px 0 0;
        padding: 0 14px;
        border: 0;
    }
    .nav-links .nav-cta {
        justify-content: center;
        margin: 4px 0 0;
    }
}

@media (max-width: 767px) {
    .premium-nav { height: 72px; }
    .nav-links { top: 72px; }
}
