﻿:root {
    --font-ui: 'Inter', sans-serif;
    --font-brand: 'Sora', 'Inter', sans-serif;
    --font-header-display: 'Bodoni Moda', Georgia, 'Times New Roman', serif;
    --primary: #ff2d78;
    --primary-dark: #d31a62;
    --primary-light: #ff6aa4;
    --accent: #ff9f1c;
    --violet: #8a5bff;
    --bg-dark: #0e0b16;
    --bg-darker: #090710;
    --surface: #171324;
    --surface-soft: #221b33;
    --surface-glass: rgba(255, 255, 255, 0.08);
    --text-primary: #fff5fb;
    --text-secondary: #c9bed9;
    --text-muted: #a795bf;
    --card-bg: #1a1528;
    --online: #52e37c;
    --offline: #ff5d63;
    --story-border: linear-gradient(135deg, #ff2d78, #ff8a5b, #8a5bff);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-xl: 32px;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.28);
    --shadow-pink: 0 12px 30px rgba(255, 45, 120, 0.25);
    /* === PREMIUM PALETTE — boudoir digital · pourpre néon + or rosé === */
    --magenta-neon: #ff3ea5;
    --magenta-deep: #c2185b;
    --purple-deep: #2a0f3d;
    --purple-velvet: #4b1d6e;
    --purple-mid: #6c2bb3;
    --gold-rose: #f5c89a;
    --gold-rose-soft: #f7d5b3;
    --blush: #ffd6e8;
    --ink: #050309;
    --shadow-magenta: 0 18px 60px -18px rgba(255, 62, 165, 0.55);
    --shadow-velvet: 0 30px 80px -30px rgba(75, 29, 110, 0.7);
    --glow-magenta: 0 0 0 1px rgba(255, 62, 165, 0.35), 0 0 60px -12px rgba(255, 62, 165, 0.55);
    --hairline-gold: linear-gradient(90deg, transparent, rgba(245, 200, 154, 0.55), transparent);
    /* Focus visage + buste (desktop vs mobile) */
    --img-focus-x: center;
    --img-focus-y: 22%;
    --img-focus-y-mobile: 12%;
    --img-focus-y-portrait: 16%;
}

/* Recadrage cohérent : visage et expression prioritaires */
.img-cover-focus {
    object-fit: cover;
    object-position: var(--img-focus-x) var(--img-focus-y);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    min-height: 100%;
}

body {
    font-family: var(--font-ui);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 45, 120, 0.2), transparent 35%),
        radial-gradient(circle at 90% 10%, rgba(138, 91, 255, 0.22), transparent 40%),
        radial-gradient(circle at 50% 100%, rgba(255, 159, 28, 0.08), transparent 40%),
        var(--bg-dark);
}

body::before {
    content: "";
    position: fixed;
    inset: -20% -10%;
    pointer-events: none;
    z-index: -2;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 45, 120, 0.18), transparent 32%),
        radial-gradient(circle at 78% 16%, rgba(138, 91, 255, 0.2), transparent 34%),
        radial-gradient(circle at 50% 80%, rgba(255, 159, 28, 0.1), transparent 36%);
    filter: blur(8px);
    animation: bgFloat 18s ease-in-out infinite alternate;
}

.app-container {
    width: min(1320px, 100%);
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 180px),
        var(--bg-darker);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.app-container::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.04) 45%, transparent 70%);
    transform: translateX(-60%);
    animation: sheenSweep 12s linear infinite;
    z-index: 0;
}

.app-container > * {
    position: relative;
    z-index: 1;
}

.seo-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =============================================================================
   HEADER — Luxe sensuel · mobile-first · perf (transform/opacity only on LIVE)
   Tailwind ref. : sticky top-0 · grid · italic tracking-wide · bg-clip-text
   ============================================================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 110;
    contain: layout style;
    min-height: 60px;
    padding: max(10px, env(safe-area-inset-top, 0px)) 14px 11px;
    background: rgba(9, 7, 14, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 1px 0 rgba(255, 106, 164, 0.14);
}

@media (min-width: 768px) {
    .header {
        min-height: 64px;
        padding: 12px 20px;
        background: rgba(14, 11, 22, 0.92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
}

.header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    max-width: 100%;
}

.header__home {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: inherit;
    min-width: 0;
    -webkit-tap-highlight-color: transparent;
}

.header__home:hover {
    opacity: 0.94;
}

.header__home:focus-visible {
    outline: 2px solid rgba(255, 138, 195, 0.55);
    outline-offset: 3px;
    border-radius: 14px;
}

.header__home:active {
    opacity: 0.88;
}

.header__mark {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: linear-gradient(145deg, rgba(255, 71, 141, 0.2), rgba(138, 91, 255, 0.16));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 10px rgba(255, 45, 120, 0.12);
}

.header__mark svg {
    width: 18px;
    height: 18px;
    color: #ffd2ea;
}

.header__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    min-width: 0;
}

/* SnapGirls — pièce maîtresse : serif sensuel, dégradé, glow statique (pas d’anim layout) */
.header__title {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    line-height: 0.95;
    font-family: var(--font-header-display);
    font-size: clamp(1.38rem, 6.2vw, 1.85rem);
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.05em;
    filter: drop-shadow(0 0 14px rgba(255, 95, 175, 0.28)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

.header__title-snap,
.header__title-girls {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header__title-snap {
    background-image: linear-gradient(108deg, #fff9fc 0%, #ffd0e8 38%, #ff7eb8 72%);
}

.header__title-girls {
    background-image: linear-gradient(108deg, #ff8ac8 0%, #ff4d9a 42%, #c89bff 88%, #f5e8ff 100%);
    letter-spacing: 0.07em;
}

.header__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 0;
    width: 100%;
}

.header__tagline {
    font-family: var(--font-ui);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 233, 244, 0.58);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Suisse romande — discret, sans badge ni bordure (équiv. text-xs text-white/40) */
.header__region {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    border-radius: 0;
    box-shadow: none;
    font-family: var(--font-ui);
    font-size: 8px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 233, 244, 0.38);
    line-height: 1.2;
    white-space: nowrap;
}

.header__flag {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    opacity: 0.42;
}

.header__live {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255, 106, 164, 0.38);
    background: linear-gradient(135deg, rgba(255, 45, 120, 0.22), rgba(138, 91, 255, 0.14));
    box-shadow: 0 4px 16px rgba(255, 45, 120, 0.16);
}

.header__live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--online);
    box-shadow: 0 0 8px rgba(82, 227, 124, 0.45);
    animation: headerLivePulse 2.4s ease-in-out infinite;
}

.header__live-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff5fb;
    line-height: 1;
}

@keyframes headerLivePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.72;
        transform: scale(0.88);
    }
}

@media (min-width: 768px) {
    .header {
        min-height: 66px;
    }

    .header__mark {
        width: 40px;
        height: 40px;
    }

    .header__mark svg {
        width: 20px;
        height: 20px;
    }

    .header__title {
        font-size: clamp(1.5rem, 2.4vw, 1.9rem);
        letter-spacing: 0.06em;
    }

    .header__meta {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 4px 10px;
    }

    .header__tagline {
        font-size: 10px;
        letter-spacing: 0.18em;
        color: rgba(255, 233, 244, 0.62);
    }

    .header__tagline::after {
        content: "·";
        margin-left: 10px;
        opacity: 0.35;
        font-weight: 400;
    }

    .header__region {
        font-size: 9px;
        letter-spacing: 0.2em;
        color: rgba(255, 233, 244, 0.45);
    }

    .header__flag {
        width: 9px;
        height: 9px;
        opacity: 0.5;
    }

    .header__live {
        padding: 8px 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .header__live-dot {
        animation: none;
    }
}

.navigation {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 12px 14px;
    background: rgba(16, 12, 25, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    scrollbar-width: none;
}

.navigation::-webkit-scrollbar {
    display: none;
}

.nav-btn {
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 999px;
    transition: 0.25s ease;
    flex-shrink: 0;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
}

.nav-btn:active {
    transform: scale(0.97);
    opacity: 0.92;
}

.nav-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-pink);
}

.tap-pop {
    animation: tapPop 220ms ease-out;
}

.main-section {
    display: none;
    padding: 18px 14px 30px;
}

.main-section.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

.reveal-item {
    opacity: 0;
    transform: translateY(14px) scale(0.99);
    transition: opacity 0.55s ease, transform 0.55s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stories-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 16px 10px 20px;
    margin-bottom: 18px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.stories-container::-webkit-scrollbar {
    display: none;
}

.story {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 8px;
    position: relative;
    cursor: pointer;
    background: var(--story-border);
    padding: 3px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
}

.story-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--surface);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.story img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.story-code {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.75);
    font-size: 10px;
    font-weight: 600;
    padding: 0;
    white-space: nowrap;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

#profilesSection.active {
    padding: 16px 16px 32px;
}

.profiles-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 520px) {
    .profiles-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
}

@media (min-width: 900px) {
    .profiles-container {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (min-width: 1180px) {
    .profiles-container {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
    }

    #profilesSection.active {
        padding: 18px 20px 36px;
    }
}

/* â”€â”€ Cartes profil (grille type maquette) â”€â”€ */
.profile-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.32);
    display: flex;
    flex-direction: column;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.profile-card--clickable {
    cursor: pointer;
}

.profile-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 45, 120, 0.18);
    border-color: rgba(255, 106, 164, 0.28);
}

.profile-card:focus-within {
    outline: none;
    border-color: rgba(255, 106, 164, 0.45);
}

.profile-card-hero {
    position: relative;
    height: clamp(200px, 42vw, 268px);
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

.profile-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--img-focus-x) var(--img-focus-y-portrait);
    display: block;
    transition: transform 0.5s ease;
}

.profile-card:hover .profile-hero-img {
    transform: scale(1.06);
}

.profile-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.08) 0%,
        transparent 30%,
        rgba(0, 0, 0, 0.55) 70%,
        rgba(0, 0, 0, 0.88) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
}

.profile-card-badges {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.profile-card-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(12, 10, 20, 0.62);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.profile-card-status-badge .status-dot {
    width: 8px;
    height: 8px;
}

.profile-card-code-badge {
    background: rgba(12, 10, 20, 0.62);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.profile-card-info-overlay {
    padding: 0 2px 2px;
}

.profile-card-name {
    font-family: var(--font-brand);
    font-size: clamp(16px, 3.5vw, 20px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.profile-card-sub {
    font-size: clamp(10px, 2vw, 12px);
    color: rgba(255, 255, 255, 0.68);
    margin-top: 3px;
}

/* Legacy â€” kept for compatibility */
.profile-header { display: none; }
.profile-images { display: none; }
.profile-status { display: flex; align-items: center; font-size: 13px; color: var(--text-muted); }

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.profile-code {
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-light);
    font-weight: 700;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Card footer */
.profile-card-footer {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.profile-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.95em;
}

.profile-actions {
    display: flex;
    gap: 10px;
    justify-content: space-around;
}

.action-btn,
.phone-btn,
.signup-btn,
.call-now-btn,
.back-btn {
    border: 1px solid transparent;
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    cursor: pointer;
    transition: 0.25s ease;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    padding: 11px 14px;
    font-size: 13px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.action-btn.primary,
.phone-btn,
.call-now-btn,
.signup-btn,
.content-page a.call-link {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: rgba(255, 255, 255, 0.2);
}

.action-btn.secondary,
.back-btn {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--text-primary);
}

.action-btn.stop {
    background: linear-gradient(135deg, #ff4f57, #d21f43);
    border-color: rgba(255, 255, 255, 0.2);
}

.content-page {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    box-shadow: var(--shadow-soft);
}

.content-page h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 22px;
    background: linear-gradient(120deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-page h3 {
    font-size: 18px;
    color: var(--primary-light);
    margin: 24px 0 10px;
    padding-left: 11px;
    border-left: 3px solid var(--primary);
}

#blogSection .content-page h3,
.story-reader-page h3 {
    border-left: none;
    padding-left: 0;
}

.content-page p,
.content-page li {
    font-size: 15px;
    margin-bottom: 14px;
}

.content-page ul {
    list-style-position: inside;
    padding-left: 4px;
}

.content-page .highlight {
    color: #ffd4e8;
    font-weight: 700;
}

.content-page a.call-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    min-width: 270px;
    margin: 24px auto 0;
    text-align: center;
    padding: 13px 22px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
}

/* Pourquoi appeler — voir why-call.css (style SnapGirls premium) */

.contact-section,
.signup-section {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    margin: 16px 14px;
}

.signup-section {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    padding: 16px 16px;
}

.is-hidden {
    display: none !important;
}

.contact-title {
    font-size: 20px;
    margin-bottom: 14px;
    font-weight: 700;
    color: #fff;
}

.phone-btn,
.signup-btn,
.call-now-btn {
    padding: 12px 24px;
    font-size: 15px;
    min-width: 190px;
    justify-content: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.call-now-btn,
.content-page a.call-link {
    white-space: nowrap;
    line-height: 1;
}

.call-icon {
    color: #fff;
    font-size: 14px;
    line-height: 1;
}

.phone-number {
    display: none;
    margin: 16px 0 10px;
}

.phone-number.visible {
    display: block;
}

/* OFCOM : tarif >= taille du numÃ©ro, Ã  proximitÃ© immÃ©diate, mÃªme ligne */
.phone-line {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: baseline;
    gap: 0.75em;
    margin: 0;
    max-width: 100%;
}

.phone-line__number,
.phone-line__tariff {
    font-size: clamp(11px, 4.2vw, 20px);
    font-weight: 800;
    line-height: 1.25;
    color: #ffd2e9;
    white-space: nowrap;
}

.call-now-btn {
    display: none;
    margin: 10px auto 0;
}

.call-now-btn.visible {
    display: inline-flex;
}

.signup-text {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.signup-btn {
    min-width: 140px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 45, 120, 0.14);
    border: 1px solid rgba(255, 106, 164, 0.45);
    color: #ffd4e9;
    box-shadow: none;
}

.signup-note {
    margin-top: 8px;
    font-size: 11px;
    color: #9988b0;
    letter-spacing: 0.2px;
}

.modal {
    position: fixed;
    inset: 0;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.86);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    position: relative;
    max-width: min(900px, 96vw);
    max-height: 90vh;
}

.modal-img {
    max-width: 100%;
    max-height: 82vh;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.close-modal,
.nav-arrow {
    position: absolute;
    background-color: rgba(9, 7, 16, 0.8);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.close-modal {
    top: 10px;
    right: 10px;
}

.nav-arrow {
    top: 50%;
    transform: translateY(-50%);
}

.nav-prev {
    left: 10px;
}

.nav-next {
    right: 10px;
}

/* â”€â”€ Profile Detail â”€â”€ */
.profile-detail-container {
    color: var(--text-secondary);
}

.profile-detail-container .reveal-item {
    transition-delay: var(--reveal-delay, 0ms);
}

/* Banner hero */
.profile-detail-banner {
    position: relative;
    height: 230px;
    overflow: hidden;
    border-radius: 0 0 24px 24px;
    margin-bottom: 14px;
}

.profile-detail-banner-bg {
    position: absolute;
    inset: -25%;
    background-size: cover;
    background-position: center top;
    filter: blur(6px) brightness(0.62) saturate(1.3);
    transform: scale(1.15);
}

.profile-detail-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(9, 7, 16, 0.05) 0%,
        rgba(9, 7, 16, 0.2) 55%,
        rgba(9, 7, 16, 0.82) 100%
    );
}

.profile-detail-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 20px;
    text-align: center;
}

.profile-detail-avatar {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
    box-shadow: 0 0 0 5px rgba(255, 45, 120, 0.22), 0 8px 28px rgba(0, 0, 0, 0.55);
    margin-bottom: 10px;
}

.profile-detail-name {
    font-family: var(--font-brand);
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
    margin-bottom: 4px;
}

.profile-detail-meta {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 7px;
}

.profile-detail-status-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Top bar: Retour (gauche) + Voix (droite) */
.profile-detail-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px 16px 0;
    flex-wrap: nowrap;
}

.profile-detail-top-bar .back-btn {
    flex-shrink: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
}

.profile-detail-cta-row {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.profile-detail-cta-row .action-btn {
    padding: 10px 16px;
    font-size: 13px;
    flex: none;
}

/* Legacy header (hidden) */
.profile-detail-header { display: none; }
.profile-name-watermark { display: none; }

.profile-detail-section {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 16px 18px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-soft);
}

.profile-detail-section h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--primary-light);
    margin: 0 0 14px;
    border-left: 3px solid var(--primary);
    padding-left: 10px;
}

.section-icon {
    font-size: 15px;
    line-height: 1;
}

.profile-detail-section p,
.profile-detail-section li {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 9px;
}

.profile-detail-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.profile-detail-section li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 7px 10px;
    margin-bottom: 0;
}

.profile-detail-section li::before {
    content: '\2022';
    color: var(--primary-light);
    font-weight: 800;
}

.back-btn {
    display: block;
    margin: 8px auto 16px;
    padding: 10px 18px;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.08);
}

.profile-detail-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    padding: 24px;
}

.profile-detail-loading-text {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
}

/* â”€â”€ Galerie mosaÃ¯que â”€â”€ */
.profile-detail-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin: 0 0 16px;
    border-radius: 18px;
    overflow: hidden;
}

.profile-detail-gallery:empty {
    display: none;
    margin: 0;
}

.profile-detail-media {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    padding: 0;
    border: none;
    overflow: hidden;
    background: #0e0b16;
    cursor: pointer;
}

/* PremiÃ¨re photo : 2 colonnes, ratio paysage adaptÃ© */
.profile-detail-gallery .profile-detail-media:first-child {
    grid-column: span 2;
    aspect-ratio: 2 / 3;
}

/* 1 seule photo : pleine largeur, portrait */
.profile-detail-gallery .profile-detail-media:only-child {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 5;
}

/* 2 photos : cÃ´te Ã  cÃ´te, portrait */
.profile-detail-gallery .profile-detail-media:first-child:nth-last-child(2),
.profile-detail-gallery .profile-detail-media:first-child:nth-last-child(2) ~ .profile-detail-media {
    grid-column: span 1;
    aspect-ratio: 3 / 4;
}

/* Overlay hover */
.profile-detail-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 45, 120, 0);
    transition: background 0.22s ease;
    pointer-events: none;
}

.profile-detail-media:hover::after {
    background: rgba(255, 45, 120, 0.12);
}

.profile-detail-media:active::after {
    background: rgba(255, 45, 120, 0.25);
}

.profile-detail-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--img-focus-x) var(--img-focus-y-portrait);
    display: block;
    transition: transform 0.35s ease;
}

.profile-detail-media:hover img {
    transform: scale(1.04);
}

.profile-detail-gallery img.img-load-failed {
    object-fit: contain;
    opacity: 0.3;
    background: rgba(255, 255, 255, 0.04);
}

@media (min-width: 640px) {
    .profile-detail-gallery {
        gap: 5px;
        border-radius: 20px;
    }

    .profile-detail-media {
        max-height: 220px;
    }

    .profile-detail-gallery .profile-detail-media:first-child {
        max-height: 260px;
    }

    .profile-detail-gallery .profile-detail-media:only-child {
        max-height: 360px;
    }
}

.profile-audio-tracks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 12px;
}

.profile-audio-track-btn {
    font-size: 12px;
    padding: 8px 12px;
}

/* ── Section vidéos (affichée uniquement si le profil en a) ── */
.profile-detail-videos-section:empty,
.profile-detail-videos-section:not(:has(.profile-video-card)) {
    display: none;
    margin: 0;
    padding: 0;
    border: none;
}

.profile-videos-header {
    margin-bottom: 14px;
}

.profile-videos-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-family: var(--font-display, inherit);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #f0d8ff;
    border: none;
    padding: 0;
    text-shadow: 0 0 24px rgba(138, 91, 255, 0.45);
}

.profile-videos-title-icon {
    font-size: 0.65rem;
    color: #c9a0ff;
    filter: drop-shadow(0 0 8px rgba(138, 91, 255, 0.8));
}

.profile-videos-subtitle {
    margin: 4px 0 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(201, 160, 255, 0.72);
}

.profile-detail-videos-section {
    border-color: rgba(138, 91, 255, 0.28);
    background: linear-gradient(155deg, rgba(138, 91, 255, 0.12), rgba(255, 45, 120, 0.04));
    box-shadow:
        var(--shadow-soft),
        0 0 32px rgba(138, 91, 255, 0.12);
}

.profile-detail-videos {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(138, 91, 255, 0.5) transparent;
    padding-bottom: 4px;
}

.profile-detail-videos:empty {
    display: none;
}

.profile-video-card {
    position: relative;
    flex: 0 0 min(78vw, 220px);
    scroll-snap-align: start;
    aspect-ratio: 9 / 16;
    padding: 0;
    border: 1px solid rgba(138, 91, 255, 0.35);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #0e0b16;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.profile-video-card:hover,
.profile-video-card:focus-visible {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 106, 164, 0.55);
    box-shadow:
        0 12px 36px rgba(0, 0, 0, 0.5),
        0 0 28px rgba(138, 91, 255, 0.35);
    outline: none;
}

.profile-video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
    background: #0e0b16;
}

.profile-video-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(20, 10, 32, 0.05) 40%, rgba(20, 10, 32, 0.55) 100%);
    pointer-events: none;
    transition: background 0.25s ease;
}

.profile-video-play i {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    padding-left: 3px;
    color: #fff;
    background: linear-gradient(135deg, rgba(138, 91, 255, 0.92), rgba(255, 45, 120, 0.88));
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 8px 24px rgba(138, 91, 255, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.profile-video-card:hover .profile-video-play i,
.profile-video-card:focus-visible .profile-video-play i {
    transform: scale(1.08);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.28),
        0 10px 32px rgba(255, 45, 120, 0.5);
}

.profile-video-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.14) 50%, transparent 65%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.profile-video-card:hover .profile-video-shine {
    opacity: 1;
}

@media (min-width: 640px) {
    .profile-detail-videos {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        overflow: visible;
        scroll-snap-type: none;
        gap: 12px;
    }

    .profile-video-card {
        flex: none;
        width: 100%;
        max-height: 320px;
        aspect-ratio: 3 / 4;
    }
}

.modal-content--video {
    width: min(900px, 96vw);
}

.modal-video {
    width: 100%;
    max-height: 82vh;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(138, 91, 255, 0.35);
    background: #000;
    box-shadow: 0 0 40px rgba(138, 91, 255, 0.25);
}

.modal--video .nav-arrow {
    top: 50%;
    transform: translateY(-50%);
}

.profile-detail-gallery img.gallery-focus-zoom {
    animation: galleryFocusZoom 4.4s ease-in-out infinite;
    animation-delay: var(--gallery-zoom-delay, 0s);
    transform-origin: center center;
    will-change: transform;
}

.tone-chips,
.theme-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tone-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 13px;
    border: 1px solid rgba(138, 91, 255, 0.4);
    background: linear-gradient(135deg, rgba(138, 91, 255, 0.18), rgba(138, 91, 255, 0.08));
    color: #d8c8ff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.theme-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 13px;
    border: 1px solid rgba(255, 45, 120, 0.4);
    background: linear-gradient(135deg, rgba(255, 45, 120, 0.22), rgba(255, 159, 28, 0.12));
    color: #ffd4e8;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

/* Testimonials â€” quote card style */
.testimonial-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.testimonial-list li {
    position: relative;
    margin: 0;
    border-radius: 14px;
    padding: 14px 14px 12px 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.09);
    color: #ddd0f5;
    font-size: 13.5px;
    font-style: italic;
    line-height: 1.65;
    border-left: 3px solid var(--primary);
}

.testimonial-list li::before {
    display: none;
}

.testimonial-list li::after {
    content: '"';
    position: absolute;
    top: -4px;
    left: 6px;
    font-size: 44px;
    color: var(--primary);
    opacity: 0.25;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.detail-sticky-cta {
    display: none;
}

/* ── CTA profil « Un moment privilégié » ── */
.profile-moment-cta {
    position: relative;
    margin: 20px 0 24px;
    border-radius: 22px;
    overflow: hidden;
    isolation: isolate;
}

.profile-moment-cta__glow {
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 45, 120, 0.55), rgba(138, 91, 255, 0.35), rgba(255, 45, 120, 0.45));
    opacity: 0.85;
    z-index: 0;
    animation: momentCtaGlow 4s ease-in-out infinite alternate;
}

.profile-moment-cta__inner {
    position: relative;
    z-index: 1;
    margin: 1px;
    padding: 28px 22px 26px;
    border-radius: calc(22px - 1px);
    text-align: center;
    background:
        radial-gradient(ellipse 90% 70% at 50% -20%, rgba(255, 45, 120, 0.18), transparent 55%),
        linear-gradient(165deg, rgba(26, 21, 40, 0.98), rgba(14, 11, 22, 0.99));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.profile-moment-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 14px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 214, 235, 0.88);
    background: rgba(255, 45, 120, 0.12);
    border: 1px solid rgba(255, 106, 164, 0.28);
}

.profile-moment-cta__title {
    margin: 0 0 18px;
    font-family: var(--font-brand);
    font-size: clamp(1.35rem, 5.2vw, 1.65rem);
    font-weight: 700;
    line-height: 1.28;
    color: #fff;
    text-wrap: balance;
}

.profile-moment-cta__name {
    display: block;
    margin-top: 4px;
    background: linear-gradient(120deg, #ffd4e8, var(--primary-light), #ffb86a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.profile-moment-cta__pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 22px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-moment-cta__number {
    font-size: clamp(1.15rem, 5vw, 1.35rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #ffd2e9;
    line-height: 1.2;
}

.profile-moment-cta__tariff {
    font-size: clamp(10px, 2.75vw, 12px);
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.45;
    white-space: nowrap;
    max-width: 100%;
    letter-spacing: -0.01em;
}

.profile-moment-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 54px;
    padding: 14px 22px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 32px rgba(255, 45, 120, 0.42);
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
    animation: momentCtaPulse 2.8s ease-in-out infinite;
}

.profile-moment-cta__btn i {
    font-size: 16px;
}

.profile-moment-cta__btn:active {
    transform: scale(0.97);
    box-shadow: 0 6px 20px rgba(255, 45, 120, 0.35);
}

@media (hover: hover) {
    .profile-moment-cta__btn:hover {
        filter: brightness(1.07);
        transform: translateY(-2px);
        box-shadow: 0 14px 38px rgba(255, 45, 120, 0.5);
    }
}

.profile-moment-cta__code {
    margin: 14px 0 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.52);
}

.profile-moment-cta__code strong {
    color: var(--primary-light);
    font-weight: 800;
}

@keyframes momentCtaGlow {
    0% { opacity: 0.65; filter: blur(0); }
    100% { opacity: 0.95; filter: blur(1px); }
}

@keyframes momentCtaPulse {
    0%, 100% { box-shadow: 0 10px 32px rgba(255, 45, 120, 0.38); }
    50% { box-shadow: 0 14px 40px rgba(255, 45, 120, 0.55), 0 0 0 4px rgba(255, 45, 120, 0.12); }
}

/* Blog : voir blog.css */
/* Footer & pages juridiques */
.site-footer {
    margin: 8px 14px 24px;
    padding: 18px 16px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 12px;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    margin-bottom: 12px;
}

.legal-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}

.legal-links a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.footer-copy {
    margin: 0;
    line-height: 1.55;
    font-size: 11px;
}

.legal-shell {
    padding-bottom: 24px;
}

.legal-header {
    padding: 14px 16px;
}

.legal-back {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.legal-back:hover {
    color: var(--primary-light);
}

.legal-page {
    margin: 0 14px 20px;
    max-width: 820px;
}

.legal-page.legal-page {
    margin-left: auto;
    margin-right: auto;
}

.legal-title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 8px;
    background: linear-gradient(120deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-updated {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px !important;
}

.legal-page h2 {
    text-align: left;
    font-size: 18px;
    margin: 28px 0 10px;
    background: none;
    -webkit-text-fill-color: var(--primary-light);
    color: var(--primary-light);
}

.legal-page a {
    color: var(--primary-light);
}

.legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-nav a {
    font-size: 14px;
    font-weight: 500;
}

.legal-table-wrap {
    overflow-x: auto;
    margin: 16px 0 20px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.legal-table th,
.legal-table td {
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 8px;
    text-align: left;
    vertical-align: top;
}

.legal-table th {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    font-weight: 600;
}

.legal-table code {
    font-size: 12px;
    word-break: break-all;
}

/* Bandeau cookies */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom, 0px));
    pointer-events: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.cookie-banner--visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner__inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(165deg, rgba(26, 21, 40, 0.97), rgba(14, 11, 22, 0.98));
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.45);
}

.cookie-banner__title {
    font-family: var(--font-brand);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.cookie-banner__text {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0 0 14px;
}

.cookie-banner__text a {
    color: var(--primary-light);
    font-weight: 500;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.cookie-btn {
    border: none;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-ui);
}

.cookie-btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.cookie-btn--ghost:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.22);
}

.cookie-btn--primary {
    background: linear-gradient(120deg, var(--primary), var(--primary-dark));
    color: #fff;
    box-shadow: var(--shadow-pink);
}

.cookie-btn--primary:hover {
    filter: brightness(1.06);
}

@media (max-width: 480px) {
    .cookie-banner__actions {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        justify-content: center;
    }
}

/* =============================================================================
   BOTTOM NAV — Mobile-first (Profils · Blog · Appeler)
   Visible ≤767px · masquée en lecteur article / fiche profil
   ============================================================================= */
.bottom-nav {
    display: none;
}

@media (max-width: 767px) {
    /* Espace pour la barre fixe + safe area iPhone */
    body {
        padding-bottom: calc(62px + env(safe-area-inset-bottom, 0px));
    }

    .bottom-nav {
        display: flex;
        align-items: stretch;
        justify-content: space-around;
        gap: 4px;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 120;
        padding: 6px 10px calc(6px + env(safe-area-inset-bottom, 0px));
        background: rgba(9, 7, 14, 0.94);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.45);
        transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s;
    }

    .bottom-nav--hidden {
        transform: translateY(110%);
        opacity: 0;
        pointer-events: none;
    }

    .bottom-nav__item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        min-height: 48px;
        max-width: 120px;
        padding: 6px 8px;
        border: none;
        border-radius: 14px;
        background: transparent;
        color: var(--text-muted);
        font-family: var(--font-ui);
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.04em;
        cursor: pointer;
        transition: color 0.2s, background 0.2s, transform 0.15s;
    }

    .bottom-nav__item i {
        font-size: 18px;
        line-height: 1;
    }

    .bottom-nav__item.active {
        color: var(--text-primary);
        background: rgba(255, 255, 255, 0.06);
    }

    .bottom-nav__item.active i {
        color: var(--primary-light);
    }

    .bottom-nav__item:active {
        transform: scale(0.96);
    }

    /* Bouton Appeler — accent central magnétique */
    .bottom-nav__item--call {
        position: relative;
        flex: 1.15;
        color: #fff;
        background: linear-gradient(145deg, var(--primary), var(--primary-dark));
        box-shadow: 0 6px 22px rgba(255, 45, 120, 0.4);
        border-radius: 16px;
        max-width: none;
    }

    .bottom-nav__item--call i {
        color: #fff;
        font-size: 17px;
    }

    .bottom-nav__item--call:active {
        transform: scale(0.95);
        box-shadow: 0 4px 16px rgba(255, 45, 120, 0.35);
    }

    .bottom-nav__call-ring {
        position: absolute;
        inset: -2px;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        pointer-events: none;
        animation: bottomNavPulse 2.5s ease-in-out infinite;
    }

    /* Top nav secondaire : compacte, scroll horizontal pour « Pourquoi appeler » */
    .navigation {
        padding: 8px 12px;
    }

    .nav-btn {
        font-size: 12px;
        padding: 8px 12px;
    }

    /* ── Profils : cartes plus aérées, focus visage ── */
    #profilesSection.active {
        padding: 14px 14px 28px;
    }

    .profiles-container {
        gap: 18px;
    }

    .profile-card-hero {
        height: auto;
        aspect-ratio: 3 / 4;
    }

    .profile-hero-img {
        object-position: var(--img-focus-x) var(--img-focus-y-mobile);
    }

    .profile-card-footer {
        padding: 14px 16px 16px;
    }

    .profile-card-desc {
        font-size: 14px;
        line-height: 1.55;
    }

    /* ── Fiche profil : sections + CTA premium ── */
    #profileDetailSection.main-section.active {
        padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    }

    .profile-detail-section {
        padding: 18px 16px;
        margin-bottom: 14px;
        border-radius: 16px;
    }

    .testimonial-list {
        gap: 12px;
    }

    .testimonial-list li {
        padding: 16px 16px 14px 18px;
        font-size: 14px;
    }

    .profile-moment-cta {
        margin: 24px 0 8px;
    }

    .profile-moment-cta__inner {
        padding: 32px 20px 28px;
    }

    .profile-moment-cta__title {
        font-size: clamp(1.4rem, 5.8vw, 1.75rem);
        margin-bottom: 20px;
    }

    .profile-moment-cta__pricing {
        padding: 14px 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .profile-moment-cta__tariff {
        font-size: clamp(9px, 2.6vw, 12px);
    }

    .profile-moment-cta__btn {
        min-height: 56px;
        font-size: 16px;
    }

    .img-cover-focus {
        object-position: var(--img-focus-x) var(--img-focus-y-mobile);
    }

    .profile-detail-gallery img {
        object-position: var(--img-focus-x) var(--img-focus-y-mobile);
    }

    /* Barre d'appel sticky (bottom nav masquée sur fiche profil) */
    .detail-sticky-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        z-index: 110;
        min-height: 52px;
        padding: 12px 18px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
        box-shadow: 0 10px 36px rgba(255, 45, 120, 0.48);
        animation: momentCtaPulse 2.8s ease-in-out infinite;
        transition: transform 0.2s ease;
    }

    .detail-sticky-cta:active {
        transform: scale(0.97);
    }
}

@media (prefers-reduced-motion: reduce) {
    .profile-moment-cta__glow,
    .profile-moment-cta__btn,
    .detail-sticky-cta {
        animation: none;
    }
}

@keyframes bottomNavPulse {
    0%, 100% { opacity: 0.35; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.03); }
}

@media (prefers-reduced-motion: reduce) {
    .bottom-nav__call-ring {
        animation: none;
    }
}

/* =============================================================================
   HOMEPAGE PREMIUM REDESIGN — « La Voix du Désir »
   Boudoir digital · pourpre néon + or rosé · glassmorphism · mobile-first
   Tailwind equiv. : section bg-gradient-to-b · backdrop-blur-xl · ring-1
   ============================================================================= */

@keyframes heroLivePulse {
    0%   { box-shadow: 0 0 0 0 rgba(82, 227, 124, 0.6); }
    70%  { box-shadow: 0 0 0 10px rgba(82, 227, 124, 0); }
    100% { box-shadow: 0 0 0 0 rgba(82, 227, 124, 0); }
}

/* ----- 1. FILTRES ÉLÉGANTS ----- */
.profile-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 18px;
    padding: 14px 14px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    overflow-x: auto;
    scrollbar-width: none;
}

.profile-filters::-webkit-scrollbar { display: none; }

.profile-filters__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 0 4px 0 6px;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 214, 232, 0.5);
    white-space: nowrap;
}

.profile-filters__label i {
    font-size: 11px;
    color: var(--gold-rose);
}

.profile-filters__list {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
}

.profile-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 245, 251, 0.78);
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.25s ease;
    flex-shrink: 0;
    min-height: 38px;
}

.profile-filter-chip:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 138, 200, 0.3);
    color: #fff;
    transform: translateY(-1px);
}

.profile-filter-chip.is-active {
    background: linear-gradient(135deg, var(--magenta-neon), var(--primary-dark));
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    box-shadow: 0 6px 22px -8px rgba(255, 62, 165, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.profile-filter-chip i {
    font-size: 11px;
    opacity: 0.8;
}

.profile-filters__empty {
    grid-column: 1 / -1;
    padding: 40px 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-style: italic;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
}

/* ----- 4. CARTES PROFILS — REDESIGN PREMIUM ----- */
/* On surcharge .profile-card sans casser l'existant */
.profile-card {
    position: relative;
    background: linear-gradient(180deg, #1c1429 0%, #110a1c 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 36px -8px rgba(0, 0, 0, 0.55);
    isolation: isolate;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
                border-color 0.35s ease;
}

.profile-card::before {
    /* halo magenta soft visible au repos */
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(140deg, rgba(255, 62, 165, 0.0) 0%, rgba(255, 62, 165, 0.0) 50%, rgba(255, 62, 165, 0.0) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    transition: background 0.4s ease;
    z-index: 2;
}

.profile-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 24px 60px -18px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255, 62, 165, 0.35),
        0 0 60px -10px rgba(255, 62, 165, 0.45);
    border-color: rgba(255, 62, 165, 0.0);
}

.profile-card:hover::before {
    background: linear-gradient(140deg, rgba(255, 62, 165, 0.6) 0%, rgba(108, 43, 179, 0.4) 50%, rgba(245, 200, 154, 0.5) 100%);
}

.profile-card-hero {
    position: relative;
    aspect-ratio: 4 / 5;
    height: auto;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

.profile-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--img-focus-x) var(--img-focus-y-portrait);
    display: block;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.5s ease;
    filter: saturate(1.05) contrast(1.02);
}

.profile-card:hover .profile-hero-img {
    transform: scale(1.07);
    filter: saturate(1.18) contrast(1.06);
}

/* Overlay sensuel — gradient dramatique + halo top */
.profile-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.0) 22%,
            rgba(0, 0, 0, 0.0) 45%,
            rgba(13, 6, 22, 0.5) 70%,
            rgba(13, 6, 22, 0.92) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px;
    z-index: 1;
}

.profile-card-overlay::before {
    /* halo magenta qui apparaît au hover */
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(80% 50% at 50% 110%, rgba(255, 62, 165, 0.4), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.profile-card:hover .profile-card-overlay::before {
    opacity: 1;
}

.profile-card-badges {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

/* Status "En ligne" — pastille + texte avec PULSE et glow visible */
.profile-card-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(8, 4, 14, 0.7);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
}

.profile-card-status-badge.is-online {
    background: rgba(8, 30, 16, 0.65);
    border-color: rgba(82, 227, 124, 0.45);
    color: #d6ffe1;
    box-shadow: 0 0 20px -6px rgba(82, 227, 124, 0.5);
}

.profile-card-status-badge .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.profile-card-status-badge.is-online .status-dot {
    background: var(--online);
    box-shadow: 0 0 0 0 rgba(82, 227, 124, 0.55);
    animation: heroLivePulse 1.6s ease-out infinite;
}

.profile-card-code-badge {
    background: rgba(8, 4, 14, 0.7);
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    color: var(--gold-rose-soft);
    font-family: var(--font-ui);
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.18em;
    border: 1px solid rgba(245, 200, 154, 0.3);
}

.profile-card-info-overlay {
    position: relative;
    padding: 4px 2px 2px;
    z-index: 1;
}

.profile-card-name {
    font-family: var(--font-header-display);
    font-style: italic;
    font-size: clamp(20px, 4.2vw, 26px);
    font-weight: 600;
    color: #fff;
    line-height: 1.05;
    letter-spacing: 0.005em;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.65);
    margin: 0;
}

.profile-card-sub {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 214, 232, 0.78);
    margin-top: 4px;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.profile-card-sub__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold-rose);
    opacity: 0.55;
}

.profile-card-hairline {
    width: 32px;
    height: 1px;
    margin: 10px 0 8px;
    background: var(--hairline-gold);
    opacity: 0.55;
    transition: width 0.4s ease, opacity 0.4s ease;
}

.profile-card:hover .profile-card-hairline {
    width: 70%;
    opacity: 1;
}

/* Footer — description italique courte + CTA discret */
.profile-card-footer {
    padding: 14px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.15) 100%);
}

.profile-card-desc {
    font-family: var(--font-ui);
    font-style: italic;
    font-size: 13.5px;
    color: rgba(255, 245, 251, 0.72);
    line-height: 1.55;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.95em;
}

.profile-card-desc::before {
    content: "« ";
    color: var(--gold-rose);
    font-style: normal;
    font-weight: 700;
    opacity: 0.7;
    margin-right: 2px;
}

.profile-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--blush);
    font-family: var(--font-ui);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
    width: 100%;
}

.profile-card-cta i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.profile-card:hover .profile-card-cta {
    background: linear-gradient(135deg, var(--magenta-neon), var(--primary-dark));
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    box-shadow: 0 8px 24px -8px rgba(255, 62, 165, 0.6);
}

.profile-card:hover .profile-card-cta i {
    transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
    .profile-card,
    .profile-card-hairline,
    .profile-card-cta i,
    .profile-card .profile-hero-img {
        transition: none !important;
    }
    .profile-card-status-badge.is-online .status-dot {
        animation: none !important;
    }
}

/* ----- 5. SECTION-TITLE PREMIUM (titres entre sections home) ----- */
.home-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin: 28px 4px 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
}

.home-section-head__title {
    margin: 0;
    font-family: var(--font-header-display);
    font-style: italic;
    font-weight: 600;
    font-size: clamp(1.5rem, 4.5vw, 2.1rem);
    line-height: 1.05;
    color: #fff;
    letter-spacing: 0.005em;
}

.home-section-head__title em {
    font-style: italic;
    background: linear-gradient(110deg, #ff7eb8, var(--magenta-neon), #c89bff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-section-head__sub {
    margin: 6px 0 0;
    font-family: var(--font-ui);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.04em;
}

.home-section-head__link {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-rose);
    text-decoration: none;
    padding: 6px 0;
    border-bottom: 1px solid rgba(245, 200, 154, 0.4);
    transition: 0.25s ease;
    white-space: nowrap;
}

.home-section-head__link:hover {
    color: #fff;
    border-color: #fff;
}

/* ----- 6. CONFESSIONS TEASER (mini-stories en preview sur la home) ----- */
.home-confessions {
    margin: 28px 0 8px;
}

.home-confessions__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 640px) {
    .home-confessions__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.home-confession-card {
    position: relative;
    padding: 24px 22px 22px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
        linear-gradient(180deg, #1c1429 0%, #110a1c 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 14px 40px -16px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.home-confession-card::before {
    content: "“";
    position: absolute;
    top: -22px;
    left: 12px;
    font-family: var(--font-header-display);
    font-size: 110px;
    font-style: italic;
    color: rgba(255, 62, 165, 0.18);
    line-height: 1;
    pointer-events: none;
}

.home-confession-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 62, 165, 0.3);
    box-shadow: 0 22px 50px -16px rgba(255, 62, 165, 0.35);
}

.home-confession-card__tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(245, 200, 154, 0.08);
    border: 1px solid rgba(245, 200, 154, 0.25);
    color: var(--gold-rose);
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.home-confession-card__quote {
    font-family: var(--font-header-display);
    font-style: italic;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.45;
    color: #fff;
    margin: 0 0 14px;
    position: relative;
    z-index: 1;
}

.home-confession-card__author {
    font-family: var(--font-ui);
    font-size: 12px;
    color: rgba(255, 214, 232, 0.6);
    letter-spacing: 0.06em;
    position: relative;
    z-index: 1;
}

.home-confession-card__author::before {
    content: "— ";
    color: var(--gold-rose);
    opacity: 0.6;
}

/* ----- 7. NEWSLETTER PREMIUM HOME ----- */
.home-newsletter {
    position: relative;
    margin: 32px 0 8px;
    padding: clamp(28px, 5vw, 44px) clamp(20px, 4vw, 40px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(120% 80% at 0% 0%, rgba(255, 62, 165, 0.25), transparent 60%),
        radial-gradient(120% 80% at 100% 100%, rgba(108, 43, 179, 0.35), transparent 60%),
        linear-gradient(180deg, #1a0c28 0%, #0c0518 100%);
    border: 1px solid rgba(255, 62, 165, 0.18);
    box-shadow: var(--shadow-velvet);
    text-align: center;
}

.home-newsletter::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--hairline-gold);
    opacity: 0.6;
}

.home-newsletter__eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(245, 200, 154, 0.08);
    border: 1px solid rgba(245, 200, 154, 0.3);
    color: var(--gold-rose);
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.home-newsletter__title {
    font-family: var(--font-header-display);
    font-style: italic;
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 12px;
    max-width: 580px;
    margin-inline: auto;
    text-wrap: balance;
}

.home-newsletter__title em {
    background: linear-gradient(110deg, var(--blush), var(--magenta-neon), #c89bff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-newsletter__text {
    font-family: var(--font-ui);
    font-size: 14.5px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.65);
    max-width: 520px;
    margin: 0 auto 22px;
}

.home-newsletter__form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
    max-width: 520px;
    margin: 0 auto;
}

.home-newsletter__input {
    flex: 1 1 220px;
    padding: 14px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 14px;
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    transition: 0.25s ease;
    min-height: 48px;
}

.home-newsletter__input::placeholder {
    color: rgba(255, 214, 232, 0.45);
}

.home-newsletter__input:focus {
    outline: none;
    border-color: var(--magenta-neon);
    box-shadow: 0 0 0 4px rgba(255, 62, 165, 0.18);
    background: rgba(0, 0, 0, 0.5);
}

.home-newsletter__submit {
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(135deg, var(--magenta-neon), var(--primary), var(--purple-mid));
    color: #fff;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    box-shadow: var(--shadow-magenta);
    transition: 0.25s ease;
    min-height: 48px;
}

.home-newsletter__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 60px -14px rgba(255, 62, 165, 0.7);
}

.home-newsletter__submit:active {
    transform: translateY(0) scale(0.97);
}

.home-newsletter__fine {
    font-family: var(--font-ui);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 14px;
    letter-spacing: 0.04em;
}

.home-newsletter__success {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(82, 227, 124, 0.12);
    border: 1px solid rgba(82, 227, 124, 0.35);
    color: #d6ffe1;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
}

/* ----- 8. AJUSTEMENTS MOBILE ----- */
@media (max-width: 600px) {
    .profile-filters {
        padding: 10px 12px;
        border-radius: 24px;
    }

    .profile-filters__label {
        display: none;
    }

    .profile-card-name { font-size: 22px; }
    .profile-card-hero { aspect-ratio: 4 / 5; }
}

