:root {
    --sw-mint: #7EC8B8;
    --sw-mint-soft: rgba(126,200,184,0.10);
    --sw-mint-border: rgba(126,200,184,0.25);
    --sw-dark: #2D2A3E;
    --sw-cream: #FFF8F0;
    --sw-cream-dark: #F5EDE2;
    --sw-paper: #FFFCF7;
    --sw-warm-tan: #E8DFD1;
    --sw-text-light: #5C5672;
    --sw-warm-gray: #8A8298;
    --sw-radius: 8px 2px 8px 2px;
    --sw-font-ui: 'Quicksand', sans-serif;
    --sw-font-body: 'Source Serif 4', Georgia, serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background: var(--sw-cream) !important;
    font-family: var(--sw-font-body);
    color: var(--sw-dark);
    margin: 0;
}

.ast-primary-header,
.ast-above-header,
.ast-below-header,
#ast-desktop-header,
.ast-main-header-wrap {
    display: none !important;
}

.sw-header {
    width: 100%;
}

.sw-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.sw-topbar {
    background: var(--sw-dark);
    height: 36px;
    position: relative;
}

.sw-topbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    border-top: 1px solid rgba(126,200,184,0.2);
    border-bottom: 1px solid rgba(126,200,184,0.2);
    padding-top: 2px;
}

.sw-topbar__links {
    display: flex;
    gap: 20px;
    align-items: center;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sw-topbar__links li {
    list-style: none;
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

.sw-topbar__links a {
    font-family: var(--sw-font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255,248,240,0.85);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    height: 100%;
}

.sw-topbar__links a:hover {
    color: var(--sw-mint);
}

.sw-topbar__social {
    display: flex;
    gap: 12px;
    align-items: center;
    height: 100%;
}

.sw-topbar__social a {
    color: rgba(255,248,240,0.85);
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.sw-topbar__social a:hover {
    color: var(--sw-mint);
}

.sw-topbar__social svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.sw-mainbar {
    background: var(--sw-cream);
    height: 72px;
    position: relative;
}

.sw-mainbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    border-top: 1.5px solid var(--sw-dark);
    border-bottom: 1.5px solid var(--sw-dark);
    padding-top: 2.5px;
}

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

.sw-logo--full svg {
    height: 48px;
    width: auto;
    display: block;
}

.sw-logo--fav {
    display: none;
}

.sw-logo--fav svg {
    height: 48px;
    width: auto;
    display: block;
}

.sw-mainbar__right {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
}

.sw-darkmode {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--sw-warm-tan);
    background: var(--sw-paper);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
    padding: 0;
}

.sw-darkmode:hover {
    border-color: var(--sw-mint);
    background: var(--sw-mint-soft);
}

.sw-darkmode:focus,
.sw-darkmode:active {
    outline: none;
    border-color: var(--sw-mint);
    background: var(--sw-paper);
}

.sw-darkmode svg {
    width: 16px;
    height: 16px;
    color: var(--sw-dark);
    flex-shrink: 0;
}

.sw-darkmode__sun {
    display: none;
}

.sw-cta {
    font-family: var(--sw-font-ui);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    border-radius: var(--sw-radius);
    background: var(--sw-mint);
    color: var(--sw-dark);
    padding: 9px 20px;
    box-shadow: 2px 2px 0 var(--sw-dark);
    transition: transform 0.15s, box-shadow 0.15s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.sw-cta:hover {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0 var(--sw-dark);
    color: var(--sw-dark);
}

.sw-cta--full {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.sw-hamburger {
    display: none;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--sw-warm-tan);
    border-radius: var(--sw-radius);
    background: var(--sw-paper);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: border-color 0.2s;
    flex-shrink: 0;
    padding: 0;
}

.sw-hamburger:hover {
    border-color: var(--sw-mint);
}

.sw-hamburger span {
    display: block;
    width: 16px;
    height: 1.5px;
    background: var(--sw-dark);
    border-radius: 1px;
    transition: all 0.3s;
}

.sw-hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(3px, 3px);
}

.sw-hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.sw-hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(3px, -3px);
}

.sw-navbar {
    background: var(--sw-paper);
    height: 44px;
    position: relative;
    z-index: 90;
    transition: box-shadow 0.3s;
}

.sw-navbar.is-stuck {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 12px rgba(45,42,62,0.08);
}

.sw-navbar-placeholder {
    display: none;
    height: 44px;
}

.sw-navbar-placeholder.is-active {
    display: block;
}

.sw-navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    border-top: 1px solid var(--sw-warm-tan);
    border-bottom: 1px solid var(--sw-warm-tan);
    padding-top: 2px;
}

.sw-navbar__links {
    display: flex;
    gap: 0;
    height: 44px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sw-navbar__links li {
    list-style: none;
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

.sw-navbar__links a {
    font-family: var(--sw-font-ui);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--sw-text-light);
    text-decoration: none;
    padding: 0 16px;
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    transition: color 0.25s;
}

.sw-navbar__links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2.5px;
    background: var(--sw-mint);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sw-navbar__links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%) rotate(-30deg) scale(0);
    width: 6px;
    height: 8px;
    background: repeating-linear-gradient(90deg, var(--sw-mint) 0px, var(--sw-mint) 1.5px, transparent 1.5px, transparent 4px);
    transition: transform 0.25s 0.15s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sw-navbar__links a:hover {
    color: var(--sw-dark);
}

.sw-navbar__links a:hover::before {
    transform: scaleX(1);
}

.sw-navbar__links a:hover::after {
    transform: translateX(-50%) rotate(-30deg) scale(1);
}

.sw-navbar__links li:first-child > a {
    padding-left: 0;
}

.sw-navbar__links li:first-child > a::before {
    left: 0;
}

.sw-navbar__links .current-menu-item > a,
.sw-navbar__links .current_page_item > a {
    color: var(--sw-dark);
    font-weight: 700;
}

.sw-navbar__links .current-menu-item > a::before,
.sw-navbar__links .current_page_item > a::before {
    transform: scaleX(1);
}

.sw-navbar__links .current-menu-item > a::after,
.sw-navbar__links .current_page_item > a::after {
    transform: translateX(-50%) rotate(-30deg) scale(1);
}

.sw-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
}

.sw-mobile-menu.is-open {
    pointer-events: auto;
}

.sw-mobile-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(45,42,62,0.5);
    opacity: 0;
    transition: opacity 0.3s;
}

.sw-mobile-menu.is-open .sw-mobile-menu__overlay {
    opacity: 1;
}

.sw-mobile-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--sw-cream);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 24px 20px;
}

.sw-mobile-menu.is-open .sw-mobile-menu__panel {
    transform: translateX(0);
}

.sw-mobile-menu__label {
    font-family: var(--sw-font-ui);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sw-warm-gray);
    margin-bottom: 8px;
}

.sw-mobile-menu__links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sw-mobile-menu__links li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sw-mobile-menu__links a {
    font-family: var(--sw-font-ui);
    font-weight: 600;
    font-size: 13px;
    color: var(--sw-dark);
    text-decoration: none;
    padding: 8px 12px;
    border-radius: var(--sw-radius);
    transition: background 0.15s;
    display: block;
}

.sw-mobile-menu__links a:hover {
    background: var(--sw-mint-soft);
}

.sw-mobile-menu__links .current-menu-item > a,
.sw-mobile-menu__links .current_page_item > a {
    background: var(--sw-mint-soft);
    font-weight: 700;
    position: relative;
}

.sw-mobile-menu__links .current-menu-item > a::before,
.sw-mobile-menu__links .current_page_item > a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-30deg);
    width: 4px;
    height: 8px;
    background: repeating-linear-gradient(90deg, var(--sw-mint) 0px, var(--sw-mint) 1.5px, transparent 1.5px, transparent 3.5px);
}

.sw-mobile-menu__divider {
    height: 0;
    border-top: 1px solid var(--sw-warm-tan);
    border-bottom: 1px solid var(--sw-warm-tan);
    padding-top: 2px;
    margin: 16px 0;
}

.sw-mobile-menu__cta {
    padding: 4px 0;
}

body.sw-dark {
    --sw-cream: #1E1B2E;
    --sw-paper: #252238;
    --sw-cream-dark: #1A1728;
    --sw-warm-tan: rgba(255,248,240,0.08);
    --sw-dark: #FFF8F0;
    --sw-text-light: #FFF8F0;
    --sw-warm-gray: #FFF8F0;
    background: #1E1B2E !important;
    color: #FFF8F0;
}

body.sw-dark .sw-topbar__links a {
    color: rgba(255,248,240,0.85);
}

body.sw-dark .sw-topbar__links a:hover {
    color: var(--sw-mint);
}

body.sw-dark .sw-topbar {
    background: #151224;
}

body.sw-dark .sw-mainbar::after {
    border-top-color: rgba(255,248,240,0.15);
    border-bottom-color: rgba(255,248,240,0.15);
}

body.sw-dark .sw-navbar {
    background: #252238;
}

body.sw-dark .sw-navbar::after {
    border-top-color: rgba(255,248,240,0.08);
    border-bottom-color: rgba(255,248,240,0.08);
}

body.sw-dark .sw-navbar.is-stuck {
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

body.sw-dark .sw-mainbar.is-stuck {
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

body.sw-dark .sw-navbar__links a {
    color: rgba(255,248,240,0.85);
}

body.sw-dark .sw-navbar__links a:hover,
body.sw-dark .sw-navbar__links .current-menu-item > a,
body.sw-dark .sw-navbar__links .current_page_item > a {
    color: #FFF8F0;
}

body.sw-dark .sw-darkmode {
    border-color: rgba(255,248,240,0.15);
    background: rgba(255,248,240,0.05);
}

body.sw-dark .sw-darkmode:focus,
body.sw-dark .sw-darkmode:active {
    outline: none;
    border-color: var(--sw-mint);
    background: rgba(255,248,240,0.05);
}

body.sw-dark .sw-darkmode svg {
    color: #FFF8F0;
}

body.sw-dark .sw-darkmode__moon {
    display: none;
}

body.sw-dark .sw-darkmode__sun {
    display: block;
}

body.sw-dark .sw-cta {
    box-shadow: 2px 2px 0 rgba(0,0,0,0.3);
    color: #2D2A3E;
}

body.sw-dark .sw-hamburger {
    border-color: rgba(255,248,240,0.15);
    background: rgba(255,248,240,0.05);
}

body.sw-dark .sw-hamburger span {
    background: #FFF8F0;
}

body.sw-dark .sw-logo--full svg text,
body.sw-dark .sw-logo--fav svg text {
    fill: #FFF8F0 !important;
}

body.sw-dark .sw-logo--full svg [style*="fill:rgb(45,42,62)"],
body.sw-dark .sw-logo--full svg path[style*="fill:rgb(45,42,62)"],
body.sw-dark .sw-logo--fav svg [style*="fill:rgb(45,42,62)"],
body.sw-dark .sw-logo--fav svg path[style*="fill:rgb(45,42,62)"] {
    fill: #FFF8F0 !important;
}

body.sw-dark .sw-mobile-menu__panel {
    background: #1E1B2E;
}

@media (max-width: 768px) {
    .sw-container {
        padding: 0 16px;
    }

    .sw-topbar {
        height: 32px;
    }

    .sw-topbar__links {
        display: none;
    }

    .sw-topbar__social {
        width: 100%;
        justify-content: flex-end;
        gap: 16px;
    }

    .sw-topbar__social svg {
        width: 18px;
        height: 18px;
    }

    .sw-mainbar {
        height: 72px;
        z-index: 90;
        transition: box-shadow 0.3s;
    }

    .sw-mainbar.is-stuck {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        box-shadow: 0 2px 12px rgba(45,42,62,0.08);
    }

    .sw-mainbar-placeholder {
        display: none;
        height: 72px;
    }

    .sw-mainbar-placeholder.is-active {
        display: block;
    }

    .sw-logo--full {
        display: none;
    }

    .sw-logo--fav {
        display: flex;
    }

    .sw-mainbar .sw-cta {
        display: none;
    }

    .sw-hamburger {
        display: flex;
    }

    .sw-navbar {
        display: none;
    }

    .sw-mobile-menu {
        display: block;
    }
}
