.site-header {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 0 clamp(18px, 4vw, 58px);
    background: #fff;
    box-shadow: 0 8px 30px rgba(11, 55, 38, .08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #0b3a28;
    text-decoration: none;
    flex: 0 0 auto;
}

.site-header .brand-logo {
    width: 78px;
    height: 78px;
    object-fit: contain;
}

.site-header .brand-text {
    line-height: .95;
    color: #0b3a28;
    font-size: clamp(24px, 2.8vw, 42px);
    letter-spacing: -1.5px;
}

.site-header .brand-text strong,
.site-header .brand-text span {
    display: block;
}

.site-header .main-nav {
    display: flex;
    align-items: stretch;
    gap: 24px;
    font-weight: 800;
    font-size: 15px;
    align-self: stretch;
}

.site-header .main-nav > a {
    display: flex;
    align-items: center;
    padding: 4px 0 0;
    border-bottom: 4px solid transparent;
    color: #0b3a28;
    text-decoration: none;
    white-space: nowrap;
}

.site-header .main-nav > a:hover,
.site-header .main-nav > a:focus-visible,
.site-header .main-nav > a.active {
    color: #e7376b;
    border-color: #e7376b;
}

.site-header .nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
}

.site-header .nav-toggle span:not(.sr-only) {
    display: block;
    width: 28px;
    height: 3px;
    background: #0b3a28;
    margin: 5px 0;
    border-radius: 99px;
}

.site-header .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ct-contact-menu {
    position: relative;
    display: flex;
    align-self: stretch;
    align-items: stretch;
}

.ct-contact-toggle {
    appearance: none;
    border: 0;
    border-bottom: 4px solid transparent;
    background: transparent;
    color: #0b3a28;
    font: inherit;
    font-weight: 800;
    padding: 4px 0 0;
    cursor: pointer;
    white-space: nowrap;
}

.ct-contact-toggle:hover,
.ct-contact-toggle:focus-visible,
.ct-contact-menu.is-active > .ct-contact-toggle {
    color: #e7376b;
    border-color: #e7376b;
}

.ct-contact-submenu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    min-width: 240px;
    padding: 7px;
    background: #fff;
    border: 1px solid rgba(20, 50, 30, .16);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
    z-index: 99999;
}

.ct-contact-menu.is-open > .ct-contact-submenu {
    display: block;
}

.ct-contact-submenu a {
    display: block !important;
    padding: 12px 14px !important;
    border: 0 !important;
    border-radius: 8px;
    background: #fff;
    color: #173d2a !important;
    text-decoration: none;
    white-space: nowrap;
}

.ct-contact-submenu a:hover,
.ct-contact-submenu a:focus-visible {
    background: #edf3ee;
    color: #e7376b !important;
}

.site-footer {
    background: #073d2a;
    color: #fff;
    padding: 38px clamp(18px, 4vw, 58px);
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: center;
}

.site-footer strong {
    font-size: 24px;
}

.site-footer p {
    color: #d3eee2;
}

.site-footer .footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.site-footer .footer-links a {
    font-weight: 800;
    color: #fff;
    text-decoration: none;
}

@media (min-width: 981px) {
    .ct-contact-menu:hover > .ct-contact-submenu,
    .ct-contact-menu:focus-within > .ct-contact-submenu {
        display: block;
    }
}

@media (max-width: 1200px) and (min-width: 981px) {
    .site-header .main-nav {
        gap: 14px;
        font-size: 13px;
    }

    .site-header .brand-logo {
        width: 64px;
        height: 64px;
    }

    .site-header .brand-text {
        font-size: 27px;
    }
}

@media (max-width: 980px) {
    .site-header {
        min-height: 84px;
        height: auto;
    }

    .site-header .brand-logo {
        width: 62px;
        height: 62px;
    }

    .site-header .brand-text {
        font-size: 28px;
    }

    .site-header .nav-toggle {
        display: block;
    }

    .site-header .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        box-shadow: 0 18px 35px rgba(11, 55, 38, .12);
    }

    .site-header .main-nav.open {
        display: flex;
    }

    .site-header .main-nav > a {
        padding: 18px clamp(18px, 4vw, 58px);
        border-bottom: 1px solid #edf3ef;
    }

    .site-header .main-nav > a:hover,
    .site-header .main-nav > a:focus-visible,
    .site-header .main-nav > a.active {
        background: #fff1f5;
        color: #e7376b;
        border-color: #edf3ef;
    }

    .ct-contact-menu {
        display: block;
        width: 100%;
    }

    .ct-contact-toggle {
        width: 100%;
        padding: 18px clamp(18px, 4vw, 58px);
        border-bottom: 1px solid #edf3ef;
        color: #0b3a28;
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .ct-contact-toggle:hover,
    .ct-contact-toggle:focus-visible,
    .ct-contact-menu.is-active > .ct-contact-toggle {
        background: #fff1f5;
        border-color: #edf3ef;
        color: #e7376b;
    }

    .ct-contact-submenu {
        position: static;
        min-width: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: #f5f8f6;
    }

    .ct-contact-submenu a {
        padding: 15px clamp(38px, 8vw, 72px) !important;
        border-bottom: 1px solid #e4ece7 !important;
        border-radius: 0;
        background: #f5f8f6;
    }

    .site-footer {
        display: block;
    }

    .site-footer .footer-links {
        margin-top: 18px;
    }
}

@media (max-width: 620px) {
    .site-header .brand-text {
        font-size: 24px;
    }
}
