/* ============================================================
   Board Page — Redesigned
   Editorial / Magazine-inspired | Modern nonprofit aesthetic
   ============================================================ */

/* ---------- Page Hero ---------- */
.bp-hero {
    position: relative;
    padding: 9rem 2rem 4rem;
    background: #0e0e0e;
    text-align: center;
    overflow: hidden;
}
.bp-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(231,218,169,.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(122,113,89,.06) 0%, transparent 50%),
        linear-gradient(180deg, #0e0e0e 0%, #161616 100%);
}
.bp-hero__content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
}
.bp-hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 300;
    color: #F3E9C5;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}
.bp-hero__desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,.5);
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto;
}
.bp-hero__rule {
    width: 40px;
    height: 1px;
    background: #E7DAA9;
    margin: 1.5rem auto 0;
}

/* ---------- Board Sections ---------- */
.bp-section {
    padding: 5rem 2rem;
    background: #FDFBF5;
}
.bp-section--alt {
    background: #f7f3ea;
}
.bp-section__header {
    text-align: center;
    margin-bottom: 3rem;
}
.bp-section__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7A7159;
    margin-bottom: 0.5rem;
}
.bp-section__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 500;
    color: #161616;
    margin-bottom: 0.5rem;
}
.bp-section__rule {
    width: 40px;
    height: 1px;
    background: #E7DAA9;
    margin: 0 auto;
}

/* ---------- Member Grid ---------- */
.bp-grid {
    display: grid;
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}
.bp-grid--2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 560px;
}
.bp-grid--3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 820px;
}
.bp-grid--4 {
    grid-template-columns: repeat(4, 1fr);
    max-width: 960px;
}

/* ---------- Member Card ---------- */
.bp-card {
    text-align: center;
    padding: 2rem 1.5rem 2.25rem;
    background: transparent;
    border-radius: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(122,113,89,.08);
}

/* Photo area */
.bp-card__photo-wrap {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(231,218,169,.35);
    transition: border-color 0.3s ease;
}
.bp-card:hover .bp-card__photo-wrap {
    border-color: #E7DAA9;
}
.bp-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Placeholder — initials based */
.bp-card__photo--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));
}
.bp-card__initials {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 500;
    color: rgba(122,113,89,.25);
    letter-spacing: 0.05em;
    user-select: none;
    line-height: 1;
}

/* Text */
.bp-card__name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.2;
    color: #161616;
    margin-bottom: 0.35rem;
}
.bp-card__role {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #7A7159;
    display: block;
    margin-bottom: 1rem;
}
.bp-card__bio {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.7;
    font-style: italic;
    max-width: 240px;
    margin: 0 auto;
}

/* ---------- Responsive ---------- */

/* Tablet */
@media (max-width: 1024px) {
    .bp-grid--4 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 560px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .bp-hero {
        padding: 7.5rem 1.5rem 3rem;
    }
    .bp-hero__title {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
    }
    .bp-hero__desc {
        font-size: 0.88rem;
    }

    .bp-section {
        padding: 3.5rem 1.5rem;
    }

    .bp-grid--2,
    .bp-grid--3 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: 1rem;
    }
    .bp-grid--4 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: 1rem;
    }

    .bp-card {
        padding: 1.25rem 1rem 1.5rem;
    }
    .bp-card__photo-wrap {
        width: 130px;
        height: 130px;
        margin-bottom: 1rem;
    }
    .bp-card__initials {
        font-size: 2.2rem;
    }
    .bp-card__name {
        font-size: 1.1rem;
    }
    .bp-card__role {
        font-size: 0.6rem;
        letter-spacing: 0.12em;
    }
    .bp-card__bio {
        font-size: 0.8rem;
    }
}

@media (max-width: 400px) {
    .bp-grid--2,
    .bp-grid--3,
    .bp-grid--4 {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
    .bp-card__photo-wrap {
        width: 160px;
        height: 160px;
    }
    .bp-card__bio {
        display: block;
    }
}

/* ---------- Overflow prevention ---------- */
html, body {
    overflow-x: hidden;
}
