/**
 * Header, navigation and footer chrome.
 */

.mpt-site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--mpt-color-white);
}

.mpt-site-header.is-scrolled {
    box-shadow: var(--mpt-shadow-header);
}

.mpt-site-header.is-scrolled .mpt-main-header {
    min-height: var(--mpt-header-height-sticky);
}

.mpt-utility-bar {
    background: var(--mpt-color-deep);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.8125rem;
    min-height: var(--mpt-utility-height);
}

.mpt-utility-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--mpt-space-4);
    min-height: var(--mpt-utility-height);
}

.mpt-utility-bar__contacts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 1.15rem;
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 0;
}

.mpt-utility-bar__contacts li > span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.92);
}

body.mpt-theme .mpt-utility-bar a,
body.mpt-theme .mpt-utility-bar a:link,
body.mpt-theme .mpt-utility-bar a:visited {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

body.mpt-theme .mpt-utility-bar a:hover,
body.mpt-theme .mpt-utility-bar a:focus,
body.mpt-theme .mpt-utility-bar a:focus-visible,
body.mpt-theme .mpt-utility-bar a:active {
    color: var(--mpt-color-pale-blue);
    text-decoration: none;
}

.mpt-utility-bar__icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.mpt-main-header {
    border-bottom: 1px solid var(--mpt-color-border);
    background: var(--mpt-color-white);
    min-height: var(--mpt-header-height);
    transition: min-height var(--mpt-transition);
}

.mpt-main-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--mpt-space-4);
    min-height: inherit;
}

.mpt-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 0;
    margin-right: auto;
}

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

.mpt-logo img,
.mpt-logo__img,
.mpt-logo--full__img,
.mpt-logo--compact__img {
    display: block;
    width: auto;
    max-height: 62px;
    height: auto;
}

.mpt-logo--text span {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--mpt-color-deep);
}

.mpt-logo--compact {
    display: none;
}

.mpt-header-actions {
    display: flex;
    align-items: center;
    gap: var(--mpt-space-3);
    flex-shrink: 0;
}

.mpt-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--mpt-color-border);
    border-radius: var(--mpt-radius-sm);
    background: var(--mpt-color-white);
    color: var(--mpt-color-deep);
    cursor: pointer;
}

body.mpt-theme .mpt-nav-toggle,
body.mpt-theme .mpt-nav-toggle:hover,
body.mpt-theme .mpt-nav-toggle:focus,
body.mpt-theme .mpt-nav-toggle:focus-visible,
body.mpt-theme .mpt-nav-toggle:active {
    background: var(--mpt-color-white);
    border: 1px solid var(--mpt-color-border);
    color: var(--mpt-color-deep);
}

body.mpt-theme .mpt-nav-toggle:hover,
body.mpt-theme .mpt-nav-toggle:focus-visible {
    border-color: var(--mpt-color-primary);
}

.mpt-nav-toggle__bars {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    position: relative;
}

.mpt-nav-toggle__bars::before,
.mpt-nav-toggle__bars::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: currentColor;
}

.mpt-nav-toggle__bars::before { top: -6px; }
.mpt-nav-toggle__bars::after { top: 6px; }

/* Desktop nav */
.mpt-primary-nav {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
}

.mpt-primary-nav__list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.45rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mpt-primary-nav__list > li {
    position: relative;
}

.mpt-primary-nav__item-trigger {
    display: inline-flex;
    align-items: stretch;
    border-radius: var(--mpt-radius-sm);
}

/* Lock link colors: global body.mpt-theme a uses primary-dark and :visited can diverge. */
body.mpt-theme .mpt-primary-nav__list > li > a,
body.mpt-theme .mpt-primary-nav__list > li > a:link,
body.mpt-theme .mpt-primary-nav__list > li > a:visited,
body.mpt-theme .mpt-primary-nav__item-trigger > a,
body.mpt-theme .mpt-primary-nav__item-trigger > a:link,
body.mpt-theme .mpt-primary-nav__item-trigger > a:visited {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.4rem 0.95rem;
    color: var(--mpt-color-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.2;
    white-space: nowrap;
    border-radius: var(--mpt-radius-sm);
    background: transparent;
    box-shadow: none;
    transition: color var(--mpt-transition);
}

body.mpt-theme .mpt-primary-nav__item-trigger > a,
body.mpt-theme .mpt-primary-nav__item-trigger > a:link,
body.mpt-theme .mpt-primary-nav__item-trigger > a:visited {
    padding-right: 0.2rem;
    border-radius: var(--mpt-radius-sm) 0 0 var(--mpt-radius-sm);
}

body.mpt-theme .mpt-primary-nav__list > li > a:hover,
body.mpt-theme .mpt-primary-nav__list > li > a:focus-visible,
body.mpt-theme .mpt-primary-nav__item-trigger > a:hover,
body.mpt-theme .mpt-primary-nav__item-trigger > a:focus-visible {
    color: var(--mpt-color-deep);
    text-decoration: none;
    background: transparent;
}

body.mpt-theme .mpt-primary-nav__item-trigger:hover,
body.mpt-theme .mpt-primary-nav__item-trigger:focus-within,
body.mpt-theme .mpt-primary-nav__item--open > .mpt-primary-nav__item-trigger {
    background: transparent;
}

/* Active = brand primary color only (no pill / underline chrome). */
body.mpt-theme .mpt-primary-nav__list > .current-menu-item > a,
body.mpt-theme .mpt-primary-nav__list > .current-menu-item > a:link,
body.mpt-theme .mpt-primary-nav__list > .current-menu-item > a:visited,
body.mpt-theme .mpt-primary-nav__list > .current-menu-ancestor > a,
body.mpt-theme .mpt-primary-nav__list > .current-menu-ancestor > a:link,
body.mpt-theme .mpt-primary-nav__list > .current-menu-ancestor > a:visited,
body.mpt-theme .mpt-primary-nav__list > .current-menu-item > .mpt-primary-nav__item-trigger > a,
body.mpt-theme .mpt-primary-nav__list > .current-menu-item > .mpt-primary-nav__item-trigger > a:link,
body.mpt-theme .mpt-primary-nav__list > .current-menu-item > .mpt-primary-nav__item-trigger > a:visited,
body.mpt-theme .mpt-primary-nav__list > .current-menu-ancestor > .mpt-primary-nav__item-trigger > a,
body.mpt-theme .mpt-primary-nav__list > .current-menu-ancestor > .mpt-primary-nav__item-trigger > a:link,
body.mpt-theme .mpt-primary-nav__list > .current-menu-ancestor > .mpt-primary-nav__item-trigger > a:visited,
body.mpt-theme .mpt-primary-nav__item--open > .mpt-primary-nav__item-trigger > a {
    color: var(--mpt-color-primary);
    background: transparent;
    text-decoration: none;
    box-shadow: none;
    font-weight: 700;
}

body.mpt-theme .mpt-primary-nav__list > .current-menu-item > .mpt-primary-nav__item-trigger,
body.mpt-theme .mpt-primary-nav__list > .current-menu-ancestor > .mpt-primary-nav__item-trigger {
    background: transparent;
    box-shadow: none;
}

body.mpt-theme .mpt-primary-nav__list > .current-menu-item > a:hover,
body.mpt-theme .mpt-primary-nav__list > .current-menu-item > a:focus-visible,
body.mpt-theme .mpt-primary-nav__list > .current-menu-ancestor > a:hover,
body.mpt-theme .mpt-primary-nav__list > .current-menu-ancestor > a:focus-visible,
body.mpt-theme .mpt-primary-nav__list > .current-menu-item > .mpt-primary-nav__item-trigger > a:hover,
body.mpt-theme .mpt-primary-nav__list > .current-menu-item > .mpt-primary-nav__item-trigger > a:focus-visible,
body.mpt-theme .mpt-primary-nav__list > .current-menu-ancestor > .mpt-primary-nav__item-trigger > a:hover,
body.mpt-theme .mpt-primary-nav__list > .current-menu-ancestor > .mpt-primary-nav__item-trigger > a:focus-visible {
    color: var(--mpt-color-primary-dark);
}

.mpt-primary-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    min-height: 44px;
    margin: 0;
    padding: 0 0.45rem 0 0.15rem;
    color: var(--mpt-color-muted);
    border: 0;
    background: transparent;
    cursor: pointer;
    border-radius: 0 var(--mpt-radius-sm) var(--mpt-radius-sm) 0;
    flex-shrink: 0;
}

body.mpt-theme .mpt-primary-nav__toggle,
body.mpt-theme .mpt-primary-nav__toggle:hover,
body.mpt-theme .mpt-primary-nav__toggle:focus,
body.mpt-theme .mpt-primary-nav__toggle:focus-visible,
body.mpt-theme .mpt-primary-nav__toggle:active,
body.mpt-theme .mpt-primary-nav__item--open > .mpt-primary-nav__item-trigger .mpt-primary-nav__toggle {
    background: transparent;
    border: 0;
    box-shadow: none;
}

body.mpt-theme .mpt-primary-nav__toggle {
    color: var(--mpt-color-muted);
}

body.mpt-theme .mpt-primary-nav__toggle:hover,
body.mpt-theme .mpt-primary-nav__toggle:focus,
body.mpt-theme .mpt-primary-nav__toggle:focus-visible,
body.mpt-theme .mpt-primary-nav__toggle:active,
body.mpt-theme .mpt-primary-nav__item--open > .mpt-primary-nav__item-trigger .mpt-primary-nav__toggle,
body.mpt-theme .mpt-primary-nav__list > .current-menu-item .mpt-primary-nav__toggle,
body.mpt-theme .mpt-primary-nav__list > .current-menu-ancestor .mpt-primary-nav__toggle {
    color: var(--mpt-color-primary);
}

body.mpt-theme .mpt-primary-nav__toggle:focus-visible {
    outline: 2px solid var(--mpt-color-primary);
    outline-offset: -2px;
    box-shadow: none;
}

.mpt-primary-nav__chevron {
    display: block;
    width: 12px;
    height: 12px;
    transition: transform 0.22s ease;
}

.mpt-primary-nav__item--open .mpt-primary-nav__chevron {
    transform: rotate(180deg);
}

.mpt-primary-nav__submenu,
.mpt-primary-nav .sub-menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    min-width: 14.5rem;
    margin: 0;
    padding: 0.4rem;
    list-style: none;
    background: var(--mpt-color-white);
    border: 1px solid rgba(217, 231, 236, 0.95);
    border-radius: 12px;
    box-shadow:
        0 4px 6px rgba(13, 51, 71, 0.04),
        0 16px 32px rgba(13, 51, 71, 0.12);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition:
        opacity 0.18s ease,
        transform 0.18s ease,
        visibility 0.18s ease;
}

.mpt-primary-nav__submenu::before,
.mpt-primary-nav .sub-menu::before {
    content: "";
    position: absolute;
    top: -0.45rem;
    left: 0;
    right: 0;
    height: 0.45rem;
}

.mpt-primary-nav__item--open > .mpt-primary-nav__submenu,
.mpt-primary-nav__item--open > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mpt-primary-nav .sub-menu a {
    display: block;
    padding: 0.7rem 0.9rem;
    color: var(--mpt-color-heading);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.3;
    transition: background 0.15s ease, color 0.15s ease;
}

body.mpt-theme .mpt-primary-nav .sub-menu a,
body.mpt-theme .mpt-primary-nav .sub-menu a:link,
body.mpt-theme .mpt-primary-nav .sub-menu a:visited {
    color: var(--mpt-color-heading);
    text-decoration: none;
}

.mpt-primary-nav .sub-menu a:hover,
.mpt-primary-nav .sub-menu a:focus-visible,
.mpt-primary-nav .sub-menu .current-menu-item > a,
body.mpt-theme .mpt-primary-nav .sub-menu a:hover,
body.mpt-theme .mpt-primary-nav .sub-menu a:focus-visible,
body.mpt-theme .mpt-primary-nav .sub-menu .current-menu-item > a,
body.mpt-theme .mpt-primary-nav .sub-menu .current-menu-item > a:visited {
    background: var(--mpt-color-surface-soft);
    color: var(--mpt-color-deep);
}

@media (prefers-reduced-motion: reduce) {
    .mpt-primary-nav__chevron,
    .mpt-primary-nav__submenu,
    .mpt-primary-nav .sub-menu {
        transition: none;
    }
}

/* Mobile drawer */
.mpt-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 51, 71, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--mpt-transition-slow), visibility var(--mpt-transition-slow);
    z-index: 1100;
}

.mpt-mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(100%, 360px);
    height: 100%;
    height: 100dvh;
    padding-top: env(safe-area-inset-top, 0px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
    padding-right: env(safe-area-inset-right, 0px);
    background: var(--mpt-color-white);
    transform: translateX(100%);
    transition: transform var(--mpt-transition-slow);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    overflow: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

body.mpt-nav-open { overflow: hidden; }
body.mpt-nav-open .mpt-nav-overlay {
    opacity: 1;
    visibility: visible;
}
body.mpt-nav-open .mpt-mobile-nav { transform: translateX(0); }

.mpt-mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--mpt-space-3);
    padding: var(--mpt-space-4);
    padding-top: max(var(--mpt-space-4), env(safe-area-inset-top, 0px));
    border-bottom: 1px solid var(--mpt-color-border);
    flex-shrink: 0;
}

.mpt-mobile-nav__body {
    padding: var(--mpt-space-4);
    flex: 1;
}

.mpt-mobile-nav__list,
.mpt-mobile-nav__list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mpt-mobile-nav__list > li {
    border-bottom: 1px solid var(--mpt-color-border);
}

.mpt-mobile-nav__list a {
    display: block;
    padding: 0.9rem 0.25rem;
    color: var(--mpt-color-deep);
    text-decoration: none;
    font-weight: 700;
}

.mpt-mobile-nav__item-row {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.mpt-mobile-nav__item-row > a { flex: 1; }

.mpt-mobile-nav__submenu-toggle {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: var(--mpt-color-deep);
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1;
}

body.mpt-theme .mpt-mobile-nav__submenu-toggle,
body.mpt-theme .mpt-mobile-nav__submenu-toggle:hover,
body.mpt-theme .mpt-mobile-nav__submenu-toggle:focus,
body.mpt-theme .mpt-mobile-nav__submenu-toggle:focus-visible,
body.mpt-theme .mpt-mobile-nav__submenu-toggle:active {
    background: transparent;
    border: 0;
    color: var(--mpt-color-deep);
    box-shadow: none;
}

.mpt-mobile-nav .sub-menu {
    display: none;
    padding-left: var(--mpt-space-4);
    padding-bottom: var(--mpt-space-3);
}

.mpt-mobile-nav__item--open > .sub-menu { display: block; }

.mpt-mobile-nav .sub-menu a {
    font-weight: 500;
    color: var(--mpt-color-body);
    padding: 0.65rem 0.25rem;
}

.mpt-mobile-nav__cta { margin: var(--mpt-space-5) 0; }
.mpt-mobile-nav__cta .mpt-button { width: 100%; }

.mpt-mobile-nav__contact {
    margin-top: auto;
    padding-top: var(--mpt-space-5);
    padding-bottom: max(var(--mpt-space-4), env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--mpt-color-border);
    font-size: var(--mpt-font-size-sm);
    flex-shrink: 0;
}

.mpt-mobile-nav__contact a {
    color: var(--mpt-color-deep);
    font-weight: 600;
}

/* Footer */
.mpt-site-footer {
    background: #004d6c;
    color: rgba(255, 255, 255, 0.9);
}

body.mpt-theme .mpt-site-footer a,
body.mpt-theme .mpt-site-footer a:link,
body.mpt-theme .mpt-site-footer a:visited {
    color: rgba(255, 255, 255, 0.94);
    text-decoration: none;
}

body.mpt-theme .mpt-site-footer a:hover,
body.mpt-theme .mpt-site-footer a:focus,
body.mpt-theme .mpt-site-footer a:focus-visible,
body.mpt-theme .mpt-site-footer a:active {
    color: var(--mpt-color-pale-blue);
    text-decoration: none;
}

.mpt-site-footer__main {
    padding-block: var(--mpt-space-8);
}

.mpt-site-footer__grid {
    display: grid;
    gap: var(--mpt-space-6);
    grid-template-columns: 1.4fr repeat(2, minmax(0, 1fr)) 1.25fr;
}

.mpt-site-footer__brand {
    display: grid;
    gap: 0.85rem;
    align-content: start;
}

.mpt-site-footer__brand .mpt-logo--footer {
    display: inline-flex;
    align-items: center;
    max-width: 13.8rem;
}

.mpt-site-footer__brand .mpt-logo--footer img,
.mpt-site-footer__brand .mpt-logo--footer .mpt-logo__img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 3.9rem;
}

.mpt-site-footer__brand .mpt-logo--text span {
    color: var(--mpt-color-white);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.mpt-site-footer__title {
    margin: 0 0 var(--mpt-space-4);
    color: var(--mpt-color-white);
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.mpt-site-footer__desc {
    margin: 0;
    max-width: 34ch;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.55;
}

.mpt-site-footer__holding {
    margin: 0;
    font-size: var(--mpt-font-size-sm);
    color: rgba(185, 229, 251, 0.9);
}

.mpt-site-footer__menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.mpt-site-footer__contact {
    min-width: 0;
}

.mpt-footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.9rem;
}

.mpt-footer-contact__row {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: 0.7rem;
    align-items: start;
    margin: 0;
    padding: 0;
}

.mpt-footer-contact__row--action {
    grid-template-columns: 1fr;
    padding-top: 0.15rem;
}

.mpt-footer-contact__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #b9e5fb;
    line-height: 0;
}

.mpt-footer-contact__icon svg {
    width: 0.95rem;
    height: 0.95rem;
    display: block;
}

.mpt-footer-contact__body {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
    padding-top: 0.1rem;
}

.mpt-footer-contact__label {
    color: rgba(185, 229, 251, 0.88);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.2;
}

body.mpt-theme .mpt-footer-contact__value,
body.mpt-theme .mpt-footer-contact__value:link,
body.mpt-theme .mpt-footer-contact__value:visited,
.mpt-footer-contact__value {
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    overflow-wrap: anywhere;
}

body.mpt-theme a.mpt-footer-contact__value:hover,
body.mpt-theme a.mpt-footer-contact__value:focus,
body.mpt-theme a.mpt-footer-contact__value:focus-visible,
body.mpt-theme a.mpt-footer-contact__value:active {
    color: var(--mpt-color-pale-blue);
    text-decoration: none;
}

.mpt-footer-contact__value--address {
    display: grid;
    gap: 0.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.mpt-footer-contact__line {
    display: block;
}

body.mpt-theme .mpt-footer-contact__link,
body.mpt-theme .mpt-footer-contact__link:link,
body.mpt-theme .mpt-footer-contact__link:visited,
.mpt-footer-contact__link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.2rem;
    color: #b9e5fb;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
}

body.mpt-theme .mpt-footer-contact__link:hover,
body.mpt-theme .mpt-footer-contact__link:focus,
body.mpt-theme .mpt-footer-contact__link:focus-visible,
body.mpt-theme .mpt-footer-contact__link:active {
    color: #fff;
    text-decoration: none;
}

.mpt-footer-contact__link::after {
    content: "→";
    font-size: 0.9em;
    line-height: 1;
    transition: transform 0.2s ease;
}

.mpt-footer-contact__link:hover::after,
.mpt-footer-contact__link:focus-visible::after {
    transform: translateX(2px);
}

/* Legacy selectors retained for older markup. */
.mpt-contact-list__item {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.5rem;
    max-width: 100%;
}

.mpt-contact-list__icon {
    width: 0.95rem;
    height: 0.95rem;
    flex-shrink: 0;
    margin-top: 0.2em;
    color: rgba(185, 229, 251, 0.95);
}

.mpt-contact-list__item > span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
}

.mpt-site-footer__social,
.mpt-social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    list-style: none;
    margin: 0.25rem 0 0;
    padding: 0;
}

.mpt-site-footer__social a,
.mpt-social-links:not(.mpt-utility-bar__social) a,
.mpt-social-links:not(.mpt-utility-bar__social) .mpt-social-links__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    padding: 0;
    color: var(--mpt-color-deep, #00597d);
    text-decoration: none;
    border: 0;
    border-bottom: none;
    border-radius: 999px;
    background: var(--mpt-color-white, #fff);
    box-shadow: 0 1px 3px rgba(4, 36, 52, 0.1);
    opacity: 1;
    line-height: 0;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.mpt-site-footer__social a:hover,
.mpt-site-footer__social a:focus-visible,
.mpt-social-links:not(.mpt-utility-bar__social) a:hover,
.mpt-social-links:not(.mpt-utility-bar__social) a:focus-visible,
.mpt-social-links:not(.mpt-utility-bar__social) .mpt-social-links__link:hover,
.mpt-social-links:not(.mpt-utility-bar__social) .mpt-social-links__link:focus-visible {
    opacity: 1;
    border-bottom-color: transparent;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.5);
    color: var(--mpt-color-primary-dark, #1296b0);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(4, 36, 52, 0.12);
}

.mpt-social-links__icon {
    display: block;
    width: 1.15rem;
    height: 1.15rem;
    flex-shrink: 0;
    color: currentColor;
    fill: currentColor;
    overflow: visible;
}

.mpt-contact-details__social-wrap {
    margin-top: 1rem;
}

.mpt-contact-details__social {
    margin-top: 0.5rem;
}

.mpt-contact-details__social a,
.mpt-alternative-contact .mpt-social-links__link {
    background: var(--mpt-color-white, #fff);
    color: var(--mpt-color-deep, #00597d);
}

.mpt-contact-details__social a:hover,
.mpt-contact-details__social a:focus-visible,
.mpt-alternative-contact .mpt-social-links__link:hover,
.mpt-alternative-contact .mpt-social-links__link:focus-visible {
    background: rgba(255, 255, 255, 0.5);
    color: var(--mpt-color-primary-dark, #1296b0);
}

body.mpt-theme .mpt-site-footer__social a,
body.mpt-theme .mpt-site-footer__social a:link,
body.mpt-theme .mpt-site-footer__social a:visited,
body.mpt-theme .mpt-social-links:not(.mpt-utility-bar__social) a,
body.mpt-theme .mpt-social-links:not(.mpt-utility-bar__social) a:link,
body.mpt-theme .mpt-social-links:not(.mpt-utility-bar__social) a:visited,
body.mpt-theme .mpt-social-links:not(.mpt-utility-bar__social) .mpt-social-links__link,
body.mpt-theme .mpt-social-links:not(.mpt-utility-bar__social) .mpt-social-links__link:link,
body.mpt-theme .mpt-social-links:not(.mpt-utility-bar__social) .mpt-social-links__link:visited {
    color: var(--mpt-color-deep, #00597d);
}

body.mpt-theme .mpt-site-footer__social a:hover,
body.mpt-theme .mpt-site-footer__social a:focus,
body.mpt-theme .mpt-site-footer__social a:focus-visible,
body.mpt-theme .mpt-site-footer__social a:active,
body.mpt-theme .mpt-social-links:not(.mpt-utility-bar__social) a:hover,
body.mpt-theme .mpt-social-links:not(.mpt-utility-bar__social) a:focus,
body.mpt-theme .mpt-social-links:not(.mpt-utility-bar__social) a:focus-visible,
body.mpt-theme .mpt-social-links:not(.mpt-utility-bar__social) a:active,
body.mpt-theme .mpt-social-links:not(.mpt-utility-bar__social) .mpt-social-links__link:hover,
body.mpt-theme .mpt-social-links:not(.mpt-utility-bar__social) .mpt-social-links__link:focus,
body.mpt-theme .mpt-social-links:not(.mpt-utility-bar__social) .mpt-social-links__link:focus-visible,
body.mpt-theme .mpt-social-links:not(.mpt-utility-bar__social) .mpt-social-links__link:active {
    color: var(--mpt-color-primary-dark, #1296b0);
}

.mpt-utility-bar__social {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.4rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
}

body.mpt-theme .mpt-utility-bar__social a,
body.mpt-theme .mpt-utility-bar__social a:link,
body.mpt-theme .mpt-utility-bar__social a:visited,
body.mpt-theme .mpt-utility-bar__social .mpt-social-links__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.875rem;
    height: 1.875rem;
    padding: 0;
    color: #ffffff;
    text-decoration: none;
    opacity: 1;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    box-shadow: none;
    line-height: 0;
}

body.mpt-theme .mpt-utility-bar__social a:hover,
body.mpt-theme .mpt-utility-bar__social a:focus,
body.mpt-theme .mpt-utility-bar__social a:focus-visible,
body.mpt-theme .mpt-utility-bar__social a:active,
body.mpt-theme .mpt-utility-bar__social .mpt-social-links__link:hover,
body.mpt-theme .mpt-utility-bar__social .mpt-social-links__link:focus,
body.mpt-theme .mpt-utility-bar__social .mpt-social-links__link:focus-visible,
body.mpt-theme .mpt-utility-bar__social .mpt-social-links__link:active {
    opacity: 1;
    color: #ffffff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: none;
}

.mpt-utility-bar__social .mpt-social-links__icon {
    width: 0.95rem;
    height: 0.95rem;
    fill: currentColor;
}

body.mpt-theme .mpt-utility-bar__social a:hover .mpt-social-links__icon,
body.mpt-theme .mpt-utility-bar__social a:focus .mpt-social-links__icon,
body.mpt-theme .mpt-utility-bar__social a:focus-visible .mpt-social-links__icon,
body.mpt-theme .mpt-utility-bar__social a:active .mpt-social-links__icon,
body.mpt-theme .mpt-utility-bar__social .mpt-social-links__link:hover .mpt-social-links__icon,
body.mpt-theme .mpt-utility-bar__social .mpt-social-links__link:focus .mpt-social-links__icon,
body.mpt-theme .mpt-utility-bar__social .mpt-social-links__link:focus-visible .mpt-social-links__icon,
body.mpt-theme .mpt-utility-bar__social .mpt-social-links__link:active .mpt-social-links__icon {
    color: #ffffff;
}

.mpt-site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-block: var(--mpt-space-4);
    font-size: var(--mpt-font-size-sm);
}

.mpt-site-footer__bottom-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: var(--mpt-space-3) var(--mpt-space-5);
    align-items: center;
}

.mpt-site-footer__bottom-inner > p {
    margin: 0;
    justify-self: start;
}

.mpt-site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    justify-self: center;
    grid-column: 2;
    gap: var(--mpt-space-4);
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 640px) {
    .mpt-site-footer__bottom-inner {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .mpt-site-footer__bottom-inner > p,
    .mpt-site-footer__legal {
        justify-self: center;
        grid-column: auto;
    }
}

.mpt-logo--white span,
.mpt-logo--white { color: var(--mpt-color-white); }

/* Floating actions: scroll-top above chat */
body.mpt-theme .mpt-scroll-top {
    position: fixed;
    right: max(1rem, env(safe-area-inset-right));
    bottom: calc(max(1rem, env(safe-area-inset-bottom)) + 4.15rem);
    z-index: 1051;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(13, 51, 71, 0.12);
    border-radius: 999px;
    background: #ffffff;
    color: var(--mpt-color-deep);
    box-shadow:
        0 10px 24px rgba(0, 40, 58, 0.16),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(0.5rem);
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background-color 0.22s ease,
        color 0.22s ease;
}

body.mpt-theme .mpt-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

body.mpt-theme .mpt-scroll-top:hover,
body.mpt-theme .mpt-scroll-top:focus,
body.mpt-theme .mpt-scroll-top:focus-visible {
    color: var(--mpt-color-primary-dark);
    border-color: rgba(0, 185, 181, 0.45);
    box-shadow:
        0 14px 28px rgba(0, 40, 58, 0.2),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    outline: none;
    transform: translateY(-2px);
}

body.mpt-theme .mpt-scroll-top:focus-visible {
    outline: 2px solid var(--mpt-color-primary);
    outline-offset: 3px;
}

.mpt-scroll-top__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mpt-scroll-top__icon svg {
    display: block;
}

/* Floating WhatsApp chat CTA */
body.mpt-theme .mpt-chat-cta,
body.mpt-theme .mpt-chat-cta:link,
body.mpt-theme .mpt-chat-cta:visited {
    position: fixed;
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
    z-index: 1050;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 3rem;
    padding: 0.65rem 1.05rem 0.65rem 0.85rem;
    border: 0;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    font-family: var(--mpt-font-body);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1;
    text-decoration: none;
    box-shadow:
        0 10px 28px rgba(18, 140, 76, 0.32),
        0 2px 0 rgba(255, 255, 255, 0.18) inset;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        filter 0.22s ease,
        background-color 0.22s ease;
}

body.mpt-theme .mpt-chat-cta--whatsapp,
body.mpt-theme .mpt-chat-cta--whatsapp:link,
body.mpt-theme .mpt-chat-cta--whatsapp:visited {
    background: #25d366;
}

body.mpt-theme .mpt-chat-cta:hover,
body.mpt-theme .mpt-chat-cta:focus,
body.mpt-theme .mpt-chat-cta:focus-visible,
body.mpt-theme .mpt-chat-cta:active {
    color: #ffffff;
    text-decoration: none;
    background: #1ebe57;
    transform: translateY(-2px);
    box-shadow:
        0 14px 32px rgba(18, 140, 76, 0.4),
        0 2px 0 rgba(255, 255, 255, 0.2) inset;
    filter: none;
}

body.mpt-theme .mpt-chat-cta:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.mpt-chat-cta__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    flex-shrink: 0;
}

.mpt-chat-cta__icon svg {
    display: block;
    color: #ffffff;
    fill: currentColor;
}

.mpt-chat-cta__label {
    color: #ffffff;
    white-space: nowrap;
}

@media (max-width: 520px) {
    .mpt-chat-cta {
        min-height: 3.15rem;
        padding: 0.7rem 0.95rem;
        gap: 0.45rem;
        font-size: 0.88rem;
    }
}

@media (max-width: 640px) {
    body.mpt-theme .mpt-scroll-top {
        width: 3.25rem;
        height: 3.25rem;
        bottom: calc(max(1rem, env(safe-area-inset-bottom)) + 4.05rem);
    }

    body.mpt-theme .mpt-chat-cta,
    body.mpt-theme .mpt-chat-cta:link,
    body.mpt-theme .mpt-chat-cta:visited {
        z-index: 1050;
        width: 3.25rem;
        height: 3.25rem;
        min-height: 3.25rem;
        padding: 0;
        gap: 0;
        justify-content: center;
        border-radius: 999px;
    }

    .mpt-chat-cta__label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mpt-chat-cta,
    .mpt-scroll-top {
        transition: none;
    }

    .mpt-chat-cta:hover,
    .mpt-chat-cta:focus-visible,
    .mpt-scroll-top:hover,
    .mpt-scroll-top:focus-visible,
    .mpt-scroll-top.is-visible {
        transform: none;
    }
}

