.profile-header {
    background: #fff;
    border-radius: 0 0 18px 18px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 20px;
}
.profile-cover {
    height: 210px;
    background: linear-gradient(135deg, #7A1E65 0%, #E5007D 60%, #FF5CA8 100%);
    position: relative;
}
.profile-cover::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(620px 170px at 12% -10%, rgba(255,255,255,0.16), transparent 60%),
        radial-gradient(520px 200px at 88% 115%, rgba(255,255,255,0.10), transparent 60%);
}
.profile-info-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 28px;
    position: relative;
}
.profile-avatar {
    width: 116px;
    height: 116px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.14);
    margin-top: -58px;
    flex-shrink: 0;
}
.profile-info {
    min-width: 0;
    flex: 1 1 auto;
    padding-top: 16px;
}
.profile-name {
    font-size: 26px;
    font-weight: 800;
    color: var(--nca-text-dark);
    margin: 0 0 6px;
    line-height: 1.2;
    overflow-wrap: break-word;
}
.profile-artforms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.profile-artform {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--nca-magenta);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #F8F1F6;
    border: 1px solid #EED8E8;
    border-radius: 20px;
    padding: 4px 10px;
}
.profile-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
    padding-top: 16px;
}
.profile-info-row--no-contact {
    padding-bottom: 24px;
}
.profile-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 8px 28px 20px;
}
.profile-contact {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    background: var(--nca-bg-light, #F9F8FA);
    color: var(--nca-text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}
.contact-pill svg {
    width: 16px;
    height: 16px;
    stroke: var(--nca-magenta);
    flex-shrink: 0;
}
.profile-about, .profile-social {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 32px;
    margin-bottom: 20px;
}
.profile-about h2, .profile-social h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--nca-text-dark);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.profile-about h2::before, .profile-social h2::before {
    content: '';
    width: 4px;
    height: 16px;
    border-radius: 2px;
    background: linear-gradient(180deg, #E5007D, #7A1E65);
}
.profile-about p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--nca-text-muted);
    margin: 0;
}
.social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    background: var(--nca-bg-light, #F9F8FA);
    color: var(--nca-text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}
.social-pill svg { width: 18px; height: 18px; fill: none; stroke: var(--nca-magenta); stroke-width: 2; flex-shrink: 0; }
.social-pill span { display: inline; }
@media (max-width: 640px) {
    .profile-cover { height: 150px; }
    .profile-info-row { flex-direction: column; align-items: center; text-align: center; gap: 12px; padding: 0 20px; }
    .profile-avatar { width: 100px; height: 100px; margin-top: -50px; }
    .profile-info { padding-top: 6px; }
    .profile-actions { justify-content: center; padding-top: 4px; padding-bottom: 2px; }
    .profile-info-row--no-contact { padding-bottom: 16px; }
    .profile-meta-row { justify-content: center; padding: 14px 20px 18px; }
    .profile-about, .profile-social { padding: 24px 20px; }
    .social-pill span { display: none; }
    .social-pill { padding: 10px; }
}
