/* Site Navigation — used across index.html and all service pages */
.site-nav {
    background: #151515;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}
.site-nav .container {
    max-width: 1320px;
    padding-left: 15px;
    padding-right: 15px;
}
.site-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.site-nav__logo img {
    height: 44px;
    width: auto;
    display: block;
}
.site-nav__links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: center;
}
.site-nav__links li a {
    color: rgba(255,255,255,0.75);
    font-family: 'Inter Tight', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}
.site-nav__links li a:hover,
.site-nav__links li a.active {
    color: #ffe08a;
}
.site-nav__cta {
    background: #ffe08a;
    color: #151515 !important;
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}
.site-nav__cta:hover { background: #dabb77; color: #151515 !important; }
.site-nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.site-nav__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}
.site-nav__mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    background: #1a1a1a;
    padding: 0;
}
.site-nav__mobile-menu.open { display: flex; }
.site-nav__mobile-menu a {
    color: rgba(255,255,255,0.8);
    font-family: 'Inter Tight', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 20px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s;
}
.site-nav__mobile-menu a:hover { color: #ffe08a; }
@media (max-width: 991px) {
    .site-nav__links { display: none; }
    .site-nav__cta { display: none; }
    .site-nav__hamburger { display: flex; }
}
