/* ── SHARED FONTS — used on every page ── */
@font-face {
    font-family: 'Muller';
    src: url('/fonts/muller-regular.woff2') format('woff2'),
    url('/fonts/muller-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Muller';
    src: url('/fonts/muller-bold.woff2') format('woff2'),
    url('/fonts/muller-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Muller';
    src: url('/fonts/muller-black.woff2') format('woff2'),
    url('/fonts/muller-black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ── SHARED SITE NAV — used on every page ── */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #000;
    height: 62px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .35);
}

.site-nav-inner {
    max-width: 980px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.site-nav-logo img {
    display: block;
    height: 34px;
    width: auto;
}

.site-nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav-menu a {
    font-family: 'Muller', Inter, Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
    color: rgba(255, 255, 255, .85);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    padding: 8px 16px;
    border-radius: 6px;
    background: transparent;
    transition: background-color .15s, color .15s;
}

.site-nav-menu a:hover {
    color: #101820;
    background: #FFCD00;
}

.site-nav-menu a.active {
    color: #101820;
    background: #FFCD00;
}

.site-nav-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #FFCD00 !important;
    opacity: 1 !important;
    font-size: 14px !important;
    background: rgba(255, 205, 0, .08) !important;
    border: 1px solid rgba(255, 205, 0, .25);
    border-radius: 6px !important;
    padding: 7px 13px !important;
}

.site-nav-phone:hover {
    background: rgba(255, 205, 0, .16) !important;
}

.site-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.site-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .2s, opacity .2s;
}

.site-nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.site-nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── SHARED BREADCRUMBS — used on nested pages ── */
.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 18px;
    font-size: 13px;
    font-family: 'Muller', Inter, Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
    color: rgba(245, 245, 240, 0.48);
}

.breadcrumbs a {
    color: rgba(245, 245, 240, 0.68);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #f4c430;
}

.breadcrumbs .crumb-sep {
    opacity: 0.5;
}

.breadcrumbs .crumb-current {
    color: rgba(245, 245, 240, 0.9);
    font-weight: 600;
}

@media (max-width: 860px) {
    .site-nav-inner {
        padding: 0 16px;
    }

    .site-nav-toggle {
        display: flex;
    }

    .site-nav-menu {
        position: fixed;
        top: 62px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #000;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 12px 20px 24px;
        transform: translateX(100%);
        transition: transform .25s ease;
        overflow-y: auto;
    }

    .site-nav-menu.open {
        transform: translateX(0);
    }

    .site-nav-menu a {
        padding: 16px 18px;
        border-radius: 6px;
        font-size: 17px;
    }

    .site-nav-phone {
        margin-top: 18px;
        justify-content: center;
        padding: 14px !important;
        font-size: 16px !important;
    }
}
