:root {
    --mla-yellow: #fcd802;
    --mla-text: #1a1a1a;
    --mla-text-black: #000;
    --mla-gray: #888;
    --mla-light-gray: #f6f5f2;
    --mla-bg: #f6f5f2;
    --mla-white: #fff;
    --mla-nav-h: 110px;
    --mla-nav-h-mob: 64px;
    --mla-font: "Work Sans", sans-serif;
}

.mla-public-shell,
.mla-public-shell *,
.mla-mega,
.mla-mega *,
.mla-mob-panel,
.mla-mob-panel * {
    box-sizing: border-box;
}

.mla-public-shell {
    min-height: 100vh;
    color: var(--mla-text);
    background: #fff;
    font-family: var(--mla-font);
}

.mla-public-main {
    background: #fff;
}

.mla-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: var(--mla-white);
    border-bottom: 1px solid #e8e8e8;
}

.mla-nav__bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1280px;
    height: var(--mla-nav-h);
    margin: 0 auto;
}

.mla-nav__bar-mob {
    display: none;
    align-items: center;
    justify-content: space-between;
    height: var(--mla-nav-h-mob);
    padding: 0 20px;
}

.mla-nav__right-mob,
.mla-nav__right,
.mla-mega__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mla-nav__right,
.mla-mega__actions {
    justify-content: flex-end;
}

.mla-nav__left,
.mla-nav__logo {
    display: flex;
    align-items: center;
}

.mla-nav__logo {
    justify-content: center;
}

.mla-wordmark {
    display: inline-flex;
    align-items: center;
    color: var(--mla-text);
    text-decoration: none;
}

.mla-wordmark-img {
    width: auto;
    height: 44px;
    display: block;
}

.mla-wordmark-mobile-img {
    width: auto;
    height: 29px;
    display: block;
}

.mla-nav__grid-btn,
.mla-mega__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    color: var(--mla-text);
    background: #f6f5f2;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background .18s, color .18s, border-color .18s;
}

.mla-nav__grid-btn:hover {
    color: var(--mla-yellow);
    background: #1a1a1a;
}

.mla-nav__grid-btn:focus-visible {
    color: var(--mla-yellow);
    background: #171717 !important;
    outline: 3px solid rgba(252, 216, 2, .42);
    outline-offset: 3px;
}

.mla-mega__close {
    background: transparent;
    border: 1.5px solid #ccc;
}

.mla-mega__close:hover {
    background: #f5f5f5;
    border-color: #999;
}

.mla-nav__grid-btn .icon-grid {
    display: block;
}

.mla-nav__grid-btn .icon-close {
    display: none;
}

.mla-nav__grid-btn.is-open .icon-grid {
    display: none;
}

.mla-nav__grid-btn.is-open .icon-close {
    display: block;
}

.mla-btn-iscriviti {
    display: inline-flex;
    align-items: center;
    padding: 14px 23px;
    color: var(--mla-text);
    background: var(--mla-yellow);
    border-radius: 50px;
    font-size: .88rem;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
    transition: background .18s, transform .18s;
}

.mla-btn-iscriviti:hover {
    color: var(--mla-text);
    background: var(--mla-light-gray);
}

.mla-btn-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    color: var(--mla-text);
    background: #f6f5f2;
    border-radius: 50%;
    text-decoration: none;
    transition: background .18s;
}

.mla-btn-phone:hover {
    color: var(--mla-text);
    background: var(--mla-yellow);
}

.mla-mega {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}

.mla-mega.is-open {
    opacity: 1;
    pointer-events: auto;
}

.mla-mega__topbar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: var(--mla-nav-h);
    flex-shrink: 0;
    padding: 0 28px;
    background: var(--mla-white);
    border-bottom: 1px solid #e8e8e8;
}

.mla-mega__arrow {
    position: relative;
    height: 12px;
    flex-shrink: 0;
    background: rgba(0, 0, 0, .5);
}

.mla-mega__arrow::before {
    content: "";
    position: absolute;
    top: 0;
    left: var(--mega-arrow-x, calc(80px + 27vw));
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 12px solid var(--mla-bg);
    transform: translateX(-50%);
}

.mla-mega__panel {
    flex: 1;
    overflow-y: auto;
    background: rgba(0, 0, 0, .5);
}

.mla-mega__grid {
    display: grid;
    grid-template-columns: 300px 1fr 1fr 1fr;
    max-width: 1320px;
    margin: 0 auto;
    padding: 52px 40px 64px;
    background: var(--mla-bg);
    border-radius: 25px;
}

.mla-mega__promo {
    display: flex;
    flex-direction: column;
    margin-right: 40px;
    overflow: hidden;
    background: var(--mla-white);
    border-radius: 18px;
}

.mla-mega__promo-img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.mla-mega__promo-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 22px 26px;
}

.mla-mega__promo-title {
    margin: 0;
    color: var(--mla-text);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
}

.mla-mega__promo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    color: var(--mla-text);
    background: var(--mla-yellow);
    border-radius: 50px;
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
}

.mla-mega__promo-btn:hover {
    color: var(--mla-text);
    filter: brightness(.92);
}

.mla-mega__col {
    padding: 0 28px;
    border-left: 1px solid rgba(0, 0, 0, .09);
}

.mla-mega__col-title {
    margin: 0 0 22px;
    color: var(--mla-gray);
    font-size: .68rem;
    font-weight: 500;
    text-transform: uppercase;
}

.mla-mega__col ul,
.mla-footer__list,
.mla-mob-menu,
.mob-submenu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mla-mega__col a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 7px 10px;
    color: var(--mla-text);
    background: transparent;
    border-radius: 5px;
    text-decoration: none;
    transition: background .15s;
}

.mla-mega__col a:hover {
    color: var(--mla-text);
    background: var(--mla-yellow);
}

.mla-mega__col strong {
    display: block;
    color: var(--mla-text);
    font-size: .8rem;
    font-weight: 500;
    line-height: 1.25;
}

.mla-mega__col small {
    display: block;
    margin-top: 1px;
    color: var(--mla-gray);
    font-size: .76rem;
    font-weight: 400;
}

.mla-mega__col a > img {
    width: 21px;
    height: auto;
    opacity: 0;
    transition: opacity .2s ease;
}

.mla-mega__col a:hover > img {
    opacity: 1;
}

.mla-mob-panel {
    display: none;
}

.mla-footer {
    --ft-bg: #f6f5f2;
    --ft-surface: var(--mla-white);
    --ft-text: var(--mla-text);
    --ft-muted: var(--mla-gray);
    --ft-line: rgba(0, 0, 0, .10);
    --ft-accent: var(--mla-yellow);
    --ft-bottom-bg: var(--mla-white);
    color: var(--ft-text);
    font-family: var(--mla-font);
}

.mla-footer__main {
    margin: 25px;
    padding: 0;
    background-color: var(--ft-bg);
    background-image:
        radial-gradient(1000px 1000px at 0 20%, rgba(251, 219, 27, .25) 0, rgba(251, 219, 27, 0) 60%),
        radial-gradient(1000px 1000px at 50% 0, rgba(190, 180, 255, .45) 0, rgba(190, 180, 255, 0) 62%),
        radial-gradient(1000px 1000px at 83% 24%, rgba(255, 215, 185, .45) 0, rgba(255, 215, 185, 0) 62%),
        radial-gradient(1000px 1000px at 76% 59%, rgba(210, 235, 255, .99) 0, rgba(210, 235, 255, 0) 62%),
        radial-gradient(1000px 1000px at 20% 65%, rgba(190, 180, 255, .45) 0, rgba(190, 180, 255, 0) 62%);
    border: 1px solid #e5e5e5;
    border-radius: 24px;
    box-shadow: inset 0 0 150px #fff;
}

.mla-footer__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 69px 28px;
}

.mla-footer__logo {
    display: block;
    width: 110px;
    height: auto;
    margin-bottom: 22px;
}

.mla-footer__title {
    max-width: 600px;
    margin: 0 0 14px;
    color: #000;
    font-family: var(--mla-font);
    font-size: 58px;
    font-weight: 300;
    line-height: 60px;
    letter-spacing: 0;
}

.mla-footer__lead {
    max-width: 560px;
    margin: 0 0 26px;
    color: var(--ft-muted);
    font-size: .95rem;
    line-height: 1.5;
}

.mla-footer__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--mla-text);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.mla-footer__cta:hover {
    color: var(--mla-text);
}

.mla-footer__cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background: var(--ft-accent);
    border-radius: 50%;
    transition: transform .18s ease;
}

.mla-footer__cta svg {
    width: 16px;
    height: 16px;
    color: var(--mla-text);
}

.mla-footer__cta:hover .mla-footer__cta-icon {
    transform: translate(2px, -2px);
}

.mla-footer__cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 20px;
    margin-top: 56px;
}

.mla-footer__col {
    padding: 32px 28px;
    background: rgba(255, 255, 255, .2);
    border: .5px solid rgba(255, 255, 255, .2);
    border-radius: 24px;
}

.mla-footer__col-title {
    margin: 0 0 18px;
    color: var(--ft-muted);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mla-footer__col address {
    margin: 0;
    color: var(--ft-text);
    font-size: .9rem;
    font-style: normal;
    line-height: 1.6;
}

.mla-footer__col address + address {
    margin-top: 16px;
}

.mla-footer__col a {
    color: inherit;
    text-decoration: none;
}

.mla-footer__list li + li {
    margin-top: 9px;
}

.mla-footer__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--ft-text);
    font-size: .9rem;
    font-weight: 400;
    text-decoration: none;
    transition: color .15s ease;
}

.mla-footer__list a::after {
    content: "";
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: url("../images/mla-new/freccia.svg") center / contain no-repeat;
    opacity: 0;
    transition: opacity .15s ease;
}

.mla-footer__list a:hover {
    color: var(--ft-accent);
}

.mla-footer__list a:hover::after {
    opacity: 1;
}

.mla-footer__bottom {
    background: var(--ft-bottom-bg);
    border-top: 1px solid var(--ft-line);
}

.mla-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 28px;
}

.mla-footer__copy a,
.mla-footer__legal a {
    color: var(--ft-muted);
    font-size: .82rem;
    text-decoration: none;
}

.mla-footer__copy a:hover,
.mla-footer__legal a:hover {
    color: var(--ft-text);
}

.mla-footer__legal,
.mla-footer__social {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.mla-footer__social {
    gap: 16px;
}

.mla-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .18s;
}

.mla-footer__social a:hover {
    transform: translateY(-2px);
}

.mla-footer__social img {
    display: block;
    width: 22px;
    height: 22px;
}

@media (max-width: 980px) {
    .mla-mega__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 0;
        margin: 0 16px;
    }

    .mla-mega__promo {
        grid-column: 1 / -1;
        margin-right: 0;
    }

    .mla-footer__cols {
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
    }
}

@media (max-width: 767px) {
    .mla-nav__bar {
        display: none;
    }

    .mla-nav__bar-mob {
        display: flex;
    }

    .mla-btn-iscriviti {
        padding: 10px 22px;
        font-size: .85rem;
    }

    .mla-nav__grid-btn {
        background: #f0ede8;
    }

    .mla-nav__grid-btn:hover {
        color: var(--mla-yellow);
        background: #171717;
    }

    .mla-nav__grid-btn.is-open {
        color: #171717;
        background: #f0ede8 !important;
    }

    .mla-mega {
        display: none;
    }

    .mla-mob-panel {
        position: fixed;
        inset: var(--mla-nav-h-mob) 0 0;
        z-index: 998;
        display: flex;
        flex-direction: column;
        width: 100vw;
        background: var(--mla-bg);
        opacity: 0;
        pointer-events: none;
        transform: scaleY(0);
        transform-origin: top center;
        transition: opacity .3s ease, transform .3s ease;
    }

    .mla-mob-panel.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: scaleY(1);
    }

    .mla-mob-panel__body {
        display: flex;
        flex: 1;
        flex-direction: column;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mla-mob-panel__auth {
        padding: 20px;
    }

    .mla-mob-panel__auth:empty {
        display: none;
    }

    .mla-mob-panel__auth .mla-btn-iscriviti {
        justify-content: center;
        width: 100%;
        min-height: 52px;
        font-weight: 650;
    }

    .mla-mob-menu > li {
        border-bottom: 1px solid rgba(0, 0, 0, .08);
    }

    .mla-mob-menu > li > a,
    .mla-mob-menu > li > button.mob-toggle {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 18px 20px;
        color: var(--mla-text);
        background: transparent;
        border: none;
        font-family: var(--mla-font);
        text-align: left;
        text-decoration: none;
        cursor: pointer;
    }

    .mob-item-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .mob-item-title {
        color: var(--mla-text-black);
        font-size: .92rem;
        font-weight: 400;
        letter-spacing: .02em;
        line-height: 1.2;
        text-transform: uppercase;
    }

    .mob-item-desc {
        margin-top: 3px;
        color: var(--mla-text-black);
        font-size: .8rem;
        font-weight: 400;
    }

    .mob-arrow {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
        color: var(--mla-gray);
        transition: transform .22s ease;
    }

    .mob-toggle.is-open .mob-arrow {
        transform: rotate(180deg);
    }

    .mob-submenu {
        max-height: 0;
        overflow: hidden;
        background: rgba(255, 255, 255, .5);
        transition: max-height .3s ease;
    }

    .mob-submenu.is-open {
        max-height: 800px;
    }

    .mob-submenu li a {
        display: block;
        padding: 13px 20px 13px 32px;
        color: var(--mla-text);
        border-bottom: 1px solid rgba(0, 0, 0, .05);
        font-size: .88rem;
        font-weight: 500;
        text-decoration: none;
    }

    .mla-footer__inner {
        padding: 48px 20px;
    }

    .mla-footer__main {
        margin: 16px;
    }

    .mla-footer__cols {
        grid-template-columns: 1fr;
        gap: 36px;
        margin-top: 40px;
    }

    .mla-footer__title {
        font-size: 34px;
        line-height: 1.1;
    }

    .mla-footer__bottom {
        background: transparent;
    }

    .mla-footer__bottom-inner {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding-top: 30px;
        padding-bottom: 34px;
        text-align: center;
    }

    .mla-footer__legal {
        justify-content: center;
    }

    .mla-footer__social {
        gap: 30px;
    }
}
