:root { --rs: #d62153; }

/* ════ HERO WRAPPER (desktop: margins + header bar) ════ */
.p-hero-wrap {
    background: #000;
}
@media (min-width: 768px) {
    .p-hero-wrap {
        background-color: #f7f7f7;
        background-image:
            radial-gradient(ellipse 40px 40px at 40px 0, transparent 39px, #ededed 39px, #ededed 41px, transparent 41px),
            radial-gradient(ellipse 40px 40px at 0 0, transparent 39px, #ededed 39px, #ededed 41px, transparent 41px);
        background-size: 40px 40px;
        background-position: 0 0, 20px 20px;
        padding: 0 max(24px, calc((100vw - 1280px) / 2 + 24px));
    }
}

/* ─── Desktop header bar above slider ─── */
.p-hero-bar {
    display: none;
}
@media (min-width: 768px) {
    .p-hero-bar {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        padding: 16px 0 14px;
        background: #2a2a2a;
    }
    .phb-left {
        display: flex; flex-direction: column; gap: 0;
    }
    .phb-pseudo {
        font-family: 'Playfair Display', serif;
        font-size: 2.4rem; font-weight: 800;
        color: #fff; line-height: 1;
    }
    .phb-pseudo .phb-fl { color: var(--rs); }
    .phb-city {
        font-family: 'Poppins', sans-serif;
        font-size: .95rem; font-weight: 500;
        color: rgba(255,255,255,.4);
        margin-top: 8px;
        text-transform: uppercase;
        letter-spacing: .12em;
    }
    .phb-city strong {
        color: #fff;
        font-weight: 700;
    }
    .phb-badges {
        display: flex; gap: 6px; align-items: center;
        margin-top: 14px;
    }
    .phb-right {
        display: flex; align-items: center; gap: 6px;
    }
    .phb-unlock {
        display: inline-flex; align-items: center; gap: 6px;
        padding: 6px 16px;
        background: transparent;
        border: 1px solid rgba(255,255,255,.4);
        border-radius: 6px;
        color: rgba(255,255,255,.8);
        font-size: .7rem; font-weight: 600;
        text-decoration: none;
        font-family: 'Poppins', sans-serif;
        transition: all .2s;
    }
    .phb-unlock:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.06); }
    .phb-unlock svg { width: 13px; height: 13px; }
    .phb-nav-link {
        display: flex; align-items: center; gap: 5px;
        padding: 6px 12px;
        color: rgba(255,255,255,.6);
        font-size: .7rem; font-weight: 500;
        text-decoration: none;
        font-family: 'Poppins', sans-serif;
        border-radius: 6px;
        transition: all .2s;
    }
    .phb-nav-link:hover { color: #fff; background: rgba(255,255,255,.06); }
    .phb-nav-link svg {
        width: 14px; height: 14px;
        stroke: currentColor; fill: none;
        stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    }
    .phb-grid-link {
        display: flex; align-items: center; justify-content: center;
        width: 32px; height: 32px;
        color: rgba(255,255,255,.5);
        border-radius: 6px;
        transition: all .2s;
        text-decoration: none;
    }
    .phb-grid-link:hover { color: #fff; background: rgba(255,255,255,.06); }
    .phb-grid-link svg {
        width: 16px; height: 16px;
        stroke: currentColor; fill: none;
        stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
    }
}

/* ─── 50% dark bg behind slider ─── */
@media (min-width: 768px) {
    .p-hero-wrap {
        position: relative;
    }
    .p-hero-wrap::after {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 50%;
        background: #2a2a2a;
        z-index: 0;
        pointer-events: none;
        box-shadow: 0 6px 20px rgba(0,0,0,.3), 0 2px 6px rgba(0,0,0,.15);
    }
    .p-hero-bar, .p-hero {
        position: relative;
        z-index: 1;
    }
}

/* ════ HERO ════ */
.p-hero {
    position: relative;
    width: 100%;
    background: #000;
    overflow: hidden;
    height: calc(100vh - 56px);
    height: calc(100svh - 56px);
}
@media (min-width: 768px) {
    .p-hero {
        height: 75vh;
        border-radius: 8px;
        overflow: hidden;
    }
}

.p-hero .slick-profile,
.p-hero .slick-list,
.p-hero .slick-track,
.p-hero .slick-slide,
.p-hero .slick-slide > div,
.p-hero .si { height: 100% !important; }
.p-hero .slick-track { display: flex !important; }

@media (max-width: 767px) {
    .p-hero .si img {
        width: 100%; height: 100%;
        object-fit: cover; object-position: center top;
    }
}
@media (min-width: 768px) {
    .p-hero .slick-slide { margin: 0 !important; }
    .p-hero .si { display: flex; }
    .p-hero .si img {
        height: 100%; width: auto;
        object-fit: cover; display: block;
    }
}

.p-hero .slick-dots { display: none !important; }
.p-hero .slick-prev,
.p-hero .slick-next { display: none !important; }

/* Video in slider */
.si-video {
    position: relative;
    height: 100%; width: 100%;
    display: flex; align-items: center; justify-content: center;
    background: #000; cursor: pointer;
}
.si-video video {
    width: 100%; height: 100%;
    object-fit: cover;
}
.si-video-play {
    position: absolute;
    width: 50px; height: 50px;
    background: rgba(0,0,0,.5);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: transform .2s, background .2s;
    pointer-events: none;
}
.si-video-play svg { width: 22px; height: 22px; margin-left: 3px; }
.si-video:hover .si-video-play { transform: scale(1.1); background: rgba(214,33,83,.8); }

/* ════ PREV/NEXT NAV — transparent overlay ════ */
.pn-nav {
    position: absolute; top: 0; left: 0; right: 0;
    z-index: 30; height: 36px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 12px;
    background: rgba(0,0,0,.3);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    pointer-events: auto;
}
.pn-nav a, .pn-nav .pn-center {
    pointer-events: auto;
    position: relative;
    z-index: 31;
}
@media (min-width: 768px) {
    .pn-nav {
        display: none !important;
    }
}
.pn-link {
    display: flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,.7);
    text-decoration: none;
    font-size: .7rem; font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: color .2s;
}
.pn-link:hover { color: #fff; }
.pn-link svg {
    width: 14px; height: 14px;
    stroke: currentColor; fill: none;
    stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}
.pn-link span { opacity: .85; }
.pn-center {
    display: none;
    align-items: center; justify-content: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: background .2s, color .2s;
}
@media (min-width: 768px) {
    .pn-center { display: flex; }
}
.pn-center:hover { background: rgba(255,255,255,.25); color: #fff; }

/* ════ ARROWS — grey ════ */
.arrow-btn {
    position: absolute;
    top: 65%; transform: translateY(-50%);
    z-index: 25;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(60, 60, 60, .6);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    cursor: pointer; transition: all .2s;
    box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.arrow-btn:hover { background: rgba(80, 80, 80, .8); box-shadow: 0 4px 20px rgba(0,0,0,.4); }
.arrow-btn svg {
    width: 22px; height: 22px;
    stroke: #fff; fill: none;
    stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}
.arrow-prev { left: 14px; }
.arrow-next { right: 14px; }

/* ════ GRADIENT ════ */
.h-grad {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 55%; z-index: 15; pointer-events: none;
    background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.5) 35%, transparent 100%);
}
@media (min-width: 768px) {
    .h-grad {
        height: 30%;
        background: linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,.15) 50%, transparent 100%);
    }
}

/* ════ ACTION BUTTONS — LEFT, absolute mobile, FIXED desktop ════ */
.p-acts {
    position: absolute;
    z-index: 30;
    display: flex; flex-direction: column; gap: 3px;
    left: 0;
    top: 15%;
}
@media (min-width: 768px) {
    .p-acts {
        position: fixed;
        top: calc(100px + 12%);
    }
}

.ab {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(214,33,83,.5);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(214,33,83,.3);
    border-radius: 0 8px 8px 0;
    color: #fff; cursor: pointer;
    transition: all .2s;
    position: relative; text-decoration: none;
    box-shadow: 2px 2px 12px rgba(0,0,0,.25);
}
.ab:hover { background: rgba(214,33,83,.7); border-color: rgba(214,33,83,.5); }
.ab.on { background: var(--rs); border-color: var(--rs); }
.ab svg { width: 20px; height: 20px; transition: all .2s; }
.ab-notif::after {
    content: attr(data-count);
    position: absolute; top: -4px; right: -4px;
    width: 18px; height: 18px;
    background: #facc15; color: #fff;
    font-size: .6rem; font-weight: 800;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,.3);
}

/* Phone slides RIGHT */
.ph-sl {
    position: absolute;
    left: calc(100% + 8px); top: 50%;
    transform: translateY(-50%) translateX(-12px);
    opacity: 0; pointer-events: none;
    background: var(--rs); padding: 10px 16px;
    border-radius: 8px; white-space: nowrap;
    font-size: .875rem; font-weight: 600;
    color: #fff; letter-spacing: .02em;
    transition: all .35s cubic-bezier(.16,1,.3,1);
    box-shadow: 0 4px 20px rgba(214,33,83,.3);
}
.ph-sl a { color: #fff; text-decoration: none; }
@media (hover: hover) {
    .ab-ph:hover .ph-sl {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
        pointer-events: auto;
    }
}
.ab-ph.open .ph-sl {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    pointer-events: auto;
}

/* ════ BADGES — mobile only (desktop: in header bar) ════ */
.h-badges {
    position: absolute; z-index: 25;
    display: flex; flex-direction: column;
    gap: 6px; align-items: flex-start;
    top: 50px; right: 12px;
}
@media (min-width: 768px) {
    .h-badges { display: none; }
}

.hb {
    padding: 6px 12px;
    font-size: .6rem; font-weight: 800;
    letter-spacing: .08em; text-transform: uppercase;
    border-radius: 6px; line-height: 1;
    color: #fff;
    display: inline-flex; align-items: center; gap: 5px;
    border-top: 1px solid rgba(255,255,255,.3);
    border-bottom: 1px solid rgba(0,0,0,.2);
    box-shadow: 0 2px 8px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.15);
    transition: all .2s;
}
.hb:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.2); }
.hb svg { width: 13px; height: 13px; flex-shrink: 0; }
.hb-bl { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); }
.hb-am { background: linear-gradient(135deg, #ff6b2b 0%, #e8480c 100%); }
.hb-em { background: linear-gradient(135deg, #facc15 0%, #eab308 100%); }
.hb-nw { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); }

/* ════ BLURRED SLIDES (beyond 3rd for non-users) ════ */
.si-blur { overflow: hidden; }
.si-blur img {
    filter: blur(9px);
    -webkit-filter: blur(9px);
    transform: scale(1.08);
}

/* ════ IDENTITY — mobile only (desktop: in header bar) ════ */
.h-id {
    position: absolute; z-index: 20;
    bottom: 28px; left: 12px;
    pointer-events: none;
}
@media (min-width: 640px) { .h-id { left: 24px; } }
@media (min-width: 768px) {
    .h-id { display: none; }
}
.h-id a, .h-id button { pointer-events: auto; }
.h-id .en {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; font-weight: 800;
    color: #fff; line-height: 1;
    text-shadow:
        0 2px 4px rgba(0,0,0,.9),
        0 4px 16px rgba(0,0,0,.6),
        0 8px 40px rgba(0,0,0,.4);
    letter-spacing: -.01em;
}
@media (min-width: 768px) { .h-id .en { font-size: 3.2rem; } }
.h-id .en .fl { color: var(--rs); }
.h-id .ec {
    font-family: 'Poppins', sans-serif;
    font-size: .9rem; color: #fff;
    margin-top: 6px;
    text-shadow: 0 2px 12px rgba(0,0,0,.8), 0 0 30px rgba(0,0,0,.4);
    font-weight: 500;
}
.h-id .ei {
    font-family: 'Poppins', sans-serif;
    font-size: .8rem; color: rgba(255,255,255,.6);
    margin-top: 5px;
    text-shadow: 0 2px 12px rgba(0,0,0,.8);
    font-weight: 400;
    font-style: italic;
}
.unlock-btn {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 12px;
    padding: 9px 22px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,.6);
    border-radius: 8px;
    color: #fff;
    font-size: .8rem; font-weight: 600;
    text-decoration: none;
    transition: all .25s;
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    letter-spacing: .02em;
    pointer-events: auto;
}
.unlock-btn:hover {
    background: rgba(255,255,255,.12);
    border-color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.unlock-btn svg { width: 15px; height: 15px; }

/* ════ CONTENT — white with art deco scallop pattern ════ */
.p-content {
    background-color: #f7f7f7;
    background-image:
        radial-gradient(ellipse 40px 40px at 40px 0, transparent 39px, #ededed 39px, #ededed 41px, transparent 41px),
        radial-gradient(ellipse 40px 40px at 0 0, transparent 39px, #ededed 39px, #ededed 41px, transparent 41px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    min-height: 0;
    padding: 12px 12px 12px;
}
@media (min-width: 640px) { .p-content { padding: 14px 24px 14px; } }
@media (min-width: 768px) {
    .p-content { padding: 16px max(24px, calc((100vw - 1280px) / 2 + 24px)) 16px; }
}

/* ─── Breadcrumb ─── */
.bc-row {
    display: flex; flex-direction: column; gap: 12px;
    margin-bottom: 0;
}
@media (min-width: 768px) {
    .bc-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }
}
.bc {
    display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
    font-size: .7rem; color: #888;
    font-family: 'Poppins', sans-serif;
}
.bc a { color: #888; text-decoration: none; transition: color .2s; }
.bc a:hover { color: var(--rs); }
.bc svg { width: 12px; height: 12px; stroke: #aaa; fill: none; stroke-width: 2; flex-shrink: 0; }
.bc .bc-current { color: var(--rs); font-weight: 600; }

/* District label — full on desktop, short on mobile */
.bc-district-short { display: none; }
@media (max-width: 767px) {
    .bc-district-full { display: none; }
    .bc-district-short { display: inline; }
}

/* ─── Info bar (age, nationality, inscrite, vues) ─── */
.info-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.04);
    border: 1px solid rgba(0,0,0,.04);
    overflow: hidden;
}
@media (min-width: 768px) {
    .info-bar {
        display: inline-grid;
        grid-template-columns: repeat(4, auto);
        margin-left: auto;
    }
}
.ib-item {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 14px 16px;
    position: relative;
}
/* Vertical separators desktop */
@media (min-width: 768px) {
    .ib-item:not(:last-child)::after {
        content: '';
        position: absolute; right: 0; top: 20%; height: 60%;
        width: 1px; background: #e5e5e5;
    }
}
/* Grid separators mobile: right border on left items, bottom border on top row */
@media (max-width: 767px) {
    .ib-item:nth-child(odd):not(:last-child)::after {
        content: '';
        position: absolute; right: 0; top: 20%; height: 60%;
        width: 1px; background: #e5e5e5;
    }
    .ib-item:nth-child(-n+2) {
        border-bottom: 1px solid #f0f0f0;
    }
}
.ib-icon {
    width: 18px; height: 18px; flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--rs); fill: none;
    stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.ib-label {
    font-size: .6rem; font-weight: 600;
    color: #999; text-transform: uppercase;
    letter-spacing: .06em;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}
.ib-val {
    font-size: .82rem; font-weight: 700;
    color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
    margin-top: 3px;
    line-height: 1;
}
/* ═══════════════════════════════════════
   SECTION: CONTACT/SERVICES + ABOUT
═══════════════════════════════════════ */
.cs-section {
    display: flex; flex-direction: column-reverse; gap: 20px;
    padding: 0 12px 24px;
    background-color: #f7f7f7;
    background-image:
        radial-gradient(ellipse 40px 40px at 40px 0, transparent 39px, #ededed 39px, #ededed 41px, transparent 41px),
        radial-gradient(ellipse 40px 40px at 0 0, transparent 39px, #ededed 39px, #ededed 41px, transparent 41px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
}
@media (min-width: 640px) { .cs-section { padding: 0 24px 24px; } }
@media (min-width: 768px) {
    .cs-section {
        flex-direction: row; gap: 24px;
        padding: 0 max(24px, calc((100vw - 1280px) / 2 + 24px)) 32px;
    }
}
.cs-section .cs-inner { max-width: 900px; }

/* ─── Left panel: tabs contact/services ─── */
.cs-left {
    flex: 0 0 auto;
    width: 100%;
}
@media (min-width: 768px) {
    .cs-left { width: 340px; }
}

/* Tab switcher */
.cs-tabs {
    display: flex; gap: 0;
    background: #e8e8e8;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}
.cs-tab {
    flex: 1; padding: 10px 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: .75rem; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #888; cursor: pointer;
    background: transparent;
    border: none;
    transition: all .2s;
}
.cs-tab.active { background: #fff; color: var(--rs); }
.cs-tab:hover:not(.active) { color: #555; }

/* Tab panels */
.cs-panel {
    display: none;
    background: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.04);
    border: 1px solid rgba(0,0,0,.04);
    border-top: none;
    padding: 16px;
}
.cs-panel.active { display: block; }

/* Contact items */
.ct-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all .15s;
}
.ct-item:last-child { border-bottom: none; }
.ct-item:hover { padding-left: 4px; }
.ct-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 8px;
}
.ct-icon svg { width: 18px; height: 18px; }
.ct-icon--phone { background: rgba(214,33,83,.08); color: var(--rs); }
.ct-icon--phone svg { stroke: var(--rs); fill: none; stroke-width: 2; }
.ct-icon--wa { background: rgba(37,211,102,.08); color: #25d366; }
.ct-icon--wa svg { fill: #25d366; stroke: none; }
.ct-icon--tg { background: rgba(0,136,204,.08); color: #0088cc; }
.ct-icon--tg svg { fill: #0088cc; stroke: none; }
.ct-icon--ox { background: rgba(214,33,83,.08); color: var(--rs); }
.ct-icon--ox svg { stroke: var(--rs); fill: none; stroke-width: 2; }
.ct-info { flex: 1; }
.ct-name {
    font-family: 'Poppins', sans-serif;
    font-size: .8rem; font-weight: 600;
    color: #1a1a1a;
}
.ct-sub {
    font-family: 'Poppins', sans-serif;
    font-size: .65rem; color: #999;
    margin-top: 1px;
}
.ct-arrow {
    width: 16px; height: 16px;
    stroke: #ccc; fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
/* Contact preference badge */
.ct-pref {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 4px 10px; margin-top: 12px;
    background: rgba(214,33,83,.05);
    border: 1px solid rgba(214,33,83,.12);
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: .65rem; font-weight: 600;
    color: var(--rs);
}
.ct-pref svg { width: 12px; height: 12px; stroke: var(--rs); fill: none; stroke-width: 2; }

/* Inline message form (slide down) */
.ct-msg {
    display: none;
    margin-top: 12px;
    padding: 12px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #eee;
}
.ct-msg.open { display: block; }
.ct-msg textarea {
    width: 100%; padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: .8rem; resize: vertical;
    min-height: 80px;
}
.ct-msg textarea:focus { outline: none; border-color: var(--rs); }
.ct-msg-send {
    margin-top: 8px;
    padding: 8px 20px;
    background: var(--rs); color: #fff;
    border: none; border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: .75rem; font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}
.ct-msg-send:hover { background: #b31a45; }

/* Services tags */
.sv-list {
    display: flex; flex-wrap: wrap; gap: 6px;
}
.sv-tag {
    display: inline-flex; align-items: center;
    padding: 5px 12px;
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: .7rem; font-weight: 500;
    color: #444;
    text-decoration: none;
    cursor: pointer;
    transition: all .15s;
}
.sv-tag:hover { border-color: var(--rs); color: var(--rs); background: rgba(214,33,83,.03); }

/* ─── Right panel: About ─── */
.cs-right {
    flex: 1;
}
.about-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.04);
    border: 1px solid rgba(0,0,0,.04);
    padding: 20px;
    height: 100%;
}
.about-label {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 12px;
}
.about-label span {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700;
    color: #1a1a1a;
}
.about-label::after {
    content: '';
    flex: 1; height: 1px;
    background: linear-gradient(to right, rgba(214,33,83,.3), transparent);
}
.about-text {
    font-family: 'Poppins', sans-serif;
    font-size: .85rem; color: #333;
    line-height: 1.7;
    max-height: 200px;
    overflow: hidden;
    position: relative;
    transition: max-height .4s ease;
}
.about-text.expanded { max-height: 2000px; }
.about-more {
    display: inline-block;
    margin-top: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: .75rem; font-weight: 600;
    color: var(--rs);
    cursor: pointer;
    border: none; background: none;
    padding: 0;
}
.about-more:hover { text-decoration: underline; }

/* ═══════════════════════════════════════
   SECTION: COMMENTAIRES
═══════════════════════════════════════ */
.cmt-section {
    padding: 0 12px 32px;
    background-color: #f7f7f7;
    background-image:
        radial-gradient(ellipse 40px 40px at 40px 0, transparent 39px, #ededed 39px, #ededed 41px, transparent 41px),
        radial-gradient(ellipse 40px 40px at 0 0, transparent 39px, #ededed 39px, #ededed 41px, transparent 41px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
}
@media (min-width: 640px) { .cmt-section { padding: 0 24px 32px; } }
@media (min-width: 768px) {
    .cmt-section { padding: 0 max(24px, calc((100vw - 1280px) / 2 + 24px)) 40px; }
}
.cmt-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.04);
    border: 1px solid rgba(0,0,0,.04);
    padding: 20px;
}
.cmt-count {
    font-family: 'Poppins', sans-serif;
    font-size: .75rem; font-weight: 600;
    color: #888; margin-left: 6px;
}
.cmt-item {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}
.cmt-item:last-child { border-bottom: none; }
.cmt-header {
    display: flex; align-items: center; gap: 12px;
}
.cmt-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: #e8e8e8;
    flex-shrink: 0;
}
.cmt-meta { flex: 1; }
.cmt-author {
    font-family: 'Poppins', sans-serif;
    font-size: .85rem; font-weight: 700;
    color: #1a1a1a;
}
.cmt-date {
    font-family: 'Poppins', sans-serif;
    font-size: .65rem; color: #aaa;
    margin-top: 1px;
}
.cmt-stars {
    display: flex; flex-direction: column; gap: 2px;
    align-items: flex-end;
}
.cmt-star-row {
    display: flex; align-items: center; gap: 3px;
}
.cmt-star-label {
    font-family: 'Poppins', sans-serif;
    font-size: .55rem; font-weight: 600;
    color: #bbb; text-transform: uppercase;
}
.cmt-star-row svg {
    width: 12px; height: 12px;
}
.cmt-body {
    font-family: 'Poppins', sans-serif;
    font-size: .82rem; color: #444;
    line-height: 1.6;
    margin-top: 10px;
}

/* Reply from escort */
.cmt-reply {
    margin-top: 12px;
    margin-left: 24px;
    padding: 12px 14px;
    background: rgba(214,33,83,.03);
    border-left: 3px solid var(--rs);
    border-radius: 0 8px 8px 0;
}
.cmt-reply-header {
    display: flex; align-items: center; gap: 6px;
    margin-bottom: 6px;
}
.cmt-reply-icon {
    width: 14px; height: 14px;
    stroke: var(--rs); fill: none;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.cmt-reply-name {
    font-family: 'Poppins', sans-serif;
    font-size: .78rem; font-weight: 700;
    color: var(--rs); text-transform: uppercase;
}
.cmt-reply-text {
    font-family: 'Poppins', sans-serif;
    font-size: .78rem; color: #555;
    line-height: 1.5;
}
.cmt-show-all {
    display: block; text-align: center;
    margin-top: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: .8rem; font-weight: 600;
    color: var(--rs);
    cursor: pointer; border: none;
    background: rgba(214,33,83,.04);
    border-radius: 8px;
    padding: 10px; width: 100%;
    transition: background .2s;
}
.cmt-show-all:hover { background: rgba(214,33,83,.08); }

/* Comment form */
.cmt-form {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 12px;
}
.cmt-form textarea {
    width: 100%; min-height: 70px; padding: 10px;
    border: 1px solid #e0e0e0; border-radius: 8px;
    font-family: 'Poppins', sans-serif; font-size: .82rem;
    color: #333; background: #fff; resize: vertical; outline: none;
    box-sizing: border-box; margin-top: 10px;
}
.cmt-form textarea:focus { border-color: var(--rs); }
.cmt-form-stars {
    display: flex; gap: 16px; flex-wrap: wrap;
}
.cmt-form-star-group {
    display: flex; align-items: center; gap: 2px;
}
.cmt-form-star-group .cmt-star-label { margin-right: 4px; }
.cmt-form-star {
    width: 18px; height: 18px; cursor: pointer;
    transition: transform .15s;
}
.cmt-form-star:hover { transform: scale(1.2); }
.cmt-login-cta {
    display: block; text-align: center; padding: 14px;
    font-family: 'Poppins', sans-serif; font-size: .8rem;
    color: var(--rs); text-decoration: none;
    border: 1px dashed #e0e0e0; border-radius: 8px;
    margin-bottom: 12px; transition: all .2s;
}
.cmt-login-cta:hover { border-color: var(--rs); background: rgba(214,33,83,.03); }
.cmt-empty {
    font-family: 'Poppins', sans-serif; font-size: .8rem;
    color: #aaa; text-align: center; padding: 20px 0;
}
.cmt-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Poppins', sans-serif; font-size: .75rem;
    font-weight: 600; color: #fff; flex-shrink: 0;
}
.cmt-reply-btn {
    display: inline-flex; align-items: center; gap: 4px;
    margin-top: 8px; padding: 4px 10px;
    background: transparent; border: 1px solid #e0e0e0; border-radius: 6px;
    font-family: 'Poppins', sans-serif; font-size: .7rem;
    color: #888; cursor: pointer; transition: all .2s;
}
.cmt-reply-btn:hover { border-color: var(--rs); color: var(--rs); }
.cmt-reply-form { margin-top: 8px; }
.cmt-reply-textarea {
    width: 100%; min-height: 50px; padding: 8px;
    border: 1px solid #e0e0e0; border-radius: 6px;
    font-family: 'Poppins', sans-serif; font-size: .78rem;
    color: #333; background: #fff; resize: vertical; outline: none;
    box-sizing: border-box;
}
.cmt-reply-textarea:focus { border-color: var(--rs); }
.cmt-reply-send { margin-top: 6px; padding: 8px !important; font-size: .78rem !important; }
.cmt-delete {
    background: transparent; border: none;
    font-family: 'Poppins', sans-serif; font-size: .68rem;
    color: #ccc; cursor: pointer; transition: color .2s;
}
.cmt-delete:hover { color: #e74c3c; }

/* ════ HIDE BASE FOOTER on profile ════ */
.page-profil footer {
    display: none !important;
}
.page-profil main.flex-grow {
    margin-bottom: 0;
}

/* ═══ Scroll to top — LEFT ═══ */
.scroll-top {
    position: fixed;
    bottom: 24px; left: 24px;
    width: 40px; height: 40px;
    background: var(--rs);
    color: #fff;
    border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(214,33,83,.3);
    z-index: 50;
    opacity: 0; pointer-events: none;
    transition: opacity .3s;
}
@media (max-width: 767px) { .scroll-top { bottom: 80px; } }
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: #b31a45; }
.scroll-top svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

/* ═══ Mobile fixed contact bar ═══ */
.mob-cta {
    display: none;
}
@media (max-width: 767px) {
    .mob-cta {
        display: flex; justify-content: center;
        position: fixed; bottom: 0; left: 0; right: 0;
        z-index: 60;
        padding: 8px 16px 12px;
        background: transparent;
        opacity: 0;
        transform: translateY(100%);
        transition: opacity .3s, transform .3s;
        pointer-events: none;
    }
    .mob-cta.visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .mob-cta-btn {
        display: flex; align-items: center; justify-content: center; gap: 6px;
        width: auto;
        padding: 10px 28px;
        background: var(--rs);
        color: #fff; border: none; border-radius: 24px;
        font-family: 'Poppins', sans-serif;
        font-size: .8rem; font-weight: 600;
        cursor: pointer;
        transition: background .2s;
        box-shadow: 0 4px 16px rgba(214,33,83,.35);
    }
    .mob-cta-btn:hover { background: #b31a45; }
    .mob-cta-btn svg { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 2; }
}

/* ═══ Slide-up contact panel ═══ */
.slide-panel {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 70;
    background: #fff;
    color: #333;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 24px rgba(0,0,0,.15);
    padding: 20px 16px 28px;
    transform: translateY(100%);
    transition: transform .35s cubic-bezier(.16,1,.3,1);
    max-height: 80vh;
    overflow-y: auto;
}

/* Chat textarea mobile + desktop */
.slide-panel textarea,
.ct-msg textarea {
    width: 100% !important;
    min-height: 80px;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: .82rem;
    color: #333 !important;
    background: #fff !important;
    resize: vertical;
    outline: none;
    box-sizing: border-box;
    -webkit-text-fill-color: #333;
}
.slide-panel textarea::placeholder,
.ct-msg textarea::placeholder {
    color: #aaa;
}
.slide-panel textarea:focus,
.ct-msg textarea:focus {
    border-color: var(--rs);
}

/* Chat send button */
.chat-send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    width: 100%;
    padding: 12px;
    background: var(--rs);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s;
}
.chat-send-btn:hover { opacity: .9; }
.chat-send-btn svg {
    width: 16px; height: 16px;
    stroke: #fff; fill: none;
    stroke-width: 2; flex-shrink: 0;
}
.chat-status {
    font-family: 'Poppins', sans-serif;
    font-size: .7rem;
    color: #aaa;
    margin-top: 6px;
    text-align: center;
}
.slide-panel.open {
    display: block;
    transform: translateY(0);
}
.slide-overlay {
    display: none;
    position: fixed; inset: 0;
    z-index: 65;
    background: rgba(0,0,0,.4);
}
.slide-overlay.open { display: block; }
.slide-handle {
    width: 40px; height: 4px;
    background: #ddd; border-radius: 2px;
    margin: 0 auto 16px;
}
.slide-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem; font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}
.slide-signup {
    display: block;
    text-align: center;
    padding: 14px;
    background: rgba(214,33,83,.05);
    border: 1px solid rgba(214,33,83,.15);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: .82rem; font-weight: 600;
    color: var(--rs);
    text-decoration: none;
    margin-top: 12px;
    transition: background .2s;
}
.slide-signup:hover { background: rgba(214,33,83,.1); }

/* ═══ Report button ═══ */
.report-section {
    padding: 12px 12px 32px;
    text-align: right;
    background-color: #f7f7f7;
    background-image:
        radial-gradient(ellipse 40px 40px at 40px 0, transparent 39px, #ededed 39px, #ededed 41px, transparent 41px),
        radial-gradient(ellipse 40px 40px at 0 0, transparent 39px, #ededed 39px, #ededed 41px, transparent 41px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
}
@media (min-width: 768px) {
    .report-section { padding: 12px max(24px, calc((100vw - 1280px) / 2 + 24px)) 32px; }
}
@media (max-width: 767px) { .report-section { padding-bottom: 90px; } }
.report-btn {
    display: inline-flex; align-items: center; gap: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: .65rem; font-weight: 500;
    color: #bbb; text-decoration: none;
    background: none; border: none;
    cursor: pointer;
    transition: color .2s;
}
.report-btn:hover { color: #e74c3c; }
.report-btn svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Report modal */
.report-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.4); z-index: 80;
}
.report-overlay.open { display: block; }
.report-modal {
    display: none; position: fixed;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    z-index: 81; width: 90%; max-width: 420px;
    background: #fff; border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
    overflow: hidden;
}
.report-modal.open { display: block; }
.report-modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Poppins', sans-serif; font-size: .85rem; font-weight: 600;
    color: #333;
}
.report-close {
    background: none; border: none; font-size: 1.4rem;
    color: #aaa; cursor: pointer; line-height: 1;
}
.report-close:hover { color: #333; }
.report-modal-body {
    padding: 16px;
    display: flex; flex-direction: column; gap: 10px;
}
.report-modal-body select,
.report-modal-body input,
.report-modal-body textarea {
    width: 100%; padding: 10px;
    border: 1px solid #e0e0e0; border-radius: 8px;
    font-family: 'Poppins', sans-serif; font-size: .8rem;
    color: #333; background: #fff; outline: none;
    box-sizing: border-box;
}
.report-modal-body select { -webkit-appearance: none; appearance: none; }
.report-modal-body textarea { min-height: 80px; resize: vertical; }
.report-modal-body select:focus,
.report-modal-body input:focus,
.report-modal-body textarea:focus { border-color: var(--rs); }
.about-empty {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 24px 16px;
    height: 100%; min-height: 160px;
}
.about-empty svg {
    width: 32px; height: 32px;
    stroke: #ccc; fill: none;
    stroke-width: 1.5; margin-bottom: 10px;
}
.about-empty p {
    font-family: 'Poppins', sans-serif;
    font-size: .78rem; color: #aaa;
    line-height: 1.5;
}
.about-empty a { color: var(--rs); text-decoration: none; font-weight: 600; }
.about-empty a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════
   SECTION: BIOGRAPHY
═══════════════════════════════════════ */
.bio-section {
    padding: 0 12px 24px;
    background-color: #f7f7f7;
    background-image:
        radial-gradient(ellipse 40px 40px at 40px 0, transparent 39px, #ededed 39px, #ededed 41px, transparent 41px),
        radial-gradient(ellipse 40px 40px at 0 0, transparent 39px, #ededed 39px, #ededed 41px, transparent 41px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
}
@media (min-width: 640px) { .bio-section { padding: 0 24px 24px; } }
@media (min-width: 768px) {
    .bio-section { padding: 0 max(24px, calc((100vw - 1280px) / 2 + 24px)) 32px; }
}
.bio-row {
    display: flex; flex-direction: column; gap: 20px;
}
@media (min-width: 768px) {
    .bio-row { flex-direction: row; gap: 24px; }
}
.bio-col { flex: 1; }
.bio-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.04);
    border: 1px solid rgba(0,0,0,.04);
    padding: 20px;
    height: 100%;
}
/* ─── Glam section title ─── */
.sec-title {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 16px;
}
.sec-title-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700;
    color: #1a1a1a;
}
.sec-title-line {
    flex: 1; height: 1px;
    background: linear-gradient(to right, rgba(214,33,83,.3), transparent);
}
.sec-title-icon {
    width: 18px; height: 18px;
    stroke: var(--rs); fill: none;
    stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.bio-item {
    padding: 10px 12px;
    border-bottom: 1px solid #f5f5f5;
}
.bio-item-label {
    font-family: 'Poppins', sans-serif;
    font-size: .6rem; font-weight: 600;
    color: #aaa; text-transform: uppercase;
    letter-spacing: .04em;
}
.bio-item-val {
    font-family: 'Poppins', sans-serif;
    font-size: .8rem; font-weight: 600;
    color: #1a1a1a;
    margin-top: 2px;
}
.bio-lang {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-top: 8px;
}
.bio-lang-tag {
    padding: 4px 12px;
    background: rgba(214,33,83,.04);
    border: 1px solid rgba(214,33,83,.12);
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: .7rem; font-weight: 500;
    color: var(--rs);
}
.bio-int-tags {
    display: flex; flex-wrap: wrap; gap: 6px;
    margin-top: 8px;
}
.bio-int-tag {
    padding: 4px 12px;
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: .7rem; font-weight: 500;
    color: #444;
}

.lbo {
    display: none; position: fixed; inset: 0;
    z-index: 9999; background: #000;
    align-items: center; justify-content: center;
}
.lbo.open { display: flex; }
.lbo img { max-width: 96vw; max-height: 96vh; object-fit: contain; user-select: none; }
.lbb {
    position: absolute; background: rgba(255,255,255,.07);
    border: none; border-radius: 50%; color: #fff;
    cursor: pointer; display: flex; align-items: center;
    justify-content: center; z-index: 10;
}
.lbb:hover { background: rgba(255,255,255,.15); }
.lb-x { top: 16px; right: 16px; width: 44px; height: 44px; }
.lb-p { top: 50%; left: 16px; transform: translateY(-50%); width: 48px; height: 48px; }
.lb-n { top: 50%; right: 16px; transform: translateY(-50%); width: 48px; height: 48px; }
.lb-c { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.4); font-size: .8125rem; }
