/*
|--------------------------------------------------------------------------
| ROOT
|--------------------------------------------------------------------------
*/

:root{
    --mp-bg:#09090c;
    --mp-bg-soft:#111116;
    --mp-card:rgba(255,255,255,.04);
    --mp-card-2:rgba(255,255,255,.06);
    --mp-border:rgba(255,255,255,.08);

    --mp-text:#ffffff;
    --mp-muted:#a7a7b3;

    --mp-accent:#c9a96a;
    --mp-accent-soft:#d8bc88;

    --mp-radius:32px;
    --mp-radius-sm:20px;

    --mp-shadow:
        0 20px 60px rgba(0,0,0,.35);
}

/*
|--------------------------------------------------------------------------
| RESET
|--------------------------------------------------------------------------
*/

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    padding:0;
    background:
        radial-gradient(
            circle at top right,
            rgba(201,169,106,.12),
            transparent 40%
        ),
        var(--mp-bg);

    color:var(--mp-text);

    font-family:
        Inter,
        system-ui,
        sans-serif;

    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    color:inherit;
    text-decoration:none;
}

button,
input,
textarea,
select{
    font:inherit;
}

/*
|--------------------------------------------------------------------------
| LAYOUT
|--------------------------------------------------------------------------
*/

.mp-shell{
    width:min(1320px,calc(100% - 40px));
    margin-inline:auto;
}

.mp-section{
    padding:90px 0;
}

.mp-section-head{
    max-width:760px;
    margin-bottom:48px;
}

.mp-section-head h2{
    font-size:clamp(36px,5vw,64px);
    line-height:1;
    margin:16px 0;
    font-family:
        "Playfair Display",
        Georgia,
        serif;
}

.mp-section-head p{
    color:var(--mp-muted);
    line-height:1.8;
    font-size:17px;
}

/*
|--------------------------------------------------------------------------
| TYPOGRAPHY
|--------------------------------------------------------------------------
*/

.mp-kicker{
    display:inline-flex;
    align-items:center;
    gap:8px;

    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:2px;

    color:var(--mp-accent-soft);
}

.mp-kicker::before{
    content:'';
    width:36px;
    height:1px;
    background:var(--mp-accent-soft);
}

/*
|--------------------------------------------------------------------------
| BUTTONS
|--------------------------------------------------------------------------
*/

.mp-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    min-height:56px;
    padding:0 28px;

    border-radius:999px;
    border:none;
    cursor:pointer;

    transition:.3s ease;
    font-weight:700;
}

.mp-btn:hover{
    transform:translateY(-2px);
}

.mp-btn-primary{
    background:var(--mp-accent);
    color:#111;
}

.mp-btn-outline{
    background:transparent;
    border:1px solid rgba(255,255,255,.14);
    color:#fff;
}

/*
|--------------------------------------------------------------------------
| HEADER
|--------------------------------------------------------------------------
*/

.mp-header{
    position:fixed;
    inset:20px 0 auto;
    z-index:999;
}

.mp-header-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;

    min-height:76px;
    padding:0 24px;

    border-radius:999px;

    background:
        rgba(10,10,14,.72);

    border:1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(30px);
}

.mp-brand{
    display:flex;
    align-items:center;
    gap:14px;
}

.mp-brand-badge{
    width:48px;
    height:48px;
    border-radius:50%;

    display:grid;
    place-items:center;

    background:
        linear-gradient(
            135deg,
            var(--mp-accent),
            #e2c58d
        );

    color:#111;
    font-weight:900;
}

.mp-brand-text strong{
    display:block;
    font-size:18px;
}

.mp-brand-text span{
    color:var(--mp-muted);
    font-size:13px;
}

.mp-nav{
    display:flex;
    gap:28px;
}

.mp-nav a{
    color:var(--mp-muted);
    transition:.25s ease;
}

.mp-nav a:hover{
    color:#fff;
}

/*
|--------------------------------------------------------------------------
| HERO
|--------------------------------------------------------------------------
*/

.mp-hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.mp-hero-video{
    position:absolute;
    inset:0;
    z-index:-2;
}

.mp-hero-video video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.mp-hero-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to bottom,
            rgba(8,8,10,.35),
            rgba(8,8,10,.88)
        );

    z-index:-1;
}

.mp-hero-content{
    max-width:860px;
}

.mp-hero-content h1{
    font-size:clamp(30px,8vw,60px);
    line-height:.92;
    margin:24px 0;

    font-family:
        "Playfair Display",
        Georgia,
        serif;
}

.mp-hero-content p{
    max-width:700px;
    font-size:18px;
    line-height:1.9;
    color:#d2d2da;
}

.mp-hero-actions{
    display:flex;
    gap:18px;
    margin-top:36px;
    flex-wrap:wrap;
}

/*
|--------------------------------------------------------------------------
| CARD
|--------------------------------------------------------------------------
*/

.mp-card{
    background:var(--mp-card);
    border:1px solid var(--mp-border);
    border-radius:var(--mp-radius);
    backdrop-filter:blur(20px);
}

/*
|--------------------------------------------------------------------------
| ERROR PAGE
|--------------------------------------------------------------------------
*/

.mp-error-page{
    min-height:100vh;
    display:grid;
    place-items:center;
    padding:40px;
}

.mp-error-card{
    width:min(560px,100%);
    padding:60px;
    text-align:center;

    border-radius:40px;

    background:var(--mp-card);
    border:1px solid var(--mp-border);

    backdrop-filter:blur(20px);
}

.mp-error-card span{
    font-size:90px;
    font-weight:900;
    color:var(--mp-accent-soft);
}

.mp-error-card h1{
    margin:12px 0 18px;
    font-size:52px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;
}

.mp-error-card p{
    color:var(--mp-muted);
    line-height:1.8;
    margin-bottom:30px;
}

/*
|--------------------------------------------------------------------------
| MOBILE
|--------------------------------------------------------------------------
*/

@media(max-width:900px){

    .mp-nav{
        display:none;
    }

    .mp-section{
        padding:70px 0;
    }

    .mp-header{
        inset:14px 0 auto;
    }

    .mp-header-wrap{
        min-height:68px;
        padding:0 18px;
    }

    .mp-hero-content h1{
        line-height:1;
    }

    .mp-hero-actions{
        flex-direction:column;
    }

    .mp-btn{
        width:100%;
    }

    .mp-error-card{
        padding:40px 26px;
    }

    .mp-error-card h1{
        font-size:38px;
    }

}

.mp-city-grid,
.mp-profile-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.mp-city-card{
    padding:28px;
    min-height:220px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    transition:.3s ease;
}

.mp-city-card:hover,
.mp-profile-card:hover{
    transform:translateY(-6px);
}

.mp-city-card span{
    color:var(--mp-accent-soft);
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1.5px;
    font-weight:900;
}

.mp-city-card h3{
    font-family:Georgia,serif;
    font-size:32px;
    margin:12px 0;
}

.mp-city-card p{
    color:var(--mp-muted);
}

.mp-profile-card{
    overflow:hidden;
    transition:.3s ease;
}

.mp-profile-media{
    position:relative;
    aspect-ratio:3/4;
    background:#111;
    overflow:hidden;
}

.mp-profile-media img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.mp-profile-media span{
    position:absolute;
    top:16px;
    left:16px;
    padding:8px 12px;
    border-radius:999px;
    background:rgba(0,0,0,.62);
    color:#fff;
    font-size:12px;
    font-weight:900;
}

.mp-profile-body{
    padding:22px;
}

.mp-profile-body small{
    color:var(--mp-accent-soft);
    font-weight:800;
}

.mp-profile-body h3{
    font-family:Georgia,serif;
    font-size:28px;
    margin:10px 0;
}

.mp-profile-body p{
    color:var(--mp-muted);
}

.mp-editorial-grid{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:50px;
}

.mp-editorial-grid h2{
    font-family:Georgia,serif;
    font-size:clamp(40px,5vw,72px);
    line-height:1;
    margin:16px 0;
}

.mp-editorial-grid p{
    color:var(--mp-muted);
    line-height:1.9;
    font-size:18px;
}

.mp-footer{
    padding:70px 0;
    border-top:1px solid var(--mp-border);
    background:#07070a;
}

.mp-footer-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:40px;
}

.mp-footer h3,
.mp-footer h4{
    font-family:Georgia,serif;
}

.mp-footer p,
.mp-footer a{
    color:var(--mp-muted);
}

.mp-footer a{
    display:block;
    margin:10px 0;
}

.mp-empty{
    padding:34px;
}

.mp-image-placeholder{
    width:100%;
    height:100%;
    display:grid;
    place-items:center;
    font-size:80px;
    font-family:Georgia,serif;
    background:linear-gradient(135deg,#17171d,#0c0c10);
    color:var(--mp-accent-soft);
}

@media(max-width:1100px){
    .mp-city-grid,
    .mp-profile-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:760px){
    .mp-city-grid,
    .mp-profile-grid,
    .mp-editorial-grid,
    .mp-footer-grid{
        grid-template-columns:1fr;
    }
}

.mp-admin-login{
    min-height:100vh;
    display:grid;
    place-items:center;
    padding:30px;
}

.mp-admin-login-card{
    width:min(460px,100%);
    padding:42px;
    border-radius:34px;
    background:var(--mp-card);
    border:1px solid var(--mp-border);
    backdrop-filter:blur(24px);
    box-shadow:var(--mp-shadow);
}

.mp-admin-login-card h1{
    font-family:Georgia,serif;
    font-size:46px;
    margin:18px 0 10px;
}

.mp-admin-login-card p{
    color:var(--mp-muted);
    line-height:1.7;
    margin-bottom:26px;
}

.mp-admin-login-card label{
    display:block;
    margin:16px 0 8px;
    color:var(--mp-accent-soft);
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1.4px;
}

.mp-admin-login-card input{
    width:100%;
    padding:16px;
    border-radius:18px;
    border:1px solid var(--mp-border);
    background:rgba(255,255,255,.04);
    color:var(--mp-text);
    outline:none;
}

.mp-admin-login-card button{
    margin-top:24px;
    width:100%;
}

.mp-admin-error{
    padding:14px 16px;
    border-radius:16px;
    background:rgba(255,70,70,.12);
    border:1px solid rgba(255,70,70,.25);
    color:#ffb3b3;
    margin:18px 0;
}

/*
|--------------------------------------------------------------------------
| ADMIN LAYOUT
|--------------------------------------------------------------------------
*/

.mp-admin-layout{
    display:grid;
    grid-template-columns:320px 1fr;
    min-height:100vh;
}

.mp-admin-sidebar{
    position:sticky;
    top:0;
    height:100vh;
    padding:30px;
    border-right:1px solid var(--mp-border);
    background:#08080b;
}

.mp-admin-logo{
    display:flex;
    gap:18px;
    align-items:center;
    margin-bottom:40px;
}

.mp-admin-logo strong{
    display:block;
}

.mp-admin-logo span{
    color:var(--mp-muted);
    font-size:13px;
}

.mp-admin-nav{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.mp-admin-nav a{
    padding:16px 20px;
    border-radius:18px;
    background:rgba(255,255,255,.03);
    border:1px solid transparent;
    transition:.25s ease;
}

.mp-admin-nav a:hover{
    border-color:var(--mp-border);
    background:rgba(255,255,255,.05);
}

.mp-admin-main{
    padding:50px;
}

.mp-admin-header h1{
    font-size:56px;
    margin:16px 0;
    font-family:Georgia,serif;
}

.mp-admin-header p{
    color:var(--mp-muted);
}

.mp-admin-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin:40px 0;
}

.mp-admin-stat-card{
    padding:28px;
    border-radius:28px;
    background:var(--mp-card);
    border:1px solid var(--mp-border);
}

.mp-admin-stat-card small{
    color:var(--mp-muted);
}

.mp-admin-stat-card strong{
    display:block;
    margin-top:12px;
    font-size:42px;
    font-family:Georgia,serif;
}

.mp-admin-card{
    padding:30px;
    border-radius:32px;
    background:var(--mp-card);
    border:1px solid var(--mp-border);
}

.mp-admin-card-head{
    margin-bottom:24px;
}

.mp-admin-card-head h2{
    font-size:42px;
    font-family:Georgia,serif;
    margin:12px 0;
}

.mp-admin-table{
    width:100%;
    border-collapse:collapse;
}

.mp-admin-table th{
    text-align:left;
    color:var(--mp-accent-soft);
    padding:18px 12px;
}

.mp-admin-table td{
    padding:18px 12px;
    border-top:1px solid rgba(255,255,255,.06);
    color:var(--mp-muted);
}

@media(max-width:980px){

    .mp-admin-layout{
        grid-template-columns:1fr;
    }

    .mp-admin-sidebar{
        position:relative;
        height:auto;
    }

    .mp-admin-main{
        padding:30px;
    }

    .mp-admin-stats{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:640px){

    .mp-admin-stats{
        grid-template-columns:1fr;
    }

    .mp-admin-header h1{
        font-size:42px;
    }
}

.mp-admin-success{
    padding:16px 18px;
    border-radius:18px;
    background:rgba(46,204,113,.12);
    border:1px solid rgba(46,204,113,.28);
    color:#9ff0bd;
    margin:24px 0;
}

.mp-admin-form label{
    display:block;
    margin:18px 0 8px;
    color:var(--mp-accent-soft);
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1.3px;
}

.mp-admin-form input,
.mp-admin-form textarea,
.mp-admin-form select{
    width:100%;
    padding:15px 16px;
    border-radius:16px;
    border:1px solid var(--mp-border);
    background:rgba(255,255,255,.04);
    color:var(--mp-text);
    outline:none;
}

.mp-admin-form textarea{
    resize:vertical;
}

.mp-admin-grid-2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.mp-admin-divider{
    height:1px;
    background:var(--mp-border);
    margin:34px 0;
}

.mp-admin-form h3{
    font-family:Georgia,serif;
    font-size:30px;
    margin:0 0 18px;
}

.mp-admin-checks{
    display:flex;
    gap:20px;
    align-items:end;
}

.mp-admin-checks label{
    display:flex;
    gap:10px;
    align-items:center;
    margin:0;
}

.mp-admin-checks input{
    width:auto;
}

.mp-admin-cancel{
    display:inline-flex;
    margin-left:14px;
    color:var(--mp-muted);
}

.mp-admin-actions{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.mp-admin-actions a{
    color:var(--mp-accent-soft);
    font-weight:800;
}

@media(max-width:800px){
    .mp-admin-grid-2{
        grid-template-columns:1fr;
    }

    .mp-admin-checks{
        align-items:flex-start;
        flex-direction:column;
    }
}

.mp-hero-subtitle{
    font-size:clamp(18px,3vw,26px);
    font-family:Georgia,serif;
    color:var(--mp-accent-soft);
    margin:0 0 18px;
    font-weight:400;
}

.mp-content{
    color:var(--mp-muted);
    font-size:18px;
    line-height:1.9;
}

.mp-content p{
    margin-top:0;
    margin-bottom:24px;
}

.mp-faq-list{
    display:grid;
    gap:18px;
}

.mp-faq-item{
    padding:28px;
}

.mp-faq-item h3{
    margin:0 0 12px;
    font-family:Georgia,serif;
    font-size:28px;
}

.mp-faq-item div{
    color:var(--mp-muted);
    line-height:1.8;
}

.mp-profile-hero{
    padding:150px 0 90px;
}

.mp-profile-hero-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:54px;
    align-items:start;
}

.mp-profile-main-image{
    position:relative;
    min-height:720px;
    border-radius:38px;
    overflow:hidden;
    background:#111;
    border:1px solid var(--mp-border);
}

.mp-profile-main-image img{
    width:100%;
    height:100%;
    max-height:780px;
    object-fit:contain;
    background:#111;
}

.mp-profile-badge{
    position:absolute;
    top:18px;
    left:18px;
    padding:9px 14px;
    border-radius:999px;
    background:rgba(0,0,0,.62);
    color:#fff;
    font-weight:900;
    font-size:12px;
}

.mp-profile-thumbs{
    display:flex;
    gap:12px;
    overflow-x:auto;
    margin-top:16px;
    padding-bottom:8px;
}

.mp-profile-thumb{
    width:92px;
    height:112px;
    border:1px solid var(--mp-border);
    border-radius:18px;
    overflow:hidden;
    padding:0;
    background:#111;
    cursor:pointer;
    opacity:.55;
}

.mp-profile-thumb.active{
    opacity:1;
    border-color:var(--mp-accent);
}

.mp-profile-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.mp-profile-copy h1{
    font-size:clamp(54px,7vw,96px);
    line-height:.95;
    font-family:Georgia,serif;
    margin:20px 0;
}

.mp-profile-copy p{
    color:var(--mp-muted);
    font-size:18px;
    line-height:1.8;
}

.mp-profile-stat-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin:28px 0;
}

.mp-profile-stat-grid div{
    padding:22px;
}

.mp-profile-stat-grid strong{
    display:block;
    font-size:28px;
    font-family:Georgia,serif;
    color:var(--mp-accent-soft);
}

.mp-profile-stat-grid span{
    color:var(--mp-muted);
}

.mp-profile-video{
    margin-top:20px;
    padding:24px;
}

.mp-profile-video video{
    margin-top:18px;
    width:100%;
    max-height:640px;
    border-radius:24px;
    background:#000;
}

.mp-detail-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-top:28px;
}

.mp-detail-grid div{
    padding:20px;
}

.mp-detail-grid span{
    display:block;
    color:var(--mp-muted);
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1.3px;
}

.mp-detail-grid strong{
    display:block;
    margin-top:8px;
    color:var(--mp-text);
}

@media(max-width:980px){
    .mp-profile-hero-grid{
        grid-template-columns:1fr;
    }

    .mp-profile-main-image{
        min-height:560px;
    }
}

@media(max-width:640px){
    .mp-profile-hero{
        padding:120px 0 60px;
    }

    .mp-profile-stat-grid,
    .mp-detail-grid{
        grid-template-columns:1fr;
    }
}

.mp-home-hero{
    padding:160px 0 90px;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:
        radial-gradient(circle at top right, rgba(201,169,106,.14), transparent 42%),
        radial-gradient(circle at bottom left, rgba(255,255,255,.05), transparent 36%);
}

.mp-home-hero-grid{
    display:grid;
    grid-template-columns:.92fr 1.08fr;
    gap:56px;
    align-items:center;
}

.mp-home-hero-copy h1{
    font-size:clamp(58px,8vw,112px);
    line-height:.92;
    margin:24px 0;
    font-family:Georgia,serif;
}

.mp-home-hero-copy p{
    max-width:680px;
    color:var(--mp-muted);
    font-size:18px;
    line-height:1.9;
}

.mp-home-hero-video-card{
    position:relative;
    border-radius:42px;
    padding:14px;
    background:rgba(255,255,255,.055);
    border:1px solid rgba(255,255,255,.09);
    box-shadow:var(--mp-shadow);
    overflow:hidden;
}

.mp-home-hero-video-card::before{
    content:'';
    position:absolute;
    inset:-40%;
    background:radial-gradient(circle, rgba(201,169,106,.18), transparent 55%);
    pointer-events:none;
}

.mp-home-hero-video-card video{
    position:relative;
    width:100%;
    aspect-ratio:16/10;
    object-fit:cover;
    display:block;
    border-radius:30px;
    background:#000;
}

@media(max-width:980px){
    .mp-home-hero{
        padding:130px 0 70px;
    }

    .mp-home-hero-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:640px){
    .mp-home-hero-copy h1{
        line-height:1;
    }

    .mp-home-hero-video-card{
        border-radius:28px;
        padding:8px;
    }

    .mp-home-hero-video-card video{
        border-radius:22px;
        aspect-ratio:16/11;
    }
}

.mp-profile-hero,
.mp-profile-hero *{
    box-sizing:border-box;
}

.mp-profile-hero{
    overflow:hidden;
}

.mp-profile-media-wrap{
    min-width:0;
    overflow:hidden;
}

.mp-profile-copy{
    min-width:0;
    overflow:hidden;
}

.mp-profile-copy h1{
    word-break:break-word;
    overflow-wrap:anywhere;
}

.mp-profile-main-image{
    position:relative;
}

.mp-profile-main-image img{
    width:100%;
    height:auto;
    max-height:760px;
    object-fit:contain;
}

.mp-gallery-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:12;
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.18);
    background:rgba(0,0,0,.55);
    color:#fff;
    display:grid;
    place-items:center;
    cursor:pointer;
    font-size:28px;
    line-height:1;
    backdrop-filter:blur(12px);
}

.mp-gallery-arrow:hover{
    background:rgba(201,169,106,.85);
    color:#111;
}

.mp-gallery-prev{
    left:18px;
}

.mp-gallery-next{
    right:18px;
}

@media(max-width:980px){
    .mp-profile-main-image{
        min-height:auto;
    }

    .mp-profile-main-image img{
        max-height:680px;
    }
}

@media(max-width:640px){
    .mp-profile-main-image img{
        max-height:560px;
    }

    .mp-gallery-arrow{
        width:42px;
        height:42px;
        font-size:24px;
    }

    .mp-gallery-prev{
        left:10px;
    }

    .mp-gallery-next{
        right:10px;
    }
}

.mp-premium-profile-card{
    overflow:hidden;
    transition:.3s ease;
}

.mp-premium-profile-card:hover{
    transform:translateY(-6px);
}

.mp-premium-profile-media{
    position:relative;
    display:block;
    aspect-ratio:3/4;
    overflow:hidden;
    background:#111;
}

.mp-premium-profile-media img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.45s ease;
}

.mp-premium-profile-card:hover .mp-premium-profile-media img{
    transform:scale(1.04);
}

.mp-premium-badge{
    position:absolute;
    top:16px;
    left:16px;
    padding:8px 13px;
    border-radius:999px;
    background:rgba(0,0,0,.68);
    color:#fff;
    font-size:12px;
    font-weight:900;
    backdrop-filter:blur(12px);
}

.mp-premium-profile-body{
    padding:22px;
}

.mp-premium-profile-body small{
    display:block;
    color:var(--mp-accent-soft);
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1.2px;
    margin-bottom:10px;
}

.mp-premium-profile-title{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
}

.mp-premium-profile-title h3{
    margin:0;
    font-family:Georgia,serif;
    font-size:28px;
    line-height:1.1;
}

.mp-premium-profile-title span{
    min-width:44px;
    height:44px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:rgba(201,169,106,.14);
    border:1px solid rgba(201,169,106,.25);
    color:var(--mp-accent-soft);
    font-weight:900;
}

.mp-premium-profile-body p{
    color:var(--mp-muted);
    line-height:1.7;
    margin:14px 0 16px;
}

.mp-premium-profile-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:18px;
}

.mp-premium-profile-tags span{
    padding:7px 11px;
    border-radius:999px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.07);
    color:var(--mp-muted);
    font-size:12px;
    font-weight:700;
}

.mp-premium-profile-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    margin-bottom:14px;
}

.mp-mini-btn{
    min-height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    font-size:13px;
    font-weight:900;
}

.mp-mini-primary{
    background:var(--mp-accent);
    color:#111;
}

.mp-mini-outline{
    border:1px solid rgba(255,255,255,.12);
    color:#fff;
}

.mp-view-profile-link{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    border-radius:999px;
    background:rgba(255,255,255,.045);
    color:var(--mp-accent-soft);
    font-weight:900;
    border:1px solid rgba(255,255,255,.07);
}

@media(max-width:640px){
    .mp-premium-profile-title h3{
        font-size:24px;
    }

    .mp-premium-profile-actions{
        grid-template-columns:1fr;
    }
}

.mp-floating-contact{
    position:fixed;
    left:18px;
    right:18px;
    bottom:18px;
    z-index:9999;
    display:none;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.mp-floating-contact a{
    min-height:52px;
    border-radius:999px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    box-shadow:0 16px 42px rgba(0,0,0,.32);
}

.mp-floating-call{
    background:var(--mp-accent);
    color:#111;
}

.mp-floating-whatsapp{
    background:#25D366;
    color:#071b0d;
}

@media(max-width:760px){
    .mp-floating-contact{
        display:grid;
    }

    body{
        padding-bottom:84px;
    }
}

.mp-age-locked{
    overflow:hidden;
}

.mp-age-gate{
    position:fixed;
    inset:0;
    z-index:99999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:22px;
    background:rgba(0,0,0,.82);
    backdrop-filter:blur(18px);
}

.mp-age-gate.active{
    display:flex;
}

.mp-age-box{
    width:min(520px,100%);
    border-radius:34px;
    padding:42px;
    background:
        radial-gradient(circle at top right, rgba(201,169,106,.18), transparent 42%),
        rgba(20,20,20,.96);
    border:1px solid rgba(255,255,255,.1);
    box-shadow:0 30px 90px rgba(0,0,0,.45);
    text-align:center;
}

.mp-age-box h2{
    font-family:Georgia,serif;
    font-size:clamp(42px,6vw,68px);
    line-height:.95;
    margin:18px 0;
}

.mp-age-box p{
    color:var(--mp-muted);
    line-height:1.8;
    margin:0 0 28px;
}

.mp-age-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

@media(max-width:520px){
    .mp-age-box{
        padding:30px 22px;
        border-radius:26px;
    }

    .mp-age-actions{
        grid-template-columns:1fr;
    }
}

.mp-home-hero-video-card{
    max-width:420px;
    margin-left:auto;
    margin-right:auto;
}

.mp-home-hero-video-card video{
    width:100%;
    aspect-ratio:9/16;
    height:auto;
    object-fit:contain;
    background:#000;
}

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

.mp-content strong,
.mp-editorial strong,
.mp-section strong,
.mp-footer strong,
p strong,
li strong{
    color:var(--mp-accent-soft);
    font-weight:800;
    letter-spacing:.2px;
}

/* Hyperlinks */
.mp-content a,
.mp-editorial a,
.mp-section a,
p a,
li a{
    color:var(--mp-accent-soft);
    text-decoration:none;
    font-weight:700;
    position:relative;
    transition:.25s ease;
}

/* Animated underline */
.mp-content a::after,
.mp-editorial a::after,
.mp-section a::after,
p a::after,
li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-3px;
    width:100%;
    height:1px;
    background:currentColor;
    transform:scaleX(0);
    transform-origin:left;
    transition:.28s ease;
}

.mp-content a:hover,
.mp-editorial a:hover,
.mp-section a:hover,
p a:hover,
li a:hover{
    opacity:.9;
}

.mp-content a:hover::after,
.mp-editorial a:hover::after,
.mp-section a:hover::after,
p a:hover::after,
li a:hover::after{
    transform:scaleX(1);
}

/* Footer links */
.mp-footer a{
    color:rgba(255,255,255,.72);
    transition:.25s ease;
}

.mp-footer a:hover{
    color:var(--mp-accent-soft);
}

/* Better paragraph readability */
.mp-content p{
    line-height:1.9;
}

.mp-content ul,
.mp-content ol{
    padding-left:22px;
    line-height:1.9;
}

.mp-content li{
    margin-bottom:10px;
}

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

.mp-content h2,
.mp-content h3,
.mp-content h4{
    margin:32px 0 18px;
    line-height:1.15;
    letter-spacing:-.03em;
}

/* H2 */
.mp-content h2{
    font-family:Georgia, serif;
    font-size:clamp(32px, 4vw, 48px);
    font-weight:700;
    color:#fff;
    position:relative;
    padding-bottom:14px;
}

.mp-content h2::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:72px;
    height:2px;
    border-radius:999px;
    background:var(--mp-accent-soft);
}

/* H3 */
.mp-content h3{
    font-size:clamp(24px, 2.4vw, 34px);
    font-weight:800;
    color:var(--mp-accent-soft);
}

/* H4 */
.mp-content h4{
    font-size:22px;
    font-weight:700;
    color:#f5f5f5;
}

/* spacing after heading */
.mp-content h2 + p,
.mp-content h3 + p,
.mp-content h4 + p{
    margin-top:0;
}

/* mobile tuning */
@media(max-width:768px){

    .mp-content h2{
        margin-top:28px;
        padding-bottom:12px;
    }

    .mp-content h3{
        font-size:28px;
    }
}

.mp-mobile-toggle,
.mp-mobile-menu,
.mp-mobile-overlay{
    display:none;
}

.mp-mobile-toggle{
    width:46px;
    height:46px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.06);
    color:#fff;
    font-size:24px;
    cursor:pointer;
}

.mp-mobile-overlay{
    position:fixed;
    inset:0;
    z-index:9997;
    background:rgba(0,0,0,.68);
    backdrop-filter:blur(10px);
}

.mp-mobile-menu{
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    z-index:9998;
    width:min(360px,86vw);
    padding:24px;
    background:rgba(16,16,16,.98);
    border-left:1px solid rgba(255,255,255,.1);
    box-shadow:-20px 0 70px rgba(0,0,0,.45);
    transform:translateX(105%);
    transition:.32s ease;
}

.mp-mobile-menu.active{
    transform:translateX(0);
}

.mp-mobile-overlay.active{
    display:block;
}

.mp-mobile-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    margin-bottom:32px;
}

.mp-brand-inline{
    display:flex;
    align-items:center;
    gap:12px;
}

.mp-mobile-close{
    width:44px;
    height:44px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.12);
    background:rgba(255,255,255,.06);
    color:#fff;
    font-size:30px;
    cursor:pointer;
}

.mp-mobile-nav{
    display:grid;
    gap:10px;
}

.mp-mobile-nav a{
    padding:16px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    color:#fff;
    font-weight:800;
}

.mp-mobile-actions{
    margin-top:28px;
    display:grid;
    gap:12px;
}

.mp-menu-open{
    overflow:hidden;
}

@media(max-width:860px){
    .mp-desktop-nav{
        display:none;
    }

    .mp-mobile-toggle{
        display:grid;
        place-items:center;
    }

    .mp-mobile-menu{
        display:block;
    }
}

/* ==========================================
   HERO SEARCH
========================================== */

.mp-hero-search{
    margin-top:28px;
    width:100%;
    max-width:720px;
}

.mp-search-wrap{
    position:relative;
}

.mp-search-icon{
    position:absolute;
    left:22px;
    top:50%;
    transform:translateY(-50%);
    z-index:2;
    font-size:18px;
    opacity:.72;
}

.mp-search-input{
    width:100%;
    height:66px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(18px);
    color:#fff;
    font-size:17px;
    padding:0 24px 0 58px;
    outline:none;
    transition:.28s ease;
}

.mp-search-input:focus{
    border-color:rgba(255,255,255,.18);
    background:rgba(255,255,255,.09);
}

.mp-search-input::placeholder{
    color:rgba(255,255,255,.45);
}

.mp-search-results{
    position:absolute;
    top:76px;
    left:0;
    right:0;
    z-index:999;
    overflow:hidden;
    border-radius:28px;
    background:rgba(18,18,18,.98);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 25px 70px rgba(0,0,0,.35);
    display:none;
}

.mp-search-results.active{
    display:block;
}

.mp-search-item{
    display:flex;
    align-items:center;
    gap:14px;
    padding:18px 22px;
    border-bottom:1px solid rgba(255,255,255,.06);
    color:#fff;
    text-decoration:none;
    transition:.22s ease;
}

.mp-search-item:last-child{
    border-bottom:none;
}

.mp-search-item:hover{
    background:rgba(255,255,255,.06);
}

.mp-search-emoji{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:grid;
    place-items:center;
    flex-shrink:0;
}

.mp-search-copy{
    display:grid;
}

.mp-search-copy strong{
    font-size:15px;
    color:#fff;
}

.mp-search-copy span{
    font-size:13px;
    color:rgba(255,255,255,.55);
}

@media(max-width:768px){

    .mp-search-input{
        height:58px;
        font-size:16px;
    }

    .mp-search-results{
        border-radius:24px;
    }

}

.mp-location-search{
    margin-top:30px;
    width:100%;
    max-width:920px;
}

.mp-location-search-grid{
    display:grid;
    grid-template-columns:1fr 1fr auto;
    gap:14px;
    align-items:end;
    padding:14px;
    border-radius:28px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.09);
    backdrop-filter:blur(18px);
}

.mp-location-search label{
    display:block;
    margin:0 0 8px;
    color:var(--mp-accent-soft);
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:1px;
}

.mp-location-search select{
    width:100%;
    height:54px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.1);
    background:rgba(0,0,0,.35);
    color:#fff;
    padding:0 18px;
    outline:none;
    font-weight:700;
}

.mp-location-search select option{
    background:#111;
    color:#fff;
}

.mp-location-actions{
    display:flex;
    gap:10px;
}

.mp-location-actions .mp-btn{
    min-height:54px;
    white-space:nowrap;
}

@media(max-width:920px){
    .mp-location-search-grid{
        grid-template-columns:1fr;
    }

    .mp-location-actions{
        display:grid;
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:520px){
    .mp-location-actions{
        grid-template-columns:1fr;
    }
}

.mp-review-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    margin-bottom:32px;
}

.mp-review-card{
    padding:24px;
}

.mp-review-stars{
    color:var(--mp-accent-soft);
    letter-spacing:2px;
    margin-bottom:14px;
    font-size:18px;
}

.mp-review-card p{
    color:var(--mp-muted);
    line-height:1.8;
}

.mp-review-card strong{
    color:#fff;
}

.mp-review-form{
    padding:30px;
}

.mp-review-form h3{
    font-family:Georgia,serif;
    font-size:34px;
    margin:0 0 22px;
}

@media(max-width:900px){
    .mp-review-grid{
        grid-template-columns:1fr;
    }
}

/* ==========================================
   REVIEW FORM PREMIUM UI
========================================== */

.mp-review-form{
    padding:42px;
    border-radius:34px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.04),
            rgba(255,255,255,.02)
        );
    border:1px solid rgba(255,255,255,.08);
}

.mp-review-form form{
    display:grid;
    gap:22px;
}

.mp-review-form label{
    display:block;
    margin-bottom:10px;
    color:#fff;
    font-size:15px;
    font-weight:700;
}

.mp-review-form input,
.mp-review-form textarea,
.mp-review-form select{
    width:100%;
    border:none;
    outline:none;
    border-radius:24px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    padding:18px 22px;
    font-size:16px;
    font-family:inherit;
    transition:.25s ease;
    backdrop-filter:blur(18px);
}

.mp-review-form textarea{
    min-height:180px;
    resize:vertical;
}

.mp-review-form select{
    cursor:pointer;
}

.mp-review-form input:focus,
.mp-review-form textarea:focus,
.mp-review-form select:focus{
    border-color:rgba(212,175,55,.45);
    box-shadow:
        0 0 0 4px rgba(212,175,55,.08);
    background:rgba(255,255,255,.08);
}

.mp-review-form input::placeholder,
.mp-review-form textarea::placeholder{
    color:rgba(255,255,255,.38);
}

.mp-review-form button{
    justify-self:start;
    min-width:280px;
}

@media(max-width:768px){

    .mp-review-form{
        padding:28px;
        border-radius:28px;
    }

    .mp-review-form button{
        width:100%;
        min-width:100%;
    }

}

/* ==========================================
   PREMIUM FOOTER
========================================== */

.mp-footer{
    margin-top:90px;
    padding:80px 0 0;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.02),
            rgba(255,255,255,.01)
        );
    border-top:1px solid rgba(255,255,255,.06);
}

.mp-footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;
}

.mp-footer-block h3{
    font-size:34px;
    margin:0 0 18px;
    color:#fff;
}

.mp-footer-block h4{
    font-size:18px;
    margin:0 0 22px;
    color:var(--mp-accent-soft);
    letter-spacing:.5px;
}

.mp-footer-block p{
    color:rgba(255,255,255,.65);
    line-height:1.9;
    font-size:15px;
}

.mp-footer-links,
.mp-footer-social{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.mp-footer-links a,
.mp-footer-social a{
    color:rgba(255,255,255,.72);
    text-decoration:none;
    transition:.25s ease;
    width:fit-content;
}

.mp-footer-links a:hover,
.mp-footer-social a:hover{
    color:var(--mp-accent-soft);
    transform:translateX(4px);
}

.mp-footer-bottom{
    margin-top:60px;
    padding:28px 0;
    border-top:1px solid rgba(255,255,255,.06);
    text-align:center;
}

.mp-footer-bottom p{
    margin:0;
    color:rgba(255,255,255,.45);
    font-size:14px;
    letter-spacing:.4px;
}

@media(max-width:900px){

    .mp-footer{
        padding-top:60px;
    }

    .mp-footer-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .mp-footer-block h3{
        font-size:28px;
    }

    .mp-footer-bottom{
        margin-top:40px;
    }

}