/* =====================================================
   LOCATIONS INTRO
===================================================== */
/* =====================================================
   GLOBAL PARAGRAPH LINKS
===================================================== */

p a {
    color: inherit !important;
    text-decoration: none !important;
    font-weight: 600;
}

p a:hover,
p a:focus {
    color: inherit !important;
    text-decoration: none !important;
}
.locations-intro {

    position: relative;

    padding: 70px 20px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(105, 8, 32, .14),
            transparent 40%
        ),
        linear-gradient(
            135deg,
            #090909 0%,
            #15080d 52%,
            #090908 100%
        );

    overflow: hidden;
}


.locations-intro-content {

    max-width: 850px;

    margin: 0 auto;

    text-align: center;
}


/* =====================================================
   LABEL
===================================================== */

.locations-intro .section-label {

    display: block;

    margin-bottom: 13px;

    color: #d4af37;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* =====================================================
   HEADING
===================================================== */

.locations-intro h2 {

    margin: 0 0 21px;

    color: #f3e8dc;

    font-family: "Cinzel", serif;

    font-size: clamp(30px, 4vw, 42px);

    font-weight: 600;

    line-height: 1.3;
}


.locations-intro h2 span {

    color: #d4af37;

    font-style: italic;
}


/* =====================================================
   PARAGRAPHS
===================================================== */

.locations-intro p {

    max-width: 820px;

    margin: 0 auto 15px;

    color: #9d9491;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    font-weight: 400;

    line-height: 1.9;
}


.locations-intro p:last-child {

    margin-bottom: 0;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .locations-intro {

        padding: 55px 16px;
    }


    .locations-intro .section-label {

        font-size: 8px;

        letter-spacing: 2.5px;
    }


    .locations-intro h2 {

        font-size: 29px;

        line-height: 1.35;

        margin-bottom: 17px;
    }


    .locations-intro p {

        font-size: 14px;

        line-height: 1.8;

        margin-bottom: 13px;
    }

}

/* =====================================================
   LOCATIONS LIST
===================================================== */

.locations-list {

    padding: 75px 20px;

    background:
        linear-gradient(
            135deg,
            #090909 0%,
            #15080d 52%,
            #090908 100%
        );
}


/* =====================================================
   HEADING
===================================================== */

.locations-heading {

    max-width: 700px;

    margin: 0 auto 40px;

    text-align: center;
}


.locations-heading .section-label {

    display: block;

    margin-bottom: 12px;

    color: #d4af37;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.locations-heading h2 {

    margin: 0;

    color: #f3e8dc;

    font-family: "Cinzel", serif;

    font-size: 40px;

    font-weight: 600;

    line-height: 1.3;
}


.locations-heading h2 span {

    color: #d4af37;

    font-style: italic;
}


/* =====================================================
   GRID
===================================================== */

.locations-grid {

    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 14px;
}


/* =====================================================
   LOCATION CARD
===================================================== */

.location-card {

    min-width: 0;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 17px 16px;

    border: 1px solid rgba(212,175,55,.12);

    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.025),
            rgba(65,8,22,.18)
        );

    text-decoration: none;

    transition:
        transform .3s ease,
        border-color .3s ease,
        background .3s ease;
}


.location-card:hover {

    transform: translateY(-3px);

    border-color: rgba(212,175,55,.30);

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(65,8,22,.28)
        );
}


/* =====================================================
   ICON
===================================================== */

.location-icon {

    width: 39px;

    height: 39px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(212,175,55,.18);

    border-radius: 10px;

    color: #d4af37;

    background: rgba(212,175,55,.035);

    font-size: 12px;
}


/* =====================================================
   INFO
===================================================== */

.location-info {

    min-width: 0;

    flex: 1;
}


.location-info span {

    display: block;

    margin-bottom: 2px;

    color: #806d43;

    font-family: "Poppins", sans-serif;

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 1px;
}


.location-info h3 {

    margin: 0 0 3px;

    color: #e9ded4;

    font-family: "Cinzel", serif;

    font-size: 16px;

    font-weight: 600;

    line-height: 1.3;
}


.location-info p {

    margin: 0;

    color: #817976;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    line-height: 1.5;
}


/* =====================================================
   ARROW
===================================================== */

.location-arrow {

    flex-shrink: 0;

    color: #806d43;

    font-size: 10px;

    transition:
        color .25s ease,
        transform .25s ease;
}


.location-card:hover .location-arrow {

    color: #d4af37;

    transform: translateX(3px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .locations-grid {

        grid-template-columns: repeat(2, 1fr);

        max-width: 760px;
    }

}


/* =====================================================
   MOBILE — 2 COLUMNS
===================================================== */

@media (max-width: 600px) {

    .locations-list {

        padding: 55px 12px;
    }


    .locations-heading {

        margin-bottom: 28px;
    }


    .locations-heading h2 {

        font-size: 28px;
    }


    .locations-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 9px;

        max-width: 100%;
    }


    .location-card {

        gap: 9px;

        padding: 12px 9px;

        border-radius: 10px;
    }


    .location-icon {

        width: 31px;

        height: 31px;

        border-radius: 8px;

        font-size: 10px;
    }


    .location-info span {

        font-size: 6px;

        letter-spacing: .6px;
    }


    .location-info h3 {

        font-size: 13px;

        margin-bottom: 2px;
    }


    .location-info p {

        font-size: 8px;

        line-height: 1.4;
    }


    .location-arrow {

        font-size: 8px;
    }

}

/* =====================================================
   SIMILAR PROFILES
===================================================== */

.similar-profiles {

    padding: 70px 20px;

    background:
        linear-gradient(
            135deg,
            #090909 0%,
            #15080d 50%,
            #090909 100%
        );
}


.similar-profiles .container {

    max-width: 1100px;

    margin: 0 auto;
}


/* =====================================================
   HEADING
===================================================== */

.similar-heading {

    max-width: 700px;

    margin: 0 auto 35px;

    text-align: center;
}


.similar-heading .profile-section-label {

    display: block;

    margin-bottom: 10px;

    color: #d4af37;

    font-family: "Poppins", sans-serif;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}


.similar-heading h2 {

    margin: 0 0 12px;

    color: #f2e7dc;

    font-family: "Cinzel", serif;

    font-size: 36px;

    font-weight: 600;

    line-height: 1.3;
}


.similar-heading h2 span {

    color: #d4af37;

    font-style: italic;
}


.similar-heading p {

    margin: 0;

    color: #918985;

    font-family: "Poppins", sans-serif;

    font-size: 16px;

    line-height: 1.8;
}


/* =====================================================
   GRID
===================================================== */

.similar-profiles-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 16px;
}


/* =====================================================
   CARD
===================================================== */

.similar-card {

    overflow: hidden;

    border: 1px solid rgba(212,175,55,.12);

    border-radius: 14px;

    background: rgba(255,255,255,.018);

    transition:
        transform .3s ease,
        border-color .3s ease;
}


.similar-card:hover {

    transform: translateY(-4px);

    border-color: rgba(212,175,55,.30);
}


/* =====================================================
   IMAGE
===================================================== */

.similar-image {

    width: 100%;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #12090d;
}


.similar-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .45s ease;
}


.similar-card:hover .similar-image img {

    transform: scale(1.04);
}


/* =====================================================
   CONTENT
===================================================== */

.similar-content {

    padding: 16px 15px 15px;
}


.similar-content > span {

    display: block;

    margin-bottom: 6px;

    color: #9b7830;

    font-family: "Poppins", sans-serif;

    font-size: 7px;

    font-weight: 600;

    letter-spacing: 1px;
}


.similar-content h3 {

    margin: 0 0 10px;

    color: #e9ded4;

    font-family: "Cinzel", serif;

    font-size: 18px;

    font-weight: 600;
}


.similar-content a {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #d4af37;

    font-family: "Poppins", sans-serif;

    font-size: 10px;

    font-weight: 600;

    text-decoration: none;
}


.similar-content a i {

    font-size: 9px;

    transition: transform .25s ease;
}


.similar-content a:hover i {

    transform: translateX(4px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .similar-profiles-grid {

        grid-template-columns: repeat(2, 1fr);

        max-width: 700px;

        margin: 0 auto;
    }

}


/* =====================================================
   MOBILE — 2 × 2
===================================================== */

@media (max-width: 600px) {

    .similar-profiles {

        padding: 55px 12px;
    }


    .similar-heading {

        margin-bottom: 27px;
    }


    .similar-heading h2 {

        font-size: 28px;
    }


    .similar-heading p {

        font-size: 14px;
    }


    .similar-profiles-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 10px;
    }


    .similar-card {

        border-radius: 11px;
    }


    .similar-content {

        padding: 12px 10px;
    }


    .similar-content > span {

        font-size: 6px;

        letter-spacing: .5px;
    }


    .similar-content h3 {

        font-size: 14px;

        margin-bottom: 8px;
    }


    .similar-content a {

        font-size: 9px;
    }

}