/* ============================================================
   Board Member Profile Page
   ============================================================ */

/* ---------- Breadcrumb ---------- */
.profile-breadcrumb {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}
.profile-breadcrumb a {
    color: rgba(255,255,255,.45);
    transition: color 0.3s;
}
.profile-breadcrumb a:hover {
    color: var(--pink-light);
}
.profile-breadcrumb .profile-breadcrumb__sep {
    color: rgba(255,255,255,.25);
    margin: 0 0.5rem;
}
.profile-breadcrumb .profile-breadcrumb__current {
    color: rgba(255,255,255,.7);
}

/* ---------- Profile Hero ---------- */
.profile-hero {
    position: relative;
    padding: 9rem 2rem 5rem;
    background: #0e0e0e;
    text-align: center;
    overflow: hidden;
}
.profile-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 70%, rgba(199,96,122,.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(95,168,168,.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 60%, rgba(231,218,169,.06) 0%, transparent 60%),
        linear-gradient(180deg, #0e0e0e 0%, #161616 100%);
}
.profile-hero__content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}

/* Photo */
.profile-hero__photo-wrap {
    width: 220px;
    height: 220px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(231,218,169,.35);
    animation: profilePhotoIn 0.8s cubic-bezier(.16,1,.3,1) both;
}
.profile-hero__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-hero__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(122,113,89,.06), rgba(122,113,89,.1));
}
.profile-hero__initials {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 500;
    color: rgba(122,113,89,.25);
    letter-spacing: 0.05em;
    user-select: none;
    line-height: 1;
}

@keyframes profilePhotoIn {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}

/* Name & Role */
.profile-hero__name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 400;
    color: #F3E9C5;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}
.profile-hero__role {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--pink-light);
    display: block;
    margin-bottom: 1.5rem;
}
.profile-hero__rule {
    width: 60px;
    height: 2px;
    margin: 0 auto;
    background: linear-gradient(90deg, var(--pink), var(--aqua));
    border-radius: 2px;
}

/* ---------- Bio Content ---------- */
.profile-content {
    padding: 5rem 2rem;
    background: #FDFBF5;
}
.profile-content__inner {
    max-width: 720px;
    margin: 0 auto;
}
.profile-content__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--aqua);
    margin-bottom: 1.5rem;
}
.profile-content__text {
    font-size: 1.02rem;
    color: #444;
    line-height: 2;
    margin-bottom: 1.5rem;
}
.profile-content__text:last-of-type {
    margin-bottom: 0;
}

/* Placeholder for members without bios */
.profile-placeholder {
    text-align: center;
    padding: 3rem 0;
}
.profile-placeholder__message {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: #999;
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto 2rem;
}

/* ---------- Back Nav ---------- */
.profile-nav {
    text-align: center;
    padding: 3rem 2rem 0;
    background: #FDFBF5;
}
.profile-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--aqua);
    transition: color 0.3s, gap 0.3s;
}
.profile-nav__link:hover {
    color: var(--pink);
    gap: 0.75rem;
}
.profile-nav__link i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}
.profile-nav__link:hover i {
    transform: translateX(-3px);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .profile-hero {
        padding: 7.5rem 1.5rem 3.5rem;
    }
    .profile-hero__photo-wrap {
        width: 170px;
        height: 170px;
    }
    .profile-hero__initials {
        font-size: 3rem;
    }
    .profile-content {
        padding: 3.5rem 1.5rem;
    }
    .profile-content__text {
        font-size: 0.95rem;
        line-height: 1.9;
    }
    .profile-nav {
        padding: 2rem 1.5rem 0;
    }
}
