/* ── Back Button ──────────────────────────────────────── */
      .back-bar {
    	position: fixed;
    	bottom: 70px;
        z-index: 400; /* higher than navbar */
        display: flex;
        align-items: center;
        padding: 0.6rem 2rem;
        background: rgba(14,0,4,0.82);
        backdrop-filter: blur(14px);
       /* border-bottom: 1px solid rgba(255,26,110,0.15); */
        transition: opacity 0.3s;
      }
      .back-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        font-family: var(--font-display);
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.28em;
        text-transform: uppercase;
        color: var(--clr-neon-rose);
        text-decoration: none;
        padding: 0.5rem 1.1rem;
        border: 1px solid rgba(255,26,110,0.35);
        border-radius: 2px;
        transition: all 0.35s var(--ease-luxury);
        text-shadow: 0 0 12px rgba(255,26,110,0.4);
        position: relative;
        overflow: hidden;
      }
      .back-btn::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, var(--clr-crimson), var(--clr-neon-hot));
        transform: translateX(-100%);
        transition: transform 0.35s var(--ease-luxury);
        z-index: -1;
      }
      .back-btn:hover {
        color: var(--clr-white);
        border-color: var(--clr-neon-pink);
        box-shadow: var(--neon-glow);
        text-shadow: none;
      }
      .back-btn:hover::before { transform: translateX(0); }
      .back-btn-arrow { font-size: 0.9rem; line-height: 1; }

      /* ── Profile Hero (main image) ──────────────────────── */
      .profile-hero {
        margin-top: 0; /* body padding handles the offset */
        padding-top: 130px; /* navbar + back-bar height */
        position: relative;
        overflow: hidden;
        background: var(--clr-bg);
      }
      .profile-hero-img-wrap {
        position: relative;
        max-width: 900px;
        margin: 0 auto;
      }
      .profile-hero-img-wrap img {
    width: 100%;
    max-width: 700px;   /* LIMIT WIDTH */
    height: auto;
    display: block;
    margin: 0 auto;     /* center it nicely */
    object-fit: cover;
    border-radius: 3px;

    box-shadow:
      0 0 0 1px rgba(255,26,110,0.25),
      0 0 30px rgba(255,26,110,0.35),
      0 0 80px rgba(224,0,127,0.18),
      0 40px 80px rgba(0,0,0,0.9);
}
      .profile-hero-img-wrap img:hover {
        filter: saturate(1.0) brightness(0.98);
        box-shadow:
          0 0 0 1px rgba(255,26,110,0.5),
          0 0 45px rgba(255,26,110,0.55),
          0 0 110px rgba(224,0,127,0.3),
          0 40px 80px rgba(0,0,0,0.9);
      }
      /* Crimson vignette fade at the bottom of the hero image */
      .profile-hero-img-wrap::after {
        content: '';
        position: absolute;
        bottom: 0; left: 0; right: 0;
        height: 38%;
        background: linear-gradient(to top, var(--clr-bg) 0%, transparent 100%);
        pointer-events: none;
        border-radius: 0 0 3px 3px;
      }
      /* Name overlay on the hero image */
      .profile-hero-name {
        position: absolute;
        bottom: 2.5rem; left: 0; right: 0;
        z-index: 2;
        text-align: center;
        pointer-events: none;
      }
      .profile-hero-name h1 {
        font-family: var(--font-accent);
        font-size: clamp(2.4rem, 5vw, 4rem);
        font-weight: 700;
        color: var(--clr-gold-light);
        letter-spacing: 0.04em;
        text-shadow: var(--gold-glow), 0 4px 20px rgba(0,0,0,0.8);
        margin-bottom: 0.4rem;
      }
      .profile-hero-name .hero-sub {
        font-family: var(--font-display);
        font-size: 0.62rem;
        letter-spacing: 0.45em;
        text-transform: uppercase;
        color: var(--clr-neon-rose);
        text-shadow: var(--neon-glow-soft);
      }

      /* ── Profile Body ────────────────────────────────────── */
      .profile-body {
        max-width: 960px;
        margin: 0 auto;
        padding: 0 2rem 6rem;
        position: relative;
        z-index: 1;
      }

      /* ── Gallery Strip ───────────────────────────────────── */
      .gallery-section {
        margin: 4rem 0 4.5rem;
      }
      .gallery-section .eyebrow {
        font-family: var(--font-display);
        font-size: 0.6rem;
        letter-spacing: 0.45em;
        text-transform: uppercase;
        color: var(--clr-neon-rose);
        text-shadow: var(--neon-glow-soft);
        display: block;
        margin-bottom: 1.4rem;
        opacity: 0.9;
        text-align: center;
      }
      .gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
      }
      .gallery-thumb {
        position: relative;
        overflow: hidden;
        border-radius: 3px;
        border: 1px solid rgba(201,162,39,0.12);
        cursor: zoom-in;
        transition: border-color 0.4s var(--ease-luxury), box-shadow 0.4s var(--ease-luxury);
      }
      .gallery-thumb img {
        width: 100%;
        aspect-ratio: 3 / 4;
        object-fit: cover;
        display: block;
        filter: saturate(0.8) brightness(0.85);
        transition: transform 0.6s var(--ease-luxury), filter 0.4s;
      }
      .gallery-thumb:hover {
        border-color: rgba(255,26,110,0.5);
        box-shadow: 0 0 20px rgba(255,26,110,0.3), 0 0 55px rgba(224,0,127,0.15);
      }
      .gallery-thumb:hover img {
        transform: scale(1.08);
        filter: saturate(1.0) brightness(0.95);
      }
      /* Zoom icon on hover */
      .gallery-thumb::after {
        content: '⊕';
        position: absolute;
        bottom: 0.7rem; right: 0.8rem;
        font-size: 1.1rem;
        color: var(--clr-neon-rose);
        text-shadow: var(--neon-glow);
        opacity: 0;
        transform: scale(0.7);
        transition: opacity 0.3s, transform 0.3s var(--ease-bounce);
        pointer-events: none;
      }
      .gallery-thumb:hover::after {
        opacity: 1;
        transform: scale(1);
      }
      /* Neon edge on gallery thumbs */
      .gallery-thumb .thumb-neon-edge {
        position: absolute;
        bottom: 0; left: 0; right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--clr-neon-pink), var(--clr-neon-magenta), var(--clr-neon-pink), transparent);
        box-shadow: 0 0 8px rgba(255,26,110,0.7), 0 0 22px rgba(224,0,127,0.4);
        transform: scaleX(0);
        transition: transform 0.35s var(--ease-luxury);
      }
      .gallery-thumb:hover .thumb-neon-edge { transform: scaleX(1); }

      /* ── Lightbox ─────────────────────────────────────────── */
      #lightbox {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 9950;
        background: rgba(8,0,3,0.95);
        align-items: center;
        justify-content: center;
        cursor: zoom-out;
      }
      #lightbox.active { display: flex; }
      #lightbox img {
        max-width: 90vw;
        max-height: 90vh;
        object-fit: contain;
        border-radius: 3px;
        border: 1px solid rgba(255,26,110,0.3);
        box-shadow: 0 0 60px rgba(255,26,110,0.3), 0 0 130px rgba(224,0,127,0.15);
        animation: lbFadeIn 0.3s var(--ease-luxury);
      }
      @keyframes lbFadeIn {
        from { opacity: 0; transform: scale(0.93); }
        to   { opacity: 1; transform: scale(1); }
      }
      #lightbox .lb-close {
        position: absolute;
        top: 1.4rem; right: 1.8rem;
        font-family: var(--font-display);
        font-size: 0.65rem;
        letter-spacing: 0.3em;
        text-transform: uppercase;
        color: var(--clr-neon-rose);
        text-shadow: var(--neon-glow-soft);
        cursor: pointer;
        opacity: 0.8;
        transition: opacity 0.2s;
      }
      #lightbox .lb-close:hover { opacity: 1; text-shadow: var(--neon-glow); }

      /* ── Section Rule ─────────────────────────────────────── */
      .profile-rule {
        width: 60px; height: 1px;
        background: linear-gradient(90deg, transparent, var(--clr-neon-pink), var(--clr-gold), var(--clr-neon-pink), transparent);
        margin: 0 0 2.2rem;
        box-shadow: var(--neon-glow-soft);
      }

      /* ── Profile Info Card ────────────────────────────────── */
      .profile-info-card {
        background: linear-gradient(160deg, rgba(35,0,14,0.7) 0%, rgba(18,0,8,0.78) 100%);
        border: 1px solid rgba(201,162,39,0.18);
        border-radius: 4px;
        padding: 3rem 3rem 3.5rem;
        position: relative;
        overflow: hidden;
        box-shadow: 0 25px 70px rgba(0,0,0,0.75), 0 0 50px rgba(180,0,40,0.1);
        margin-bottom: 3rem;
      }
      /* Gold corner brackets */
      .profile-info-card::before {
        content: '';
        position: absolute;
        top: 14px; left: 14px;
        width: 48px; height: 48px;
        border-top: 1px solid rgba(201,162,39,0.35);
        border-left: 1px solid rgba(201,162,39,0.35);
      }
      .profile-info-card::after {
        content: '';
        position: absolute;
        bottom: 14px; right: 14px;
        width: 48px; height: 48px;
        border-bottom: 1px solid rgba(201,162,39,0.35);
        border-right: 1px solid rgba(201,162,39,0.35);
      }
      /* Neon top stripe */
      .profile-info-card .info-neon-top {
        position: absolute;
        top: 0; left: 0; right: 0; height: 2px;
        background: linear-gradient(90deg, transparent, var(--clr-neon-magenta), var(--clr-neon-pink), var(--clr-neon-magenta), transparent);
        box-shadow: var(--neon-glow);
        border-radius: 4px 4px 0 0;
      }
      .info-section-label {
        font-family: var(--font-display);
        font-size: 0.6rem;
        letter-spacing: 0.45em;
        text-transform: uppercase;
        color: var(--clr-neon-rose);
        text-shadow: var(--neon-glow-soft);
        opacity: 0.9;
        display: block;
        margin-bottom: 1.6rem;
      }

      /* Description */
      .profile-description {
        font-family: var(--font-body);
        font-size: 1.18rem;
        font-weight: 300;
        font-style: italic;
        line-height: 1.82;
        color: rgba(240,221,208,0.88);
        margin-bottom: 2.8rem;
        border-left: 2px solid rgba(255,26,110,0.3);
        padding-left: 1.4rem;
      }

      /* Stats row */
      .profile-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2.8rem;
      }
      .stat-item {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
      }
      .stat-label {
        font-family: var(--font-display);
        font-size: 0.58rem;
        letter-spacing: 0.35em;
        text-transform: uppercase;
        color: var(--clr-gold);
        opacity: 0.75;
      }
      .stat-value {
        font-family: var(--font-accent);
        font-size: 1.2rem;
        font-weight: 400;
        color: var(--clr-text);
        letter-spacing: 0.04em;
      }

      /* Divider between stats and fetishes */
      .info-inner-rule {
        width: 100%; height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255,26,110,0.25), rgba(201,162,39,0.2), rgba(255,26,110,0.25), transparent);
        margin-bottom: 2.8rem;
      }

      /* Fetish tags */
      .fetishes-label {
        font-family: var(--font-display);
        font-size: 0.58rem;
        letter-spacing: 0.35em;
        text-transform: uppercase;
        color: var(--clr-gold);
        opacity: 0.75;
        display: block;
        margin-bottom: 1.1rem;
      }
      .fetish-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.65rem;
      }
      .fetish-tag {
        font-family: var(--font-display);
        font-size: 0.6rem;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        color: var(--clr-neon-rose);
        border: 1px solid rgba(255,26,110,0.35);
        border-radius: 2px;
        padding: 0.4rem 0.9rem;
        text-shadow: 0 0 10px rgba(255,26,110,0.4);
        background: rgba(255,26,110,0.05);
        transition: all 0.3s var(--ease-luxury);
        cursor: default;
      }
      .fetish-tag:hover {
        border-color: rgba(255,26,110,0.75);
        background: rgba(255,26,110,0.12);
        box-shadow: 0 0 12px rgba(255,26,110,0.25), 0 0 30px rgba(224,0,127,0.12);
        text-shadow: var(--neon-glow-soft);
        color: var(--clr-white);
      }

      /* ── Reveal Number Block ──────────────────────────────── */
      .reveal-block {
        background: linear-gradient(160deg, rgba(35,0,14,0.7) 0%, rgba(18,0,8,0.78) 100%);
        border: 1px solid rgba(201,162,39,0.18);
        border-radius: 4px;
        padding: 3rem;
        position: relative;
        overflow: hidden;
        text-align: center;
        box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 60px rgba(180,0,40,0.1);
      }
      .reveal-block::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; height: 2px;
        background: linear-gradient(90deg, transparent, var(--clr-neon-magenta), var(--clr-neon-pink), var(--clr-neon-magenta), transparent);
        box-shadow: var(--neon-glow);
      }
      .reveal-block-eyebrow {
        font-family: var(--font-display);
        font-size: 0.6rem;
        letter-spacing: 0.45em;
        text-transform: uppercase;
        color: var(--clr-neon-rose);
        text-shadow: var(--neon-glow-soft);
        display: block;
        margin-bottom: 0.8rem;
      }
      .reveal-block h2 {
        font-family: var(--font-accent);
        font-size: clamp(1.5rem, 3vw, 2.1rem);
        font-weight: 400;
        color: var(--clr-gold-light);
        letter-spacing: 0.03em;
        text-shadow: 0 0 25px rgba(201,162,39,0.35);
        margin-bottom: 0.5rem;
      }
      .reveal-block p {
        font-family: var(--font-body);
        font-size: 1.05rem;
        font-weight: 300;
        font-style: italic;
        color: var(--clr-text-dim);
        margin-bottom: 2.5rem;
      }

      /* The big reveal button — inherits .reveal-btn from style.css but larger */
      .reveal-btn-large {
        display: inline-block;
        padding: 1.15rem 3.5rem;
        font-family: var(--font-display);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.28em;
        text-transform: uppercase;
        background: transparent;
        color: var(--clr-neon-rose);
        border: 1px solid rgba(255,26,110,0.45);
        border-radius: 2px;
        cursor: pointer;
        transition: all 0.4s var(--ease-luxury);
        position: relative;
        overflow: hidden;
        text-shadow: 0 0 12px rgba(255,26,110,0.4);
        min-width: 260px;
      }
      .reveal-btn-large::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, var(--clr-crimson), var(--clr-neon-hot));
        transform: translateX(-100%);
        transition: transform 0.4s var(--ease-luxury);
        z-index: -1;
      }
      .reveal-btn-large:hover {
        color: var(--clr-white);
        border-color: var(--clr-neon-pink);
        box-shadow: var(--neon-glow), 0 0 50px rgba(180,0,40,0.4);
        text-shadow: none;
        transform: translateY(-3px);
      }
      .reveal-btn-large:hover::before { transform: translateX(0); }

      /* Revealed number display */
      .profile-phone-number {
        margin-top: 2rem;
        animation: phoneReveal 0.5s var(--ease-bounce);
      }
      .profile-phone-number.hidden { display: none; }
      .profile-phone-number .phone-platform {
        font-family: var(--font-display);
        font-size: 0.58rem;
        letter-spacing: 0.38em;
        text-transform: uppercase;
        color: var(--clr-text-dim);
        display: block;
        margin-bottom: 0.7rem;
      }
      .profile-phone-number a {
        font-family: var(--font-display);
        font-size: clamp(1.6rem, 4vw, 2.2rem);
        font-weight: 700;
        letter-spacing: 0.1em;
        color: var(--clr-gold-light);
        text-decoration: none;
        text-shadow: var(--gold-glow);
        transition: all 0.3s;
        display: inline-block;
        padding: 0.5rem 1.5rem;
        border-bottom: 1px solid rgba(201,162,39,0.35);
		z-index: 2;
      }
      .profile-phone-number a:hover {
        color: var(--clr-white);
        text-shadow: var(--gold-glow), 0 0 20px rgba(255,255,255,0.2);
        border-bottom-color: var(--clr-gold);
      }
      /* Pulse ring around the revealed number */
      .number-glow-ring {
        display: inline-block;
        position: relative;
		z-index: 1;
        margin-top: 0.6rem;
      }
      .number-glow-ring::before {
        content: '';
        position: relative;
		pointer-events: none;
		z-index: 0;
        inset: -12px;
        border-radius: 4px;
        border: 1px solid rgba(201,162,39,0.25);
        animation: ringPulse 2.4s ease-in-out infinite;
      }
      @keyframes ringPulse {
        0%, 100% { opacity: 0.35; transform: scale(1); }
        50%       { opacity: 0.75; transform: scale(1.03); box-shadow: 0 0 18px rgba(201,162,39,0.35); }
      }

      /* ── Responsive ────────────────────────────────────────── */
      @media (max-width: 768px) {
        .profile-hero { padding-top: 120px; }
        .profile-info-card { padding: 2.5rem 1.8rem; }
        .reveal-block { padding: 2.5rem 1.8rem; }
        .gallery-grid { grid-template-columns: repeat(2, 1fr); }
        .profile-stats { grid-template-columns: 1fr 1fr; }
        .profile-body { padding: 0 1.2rem 5rem; }
      }
      @media (max-width: 480px) {
        .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
        .profile-hero-name h1 { font-size: 2rem; }
        .reveal-btn-large { min-width: 200px; padding: 1rem 2rem; }
        .back-bar { padding: 0.6rem 1rem; }
      }