/* ───── Header + mobile off-canvas nav ───── */
.site-header { background: var(--tint-teal-10); }
.site-header .skin-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    padding-bottom: 32px;
}
.header-logo img { width: 320px; height: auto; }
.header-nav { display: flex; align-items: center; gap: 48px; }
.header-nav a:not(.btn) {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 17px;
    color: var(--brand-teal);
    text-decoration: none;
    white-space: nowrap;
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.hamburger span { display: block; width: 100%; height: 2px; background: var(--brand-teal); border-radius: 2px; }

.mobile-nav-overlay {
    position: fixed; inset: 0;
    background: rgba(15, 51, 52, 0.5);
    opacity: 0; pointer-events: none;
    transition: opacity 0.25s;
    z-index: 998;
}
.mobile-nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(320px, 84vw);
    background: var(--brand-white);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex; flex-direction: column;
    padding: 32px 28px;
    gap: 32px;
    overflow-y: auto;
}
body.mobile-nav-open .mobile-nav { transform: translateX(0); }
body.mobile-nav-open .mobile-nav-overlay { opacity: 1; pointer-events: all; }
body.mobile-nav-open { overflow: hidden; }
.mobile-nav-close {
    align-self: flex-end;
    width: 36px; height: 36px;
    border: none; background: var(--tint-teal-10); border-radius: 8px;
    color: var(--brand-teal); font-size: 20px; line-height: 1;
    cursor: pointer;
}
.mobile-nav nav { display: flex; flex-direction: column; gap: 24px; }
.mobile-nav nav a:not(.btn) { font-family: var(--font-body); font-weight: 600; font-size: 18px; color: var(--brand-teal); text-decoration: none; }
.mobile-nav .btn { justify-content: center; }

@media (max-width: 1199.98px) {
    .header-nav { gap: 28px; }
}

@media (max-width: 991.98px) {
    .header-nav { display: none; }
    .hamburger { display: flex; }
}

@media (max-width: 575.98px) {
    .header-logo img { width: 140px; }
}
