:root {
    --header-bg: #ffffff;
    --header-text: #0f172a;
    --header-muted: #475569;
    --header-accent: #f4b84a;
    --header-accent-hover: #ffd166;
    --header-border: #e2e8f0;
    --header-link-hover: #2459b7;
    --header-link-active: #2459b7;
    --is-brand-logo-url: url("../images/logo-colpercol.png");
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

body.colpercol-local-theme main.wp-block-group {
    margin-top: 0 !important;
    max-width: 100%;
    overflow-x: clip;
}

body.colpercol-local-theme {
    padding-top: var(--site-header-height, 78px);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    overscroll-behavior-x: none;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    backdrop-filter: saturate(180%) blur(10px);
    transition: transform 200ms ease, background-color 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled {
    background: #ffffff;
    border-bottom-color: var(--header-border);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.site-header__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.72rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: min-height 200ms ease, padding 200ms ease, gap 200ms ease;
}

.site-logo {
    display: inline-block;
    width: clamp(100px, 7.5vw, 124px);
    aspect-ratio: 2420 / 1292;
    height: auto;
    background-image: var(--is-brand-logo-url);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    text-decoration: none;
    white-space: nowrap;
    text-indent: -9999px;
    overflow: hidden;
    color: transparent;
    font-size: 0;
    line-height: 0;
    flex-shrink: 0;
    transition: width 200ms ease, transform 200ms ease, opacity 200ms ease;
    border-radius: 6px;
}

.site-logo:focus {
    outline: none;
}

.site-logo:focus-visible {
    outline: 2px solid rgba(36, 89, 183, 0.45);
    outline-offset: 4px;
}

.site-menu__call {
    display: none;
}

.site-header.is-hidden {
    transform: none;
}

.site-header__menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid var(--header-border);
    background: #f8fafc;
    color: var(--header-text);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.site-header__menu-icon {
    width: 20px;
    height: 14px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
}

.site-header__menu-icon span {
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    display: block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.is-menu-open .site-header__menu-toggle {
    border: 2px solid #f59e0b;
    background: #ffffff;
}

.site-header.is-menu-open .site-header__menu-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .site-header__menu-icon span:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .site-header__menu-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: center;
}

.site-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: clamp(0.75rem, 1.5vw, 1.35rem);
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    color: #2f3541;
    font-weight: 500;
    font-size: clamp(0.82rem, 1.05vw, 0.96rem);
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
    transition: color 0.2s ease, box-shadow 0.2s ease;
}

.site-nav .site-menu > li > a {
    padding: 0.35rem 0 0.45rem;
    box-shadow: inset 0 -2px 0 transparent;
}

.site-nav a:hover {
    color: var(--header-link-hover);
}

.site-nav a:focus {
    outline: none;
}

.site-nav a:focus-visible {
    outline: 2px solid rgba(36, 89, 183, 0.45);
    outline-offset: 4px;
    border-radius: 4px;
}

.site-nav a:active {
    color: var(--header-link-active);
}

.site-nav .site-menu > li > a:active {
    box-shadow: inset 0 -2px 0 rgba(244, 184, 74, 0.65);
}

.site-nav .current-menu-item > a,
.site-nav a[aria-current="page"] {
    color: var(--header-link-active);
    font-weight: 700;
    box-shadow: inset 0 -2px 0 var(--header-accent);
}

.site-menu__item--dropdown {
    position: relative;
}

.site-nav .site-submenu {
    position: absolute;
    top: calc(100% + 0.9rem);
    left: 50%;
    z-index: 20;
    display: grid;
    min-width: 280px;
    gap: 0;
    padding: 0.5rem;
    border: 1px solid var(--header-border);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.site-menu__item--dropdown:hover .site-submenu,
.site-menu__item--dropdown:focus-within .site-submenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.site-nav .site-submenu a {
    display: flex;
    width: 100%;
    padding: 0.72rem 0.78rem;
    border-radius: 6px;
    color: #1e293b;
    font-size: 0.92rem;
    line-height: 1.25;
    text-transform: none;
}

.site-menu__item--dropdown.is-section-active > a {
    color: var(--header-link-active);
    font-weight: 700;
}

.site-menu__item--dropdown.is-section-active > a[aria-current="page"] {
    box-shadow: inset 0 -2px 0 var(--header-accent);
}

.site-nav .site-submenu a:hover,
.site-nav .site-submenu a[aria-current="page"] {
    background: rgba(36, 89, 183, 0.08);
    color: var(--header-link-active);
    box-shadow: none;
    font-weight: 700;
}

.site-nav__chevron {
    width: 0.38em;
    height: 0.38em;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-0.08em);
    transform-origin: center;
    flex: 0 0 auto;
}

.site-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 44px;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #f8c45f 0%, var(--header-accent) 100%);
    color: #102033;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(244, 184, 74, 0.35);
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.site-header__cta::before {
    content: "";
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.35 1.89.68 2.8a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.33 1.84.55 2.8.68A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.35 1.89.68 2.8a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.33 1.84.55 2.8.68A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.site-header__cta:hover {
    background: linear-gradient(180deg, #ffd277 0%, var(--header-accent-hover) 100%);
    color: #102033;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(244, 184, 74, 0.42);
}

.site-header__cta:focus {
    outline: none;
}

.site-header__cta:focus-visible {
    outline: 2px solid rgba(16, 32, 51, 0.35);
    outline-offset: 3px;
}

.site-header__cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(244, 184, 74, 0.28);
}

.site-header__menu-toggle:focus {
    outline: none;
}

.site-header__menu-toggle:focus-visible {
    outline: 2px solid rgba(36, 89, 183, 0.45);
    outline-offset: 3px;
}

.site-header__cta-number {
    display: none;
}

.landing-footer {
    background: #07162f;
    color: #d8e7ff;
    border-top: 0;
    padding: 1.45rem 1rem 4.4rem;
}

.landing-footer__inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.landing-footer__body {
    display: grid;
    gap: 0.92rem;
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0;
}

.landing-footer__brand {
    display: grid;
    gap: 0.65rem;
}

.landing-footer__logo {
    display: inline-flex;
    width: 126px;
    max-width: 48vw;
    text-decoration: none;
}

.landing-footer__logo img {
    display: block;
    width: 100%;
    height: auto;
}

.landing-footer__text {
    max-width: 21rem;
    margin: 0;
    color: #d8e7ff;
    font-size: 0.92rem;
    line-height: 1.52;
}

.landing-footer__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.48rem;
    margin-top: 0.1rem;
}

.landing-footer__action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.44rem;
    box-sizing: border-box;
    min-height: 38px;
    padding: 0.5rem 0.65rem;
    border: 1px solid rgba(107, 139, 191, 0.62);
    border-radius: 8px;
    background: rgba(13, 35, 70, 0.72);
    color: #ffffff;
    font-size: 0.84rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.landing-footer__action:hover {
    border-color: rgba(216, 231, 255, 0.78);
    background: rgba(23, 54, 100, 0.9);
    color: #ffffff;
    text-decoration: none;
}

.landing-footer__actions .landing-footer__action--primary {
    border-color: #f4b84a;
    background: #f4b84a;
    color: #102033;
}

.landing-footer__actions .landing-footer__action--primary:hover {
    border-color: #f4b84a;
    background: #ffd166;
    color: #102033;
}

.landing-footer__icon {
    flex: 0 0 auto;
    width: 0.95rem;
    height: 0.95rem;
    background: currentColor;
}

.landing-footer__icon--phone {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.35 1.89.68 2.8a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.33 1.84.55 2.8.68A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.35 1.89.68 2.8a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.33 1.84.55 2.8.68A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.landing-footer__icon--map {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 10c0 5-8 12-8 12S4 15 4 10a8 8 0 1 1 16 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center / contain no-repeat;
}

.landing-footer__icon--mail {
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E") center / contain no-repeat;
}

.landing-footer__accordion {
    border-top: 1px solid rgba(107, 139, 191, 0.38);
}

.landing-footer__accordion + .landing-footer__accordion {
    margin-top: 0;
}

.landing-footer__accordion summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 2rem 0 0;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 850;
    line-height: 1.2;
    cursor: pointer;
    list-style: none;
    border-radius: 8px;
}

.landing-footer__accordion summary::before {
    display: none;
}

.landing-footer__accordion[open] {
    margin: 0.62rem 0;
    padding-bottom: 0;
    border: 1px solid rgba(107, 139, 191, 0.36);
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(13, 35, 70, 0.72), rgba(11, 30, 60, 0.5));
    overflow: hidden;
}

.landing-footer__accordion[open] summary {
    min-height: 46px;
    padding: 0 0.82rem;
    border-bottom: 1px solid rgba(107, 139, 191, 0.24);
    border-radius: 0;
}

.landing-footer__accordion summary:focus:not(:focus-visible) {
    outline: 0;
}

.landing-footer__accordion summary:focus-visible {
    outline: 2px solid #86a8e8;
    outline-offset: 3px;
}

.landing-footer__accordion summary::-webkit-details-marker {
    display: none;
}

.landing-footer__accordion summary::after {
    content: "+";
    position: absolute;
    right: 0.12rem;
    top: 50%;
    color: #86a8e8;
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-50%);
}

.landing-footer__accordion[open] summary::after {
    content: "-";
}

.landing-footer__list,
.landing-footer__contact {
    margin: 0;
    padding: 0.22rem 0.82rem 0.72rem;
    list-style: none;
    display: grid;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.landing-footer__list {
    gap: 0;
}

.landing-footer__contact {
    gap: 0;
}

.landing-footer__list a,
.landing-footer__contact a {
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    color: #d8e7ff;
    font-size: 0.92rem;
    line-height: 1.5;
    text-decoration: none;
}

.landing-footer__list li + li,
.landing-footer__contact li + li {
    border-top: 1px solid rgba(107, 139, 191, 0.18);
}

.landing-footer__list a::after {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    opacity: 0.64;
    transform: rotate(-45deg);
}

.landing-footer__list a:hover,
.landing-footer__contact a:hover {
    color: #ffffff;
}

.landing-footer__contact li {
    display: grid;
    gap: 0.14rem;
    padding: 0.62rem 0;
    color: #d8e7ff;
    font-size: 0.92rem;
    line-height: 1.5;
}

.landing-footer__contact-label {
    color: #86a8e8;
    font-size: 0.72rem;
    font-weight: 850;
    line-height: 1.1;
    text-transform: uppercase;
}

.landing-footer__contact li span:not(.landing-footer__contact-label) {
    color: #b9c9e3;
}

.landing-footer__contact a {
    min-height: 0;
    justify-content: flex-start;
}

.landing-footer__bottom {
    margin-top: 0.78rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(107, 139, 191, 0.38);
    text-align: center;
    color: #d8e7ff;
    font-size: 0.75rem;
    line-height: 1.45;
}

.landing-footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.1rem;
    margin-top: 0.85rem;
}

.landing-footer__legal a {
    color: #d8e7ff;
    font-size: 0.75rem;
    line-height: 1.4;
    text-decoration: none;
}

.landing-footer__legal a:hover {
    color: #ffffff;
}

@media (min-width: 761px) {
    .landing-footer {
        padding: 3.2rem 1rem 2.25rem;
    }

    .landing-footer__body {
        max-width: none;
        grid-template-columns: minmax(270px, 0.9fr) minmax(190px, 0.58fr) minmax(320px, 0.82fr);
        column-gap: clamp(2.5rem, 5vw, 5.4rem);
        row-gap: 0.8rem;
        align-items: start;
    }

    .landing-footer__brand,
    .landing-footer__actions {
        grid-column: 1;
    }

    .landing-footer__logo {
        width: 148px;
        max-width: 100%;
    }

    .landing-footer__text {
        max-width: 24rem;
        font-size: 0.98rem;
        line-height: 1.58;
    }

    .landing-footer__actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 28rem;
        gap: 0.55rem;
        margin-top: 0.25rem;
    }

    .landing-footer__actions .landing-footer__action:nth-child(3):last-child {
        grid-column: 1 / -1;
    }

    .landing-footer__action {
        flex-direction: row;
        min-height: 42px;
        padding: 0.5rem 0.65rem;
        font-size: 0.9rem;
        text-align: left;
    }

    .landing-footer__accordion {
        margin: 0;
        padding-top: 0.25rem;
        border-top: 0;
    }

    .landing-footer__accordion:first-of-type {
        grid-column: 2;
        grid-row: 1 / span 3;
    }

    .landing-footer__accordion:last-of-type {
        grid-column: 3;
        grid-row: 1 / span 3;
    }

    .landing-footer__accordion[open] {
        margin: 0;
        padding-bottom: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        overflow: visible;
    }

    .landing-footer__accordion summary,
    .landing-footer__accordion[open] summary {
        min-height: 0;
        padding: 0 0 0.85rem;
        border-bottom: 1px solid rgba(107, 139, 191, 0.34);
        border-radius: 0;
        cursor: default;
        pointer-events: none;
    }

    .landing-footer__accordion summary::after {
        display: none;
    }

    .landing-footer__list,
    .landing-footer__contact {
        gap: 0.3rem;
        padding: 0.68rem 0 0;
    }

    .landing-footer__list a,
    .landing-footer__contact a {
        min-height: 0;
        justify-content: flex-start;
        padding: 0.18rem 0;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .landing-footer__list a::after {
        display: none;
    }

    .landing-footer__list li + li,
    .landing-footer__contact li + li {
        border-top: 0;
    }

    .landing-footer__contact li {
        gap: 0.18rem;
        padding: 0.22rem 0;
    }

    .landing-footer__bottom {
        grid-column: 1 / -1;
        margin-top: 1.45rem;
        padding-top: 1.1rem;
    }

    .landing-footer__legal {
        grid-column: 1 / -1;
        margin-top: 0.45rem;
    }
}

body.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 1180px) {
    .site-nav ul {
        gap: clamp(0.55rem, 1.1vw, 0.95rem);
    }

    .site-nav a {
        font-size: 0.82rem;
    }
}

@media (max-width: 980px) {
    body.site-menu-open {
        overflow: hidden;
    }

    html body header.site-header {
        overflow: visible !important;
        background: rgba(255, 255, 255, 0.98) !important;
        border-bottom: 1px solid rgba(203, 214, 228, 0.92) !important;
        box-shadow: 0 1px 0 rgba(203, 214, 228, 0.92) !important;
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
        transition: transform 180ms ease !important;
        will-change: transform !important;
        backface-visibility: hidden !important;
    }

    html body header.site-header.is-hidden {
        transform: none !important;
    }

    html body header.site-header .site-header__inner {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 62px !important;
        padding: 6px 12px !important;
        gap: 8px !important;
        position: relative !important;
        z-index: 1302 !important;
        box-sizing: border-box !important;
        transition: none !important;
    }

    html body header.site-header .site-logo {
        margin: 0 !important;
        width: clamp(96px, 30vw, 132px) !important;
        max-width: calc(100% - 160px) !important;
        flex: 0 1 auto !important;
        order: 1 !important;
        transition: none !important;
    }

    html body header.site-header .site-header__cta {
        display: inline-flex !important;
        order: 2 !important;
        min-height: 40px !important;
        margin-left: auto !important;
        padding: 0.42rem 0.62rem !important;
        font-size: 0.72rem !important;
        letter-spacing: 0.02em !important;
        gap: 0.35rem !important;
        box-shadow: 0 3px 10px rgba(244, 184, 74, 0.28) !important;
    }

    html body header.site-header .site-header__cta::before {
        width: 0.9rem !important;
        height: 0.9rem !important;
    }

    html body header.site-header .site-header__cta-text {
        display: none !important;
    }

    html body header.site-header .site-header__cta-number {
        display: inline !important;
    }

    html body.contact-page-body header.site-header .site-header__cta {
        width: 40px !important;
        min-width: 40px !important;
        padding: 0 !important;
        justify-content: center !important;
        gap: 0 !important;
    }

    html body.contact-page-body header.site-header .site-header__cta-text,
    html body.contact-page-body header.site-header .site-header__cta-number {
        display: none !important;
    }

    html body header.site-header .site-header__menu-toggle {
        display: inline-flex !important;
        order: 3 !important;
        margin-left: 0 !important;
        flex: 0 0 auto !important;
        z-index: 1303 !important;
    }

    html body header.site-header nav.site-nav:not(.site-nav--overlay) {
        display: none !important;
    }

    html body nav.site-nav.site-nav--overlay {
        position: fixed !important;
        top: var(--mobile-nav-top, 74px) !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: calc(100dvh - var(--mobile-nav-top, 74px)) !important;
        max-height: none !important;
        display: block !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        background: #f8fafc !important;
        padding: 1rem 1.4rem 2rem !important;
        box-sizing: border-box !important;
        border-top: 1px solid #d6e0ea !important;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18) !important;
        z-index: 1300 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateY(-10px) !important;
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease !important;
    }

    body.site-menu-open nav.site-nav.site-nav--overlay {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }

    html body nav.site-nav.site-nav--overlay ul {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.2rem !important;
        justify-items: stretch !important;
        align-items: start !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    html body nav.site-nav.site-nav--overlay .site-menu__item--dropdown .site-submenu {
        position: static !important;
        display: grid !important;
        min-width: 0 !important;
        width: 100% !important;
        max-height: 0 !important;
        margin: 0 !important;
        padding: 0 0.65rem !important;
        border: 0 !important;
        border-radius: 10px !important;
        box-shadow: none !important;
        background: rgba(36, 89, 183, 0.06) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        overflow: hidden !important;
        transform: none !important;
        gap: 0.15rem !important;
        transition:
            max-height 0.28s ease,
            opacity 0.2s ease,
            margin 0.28s ease,
            padding 0.28s ease,
            visibility 0.2s ease !important;
    }

    html body nav.site-nav.site-nav--overlay .site-menu__item--dropdown.is-submenu-open .site-submenu {
        max-height: 14rem !important;
        margin: 0.4rem 0 0.55rem !important;
        padding: 0.5rem 0.55rem !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    html body nav.site-nav.site-nav--overlay .site-menu__item--dropdown > a {
        justify-content: space-between !important;
        gap: 0.65rem !important;
        text-transform: uppercase !important;
    }

    html body nav.site-nav.site-nav--overlay .site-menu__item--dropdown .site-nav__chevron {
        transition: transform 0.22s ease !important;
    }

    html body nav.site-nav.site-nav--overlay .site-menu__item--dropdown.is-submenu-open .site-nav__chevron {
        transform: rotate(-135deg) translateY(0.06em) !important;
    }

    html body nav.site-nav.site-nav--overlay .site-menu__item--dropdown.is-section-active > a {
        color: var(--header-link-active) !important;
        background: transparent !important;
        box-shadow: none !important;
        padding-left: 0.1rem !important;
        border-radius: 0 !important;
    }

    html body nav.site-nav.site-nav--overlay li {
        width: 100% !important;
    }

    html body nav.site-nav.site-nav--overlay a {
        display: flex !important;
        width: 100% !important;
        min-height: 44px !important;
        align-items: center !important;
        box-sizing: border-box !important;
        padding: 0.25rem 0.1rem !important;
        color: #0f172a !important;
        font-size: clamp(1rem, 5.4vw, 1.3rem) !important;
        font-weight: 600 !important;
        line-height: 1.2 !important;
        text-transform: uppercase !important;
        letter-spacing: 0 !important;
    }

    html body nav.site-nav.site-nav--overlay .site-submenu a {
        min-height: 42px !important;
        padding: 0.5rem 0.65rem !important;
        color: #475569 !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        line-height: 1.3 !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
        border-radius: 8px !important;
    }

    html body nav.site-nav.site-nav--overlay .site-submenu a[aria-current="page"] {
        color: var(--header-link-active) !important;
        background: #ffffff !important;
        box-shadow: 0 1px 0 rgba(36, 89, 183, 0.08) !important;
        font-weight: 700 !important;
    }

    html body nav.site-nav.site-nav--overlay a[aria-current="page"]:not(.site-submenu a) {
        color: var(--header-link-active) !important;
        box-shadow: inset 3px 0 0 var(--header-accent) !important;
        padding-left: 0.55rem !important;
        background: rgba(36, 89, 183, 0.06) !important;
        border-radius: 6px !important;
    }

    html body nav.site-nav.site-nav--overlay .site-menu__call {
        display: block !important;
        margin-top: 0.55rem !important;
    }

    html body nav.site-nav.site-nav--overlay .site-menu__call a {
        justify-content: center !important;
        min-height: 46px !important;
        box-sizing: border-box !important;
        padding: 0.5rem 0.85rem !important;
        border-radius: 8px !important;
        background: #f4b84a !important;
        color: #102033 !important;
        font-weight: 850 !important;
        box-shadow: 0 10px 24px rgba(16, 32, 51, 0.12) !important;
    }

    html body nav.site-nav.site-nav--overlay .current-menu-item > a,
    html body nav.site-nav.site-nav--overlay a:hover {
        color: #1e293b !important;
    }

    html body nav.site-nav.site-nav--overlay a:hover {
        box-shadow: none !important;
    }

    html body nav.site-nav.site-nav--overlay a:focus {
        outline: none !important;
    }

    html body nav.site-nav.site-nav--overlay a:focus-visible {
        outline: 2px solid rgba(36, 89, 183, 0.4) !important;
        outline-offset: 2px !important;
        border-radius: 6px !important;
    }

    html body nav.site-nav.site-nav--overlay .site-submenu a:hover {
        background: rgba(255, 255, 255, 0.72) !important;
        color: #1e293b !important;
    }

    body.admin-bar header.site-header {
        top: 46px !important;
    }
}

@media (max-width: 760px) {
    .landing-footer {
        padding:
            1.65rem 0
            calc(2.85rem + env(safe-area-inset-bottom, 0px));
    }

    .landing-footer__inner {
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .landing-footer__body {
        width: 100%;
        max-width: none;
        gap: 0;
    }

    .landing-footer__brand,
    .landing-footer__actions {
        padding-inline: 1.1rem;
    }

    .landing-footer__brand {
        gap: 0.55rem;
        padding-bottom: 0.15rem;
        margin-bottom: 1rem;
    }

    .landing-footer__actions {
        margin-bottom: 0.85rem;
    }

    .landing-footer__logo {
        width: 112px;
        max-width: 42vw;
    }

    .landing-footer__text {
        max-width: none;
        font-size: 0.88rem;
        line-height: 1.55;
        color: #c5d8f2;
    }

    .landing-footer__actions {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.42rem;
        margin-top: 0.15rem;
    }

    .landing-footer__action {
        flex-direction: column;
        gap: 0.28rem;
        min-height: 52px;
        height: auto;
        padding: 0.55rem 0.35rem;
        border-color: rgba(134, 168, 232, 0.42);
        background: rgba(18, 44, 84, 0.82);
        font-size: 0.72rem;
        line-height: 1.15;
        text-align: center;
    }

    .landing-footer__action--primary {
        border-color: rgba(244, 184, 74, 0.65);
    }

    .landing-footer__icon {
        width: 1.05rem;
        height: 1.05rem;
    }

    .landing-footer__accordion {
        width: 100%;
        border: 0;
        border-top: 1px solid rgba(107, 139, 191, 0.34);
        border-bottom: 1px solid rgba(107, 139, 191, 0.34);
        border-radius: 0;
        background: rgba(13, 35, 70, 0.52);
        overflow: hidden;
    }

    .landing-footer__accordion + .landing-footer__accordion {
        margin-top: 0;
        border-top: 0;
    }

    .landing-footer__accordion[open] {
        margin: 0;
        background: linear-gradient(180deg, rgba(13, 35, 70, 0.82), rgba(11, 30, 60, 0.62));
    }

    .landing-footer__accordion summary {
        min-height: 52px;
        padding: 0 3.25rem 0 1.1rem;
        font-size: 0.9rem;
    }

    .landing-footer__accordion[open] summary {
        min-height: 50px;
        padding: 0 1.1rem;
    }

    .landing-footer__accordion summary::after {
        right: 0.65rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1.65rem;
        height: 1.65rem;
        border-radius: 999px;
        background: rgba(134, 168, 232, 0.16);
        font-size: 1.05rem;
        font-weight: 600;
    }

    .landing-footer__list,
    .landing-footer__contact {
        gap: 0;
        padding: 0.15rem 1.1rem 0.75rem;
    }

    .landing-footer__list a,
    .landing-footer__contact li {
        font-size: 0.86rem;
        line-height: 1.48;
    }

    .landing-footer__list a {
        min-height: 44px;
    }

    .landing-footer__contact li {
        padding: 0.58rem 0;
    }

    .landing-footer__bottom {
        margin-top: 0;
        padding: 0.95rem 1.1rem 0;
        border-top: 1px solid rgba(107, 139, 191, 0.34);
        font-size: 0.72rem;
        line-height: 1.5;
        color: #b9c9e3;
    }

    .landing-footer__legal {
        gap: 0.55rem 1rem;
        margin-top: 0.75rem;
        padding-inline: 1.1rem;
    }

    .landing-footer__legal a {
        font-size: 0.74rem;
        padding: 0.25rem 0;
    }

    .landing-footer__legal a:not(:first-child) {
        border-left: 1px solid rgba(107, 139, 191, 0.4);
        padding-left: 0.85rem;
    }
}

@media (max-width: 600px) {
    body.admin-bar header.site-header {
        top: 0 !important;
    }
}

body.colpercol-local-theme .landing-footer {
    margin-top: 0 !important;
}

body.colpercol-local-theme footer.wp-block-template-part {
    margin-top: 0 !important;
    margin-block-start: 0 !important;
}
