/* =========================================================
LOCATION PAGE
========================================================= */

.akv-location-page{

    position:relative;

    background:#f6f1ea;

    padding-bottom:120px;
}

/* =========================================================
HERO
========================================================= */

.akv-location-hero{

    position:relative;

    min-height:760px;

    overflow:hidden;

    padding-bottom:120px;
}

.akv-location-background{

    position:absolute;

    inset:0;

    z-index:1;
}

.akv-location-background img{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

.akv-location-overlay{

    position:absolute;

    inset:0;

    z-index:2;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.28),
            rgba(0,0,0,.72)
        );
}

.akv-location-hero .akv-container{

    position:relative;

    z-index:10;
}

.akv-location-hero-content{

    max-width:760px;

    padding-top:240px;

    color:#ffffff;
}

/* =========================================================
LABEL
========================================================= */

.akv-location-label{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-height:42px;

    padding:0 18px;

    margin-bottom:24px;

    border-radius:999px;

    background:
        rgba(255,255,255,.12);

    border:
        1px solid rgba(255,255,255,.16);

    backdrop-filter:blur(14px);

    color:#ffffff;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;
}

/* =========================================================
TITLE
========================================================= */

.akv-location-title{

    font-size:72px;

    line-height:1;

    letter-spacing:-4px;

    margin-bottom:24px;

    color:#ffffff;
}

/* =========================================================
SUBTITLE
========================================================= */

.akv-location-subtitle{

    max-width:680px;

    color:
        rgba(255,255,255,.82);

    font-size:18px;

    line-height:1.9;

    margin-bottom:42px;
}

/* =========================================================
STATS
========================================================= */

.akv-location-stats{

    display:flex;

    flex-wrap:wrap;

    gap:18px;
}

.akv-location-stat{

    min-width:180px;

    padding:22px;

    border-radius:24px;

    background:
        rgba(255,255,255,.12);

    border:
        1px solid rgba(255,255,255,.16);

    backdrop-filter:blur(14px);
}

.akv-location-stat strong{

    display:block;

    margin-bottom:8px;

    color:#ffffff;

    font-size:34px;

    font-weight:800;
}

.akv-location-stat span{

    color:
        rgba(255,255,255,.74);

    font-size:14px;
}

/* =========================================================
SECTION
========================================================= */

.akv-location-section{

    position:relative;

    z-index:20;

    padding-top:80px;
}

/* =========================================================
RESULT HEADER
========================================================= */

.akv-result-header{

    display:flex;

    align-items:end;

    justify-content:space-between;

    gap:30px;

    margin-bottom:40px;
}

.akv-result-left{

    display:flex;

    flex-direction:column;
}

.akv-result-right{

    max-width:460px;
}

.akv-result-label{

    display:inline-block;

    margin-bottom:12px;

    color:#9a7a46;

    font-size:12px;

    font-weight:800;

    letter-spacing:3px;
}

.akv-result-header h2{

    margin:0;

    color:#111827;

    font-size:48px;

    line-height:1.05;

    letter-spacing:-2px;
}

.akv-result-header p{

    margin:0;

    color:#6b7280;

    line-height:1.9;
}

/* =========================================================
RESULT META
========================================================= */

.akv-result-meta{

    display:flex;

    align-items:center;

    flex-wrap:wrap;

    gap:14px;

    margin-top:18px;
}

.akv-result-count{

    display:flex;

    align-items:center;

    justify-content:center;

    height:42px;

    padding:0 18px;

    border-radius:999px;

    background:#111827;

    color:#ffffff;

    font-size:13px;

    font-weight:700;
}

.akv-active-filter{

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:42px;

    padding:0 18px;

    border-radius:999px;

    background:
        rgba(198,165,107,0.12);

    color:#9a7a46;

    font-size:13px;

    font-weight:700;
}

/* =========================================================
GRID
========================================================= */

.akv-location-grid{

    display:grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap:32px;
}

/* =========================================================
EMPTY STATE
========================================================= */

.akv-empty-state{

    grid-column:1/-1;

    padding:
        80px
        30px;

    border-radius:32px;

    background:#ffffff;

    text-align:center;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.06);
}

.akv-empty-state h3{

    margin:
        0
        0
        14px;

    color:#111827;

    font-size:32px;
}

.akv-empty-state p{

    margin:0;

    color:#6b7280;

    line-height:1.8;
}

/* =========================================================
TABLET
========================================================= */

@media(max-width:1200px){

    .akv-location-title{

        font-size:56px;

        letter-spacing:-3px;
    }

    .akv-location-grid{

        grid-template-columns:
            repeat(2,minmax(0,1fr));
    }

}

/* =========================================================
MOBILE
========================================================= */

@media(max-width:768px){

    .akv-location-page{

        padding-bottom:70px;
    }

    .akv-location-hero{

        min-height:680px;

        padding-bottom:70px;
    }

    .akv-location-hero-content{

        padding-top:170px;
    }

    .akv-location-title{

        font-size:42px;

        line-height:1.05;

        letter-spacing:-2px;
    }

    .akv-location-subtitle{

        font-size:16px;
    }

    .akv-location-stats{

        gap:12px;
    }

    .akv-location-stat{

        min-width:140px;

        padding:18px;
    }

    .akv-location-stat strong{

        font-size:26px;
    }

    /* =====================================================
    RESULT HEADER
    ====================================================== */

    .akv-result-header{

        flex-direction:column;

        align-items:start;

        margin-bottom:28px;
    }

    .akv-result-header h2{

        font-size:34px;

        line-height:1.12;
    }

    .akv-result-header p{

        max-width:100%;

        font-size:14px;
    }

    .akv-result-meta{

        gap:10px;
    }

    .akv-result-count,
    .akv-active-filter{

        width:100%;

        justify-content:flex-start;

        padding:
            0
            16px;
    }

    /* =====================================================
    GRID
    ====================================================== */

    .akv-location-grid{

        grid-template-columns:1fr;

        gap:20px;
    }

}