/*
 * KTFM Home — Global Locations V4
 *
 * CLEAN REBUILD.
 * Uses unique class names so legacy .locations / .locations__*
 * rules cannot affect this section.
 */

.home-global-locations {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(78px, 7vw, 112px) 0;
    color: #fff;
    background:
        radial-gradient(circle at 8% 12%, rgba(222,176,88,.14), transparent 28rem),
        radial-gradient(circle at 92% 16%, rgba(255,255,255,.06), transparent 26rem),
        linear-gradient(135deg, #071a30 0%, #0b2d4c 58%, #113d60 100%);
}

.home-global-locations::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .18;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
    background-size: 72px 72px;
}

.home-global-locations__glow {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.home-global-locations__glow--one {
    width: 34rem;
    height: 34rem;
    top: -23rem;
    right: -8rem;
    background: radial-gradient(circle, rgba(222,176,88,.23), transparent 70%);
}

.home-global-locations__glow--two {
    width: 38rem;
    height: 38rem;
    bottom: -29rem;
    left: -12rem;
    background: radial-gradient(circle, rgba(73,143,194,.23), transparent 72%);
}

.home-global-locations__intro {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .62fr);
    gap: clamp(34px, 7vw, 100px);
    align-items: end;
}

.home-global-locations__intro h2 {
    max-width: 680px;
    margin: 10px 0 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.4rem, 6vw, 6.2rem);
    font-weight: 400;
    letter-spacing: -.05em;
    line-height: .91;
}

.home-global-locations__intro h2 em {
    display: block;
    color: #e2b45f;
    font-weight: 400;
}

.home-global-locations__intro > p {
    max-width: 520px;
    margin: 0 0 7px;
    color: rgba(255,255,255,.7);
    font-size: clamp(.96rem, 1.2vw, 1.1rem);
    line-height: 1.8;
}

.home-global-locations__body {
    display: grid;
    grid-template-columns: minmax(330px, .72fr) minmax(0, 1.28fr);
    gap: clamp(50px, 8vw, 112px);
    align-items: center;
    margin-top: clamp(44px, 5vw, 70px);
}

.home-global-locations__visual {
    position: relative;
    width: min(100%, 500px);
    justify-self: center;
}

.home-global-locations__visual::after {
    content: "";
    position: absolute;
    inset: 7% -5% -4% 8%;
    z-index: -1;
    border: 1px solid rgba(226,180,94,.28);
    border-radius: 220px 220px 34px 34px;
}

.home-global-locations__image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 220px 220px 34px 34px;
    box-shadow:
        0 38px 85px rgba(0,0,0,.28),
        0 0 0 1px rgba(255,255,255,.09);
}

.home-global-locations__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-global-locations__seal {
    position: absolute;
    right: -10px;
    bottom: 26px;
    display: grid;
    place-items: center;
    width: 142px;
    height: 142px;
    padding: 16px;
    border: 1px solid rgba(226,180,94,.5);
    border-radius: 50%;
    background: rgba(5,24,44,.96);
    text-align: center;
    box-shadow: 0 20px 48px rgba(0,0,0,.27);
}

.home-global-locations__seal strong {
    display: block;
    color: #e2b45f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.32rem;
    font-weight: 400;
}

.home-global-locations__seal span {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,.66);
    font-size: .55rem;
    line-height: 1.35;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.home-global-locations__directory {
    display: grid;
    gap: 11px;
}

.home-global-locations__row {
    display: grid;
    grid-template-columns: 112px minmax(0,1fr) 44px 20px;
    gap: 18px;
    align-items: center;
    min-height: 94px;
    padding: 16px 20px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
    text-decoration: none;
    box-shadow: 0 13px 34px rgba(0,0,0,.07);
    transition:
        transform .22s ease,
        border-color .22s ease,
        background .22s ease,
        box-shadow .22s ease;
}

.home-global-locations__row:hover,
.home-global-locations__row:focus-visible {
    transform: translateX(7px);
    border-color: rgba(226,180,94,.4);
    background:
        linear-gradient(90deg, rgba(226,180,94,.15), rgba(255,255,255,.03));
    box-shadow: 0 18px 42px rgba(0,0,0,.14);
}

.home-global-locations__country {
    color: #e2b45f;
    font-size: .64rem;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.home-global-locations__row strong {
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.16rem, 1.65vw, 1.62rem);
    font-weight: 400;
    line-height: 1.12;
}

.home-global-locations__row small {
    color: rgba(255,255,255,.48);
    font-size: .64rem;
    font-weight: 750;
    text-align: right;
    text-transform: uppercase;
}

.home-global-locations__row i {
    color: #e2b45f;
    font-size: 1rem;
    font-style: normal;
    transition: transform .2s ease;
}

.home-global-locations__row:hover i,
.home-global-locations__row:focus-visible i {
    transform: translateX(4px);
}

.home-global-locations__row--online {
    border-color: rgba(226,180,94,.25);
    background:
        linear-gradient(90deg, rgba(226,180,94,.13), rgba(255,255,255,.03));
}

.home-global-locations__actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

.home-global-locations__actions .button {
    min-height: 50px;
    padding-inline: 26px;
}

.home-global-locations__visit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 23px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.035);
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .065em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        background .2s ease,
        border-color .2s ease,
        transform .2s ease;
}

.home-global-locations__visit:hover,
.home-global-locations__visit:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(226,180,94,.55);
    background: rgba(226,180,94,.08);
}

@media (max-width: 980px) {
    .home-global-locations__intro,
    .home-global-locations__body {
        grid-template-columns: 1fr;
    }

    .home-global-locations__intro > p {
        max-width: 680px;
    }

    .home-global-locations__visual {
        width: min(100%, 560px);
        justify-self: start;
    }
}

@media (max-width: 680px) {
    .home-global-locations {
        padding: 62px 0 72px;
    }

    .home-global-locations__intro h2 {
        font-size: clamp(3.1rem, 15vw, 5rem);
    }

    .home-global-locations__body {
        gap: 38px;
        margin-top: 38px;
    }

    .home-global-locations__image {
        border-radius: 150px 150px 28px 28px;
    }

    .home-global-locations__seal {
        right: 12px;
        bottom: 18px;
        width: 116px;
        height: 116px;
    }

    .home-global-locations__row {
        grid-template-columns: 1fr 42px 18px;
        gap: 7px 12px;
        min-height: 0;
        padding: 17px;
    }

    .home-global-locations__country {
        grid-column: 1 / 2;
    }

    .home-global-locations__row strong {
        grid-column: 1 / 2;
        font-size: 1.35rem;
    }

    .home-global-locations__row small {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
        align-self: center;
    }

    .home-global-locations__row i {
        grid-column: 3 / 4;
        grid-row: 1 / 3;
        align-self: center;
    }

    .home-global-locations__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .home-global-locations__actions > * {
        width: 100%;
    }
}
