.main-site-nav {
    position: sticky;
    z-index: 1000;
    top: 0;
    min-height: var(--nav-height);
    background: var(--shirt-primary-deep);
    border-bottom: 4px solid var(--energy-yellow);
    box-shadow: 0 8px 24px rgba(15, 27, 17, 0.28);
}

.nav-shell {
    display: flex;
    align-items: center;
    width: min(calc(100% - 2rem), var(--content-width));
    min-height: var(--nav-height);
    margin: 0 auto;
    gap: 1.25rem;
}

.nav-logo {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 74px;
    height: 68px;
}

.nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 0.15rem;
}

.nav-link {
    position: relative;
    padding: 0.78rem 0.72rem;
    color: var(--text-on-dark);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.81rem;
    letter-spacing: 0.055em;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
    color: var(--shirt-primary-deep);
    background: var(--energy-yellow);
}

.nav-toggle {
    display: none;
}

.jump-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    min-height: var(--jump-height);
    padding: 0.65rem 1rem;
    background: var(--surface-cream);
    border-bottom: 2px solid var(--shirt-primary-deep);
    box-shadow: 0 6px 14px rgba(24, 39, 27, 0.12);
}

body .jump-links {
    position: sticky;
    z-index: 900;
    top: var(--nav-height);
}

.jump-links span {
    color: var(--shirt-primary-deep);
    font-weight: 900;
    text-transform: uppercase;
}

.jump-links a {
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    text-decoration: none;
}

.jump-links a:hover {
    color: var(--text-on-dark);
    background: var(--shirt-primary-dark);
}
