/* Our Staff — luxury premium page */

/* Banner */
.staff-banner--luxury {
    position: relative;
    overflow: hidden;
}
.staff-banner__glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(212, 168, 75, 0.14), transparent 65%),
        radial-gradient(circle at 15% 20%, rgba(212, 168, 75, 0.08), transparent 40%);
    pointer-events: none;
}
.staff-banner__title {
    position: relative;
}
.staff-banner__line {
    display: block;
    width: 64px;
    height: 3px;
    margin: 1.25rem auto 0;
    background: linear-gradient(90deg, transparent, var(--saffron, #d4a84b), transparent);
    border-radius: 3px;
    transform-origin: center;
}

/* Decorative orbs */
.staff-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.staff-decor__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(0);
}
.staff-decor__orb--1 {
    width: 280px;
    height: 280px;
    top: -80px;
    right: -60px;
    background: radial-gradient(circle, rgba(212, 168, 75, 0.12), transparent 70%);
}
.staff-decor__orb--2 {
    width: 220px;
    height: 220px;
    bottom: 10%;
    left: -70px;
    background: radial-gradient(circle, rgba(26, 47, 107, 0.06), transparent 70%);
}
.staff-decor__mesh {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image: radial-gradient(rgba(212, 168, 75, 0.35) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}

/* Intro */
.staff-intro--luxury {
    position: relative;
    padding: clamp(2.25rem, 4.5vw, 3.25rem) 0 clamp(2.5rem, 5vw, 3.5rem);
    background: linear-gradient(180deg, #fff 0%, #faf8f5 55%, #f5f0e8 100%);
    overflow: hidden;
}
.staff-intro__shell {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.staff-intro__title {
    font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
    font-size: clamp(1.85rem, 3.8vw, 2.5rem);
    color: var(--navy, #1a2f6b);
    line-height: 1.2;
    margin: 0.5rem 0 0;
    letter-spacing: -0.01em;
}
.staff-intro__title em {
    font-style: italic;
    color: var(--saffron, #d4a84b);
}
.staff-intro__divider {
    margin: 1.25rem auto 1.5rem;
    transform-origin: center;
}
.staff-intro__card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: clamp(1.65rem, 3vw, 2.25rem);
    box-shadow:
        0 24px 60px rgba(15, 29, 69, 0.1),
        0 0 0 1px rgba(26, 47, 107, 0.05);
    border-top: 4px solid var(--saffron, #d4a84b);
    text-align: left;
    overflow: hidden;
}
.staff-intro__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 168, 75, 0.04), transparent 45%);
    pointer-events: none;
}
.staff-intro__card-corner {
    position: absolute;
    width: 28px;
    height: 28px;
    border-color: rgba(212, 168, 75, 0.35);
    border-style: solid;
    pointer-events: none;
}
.staff-intro__card-corner--tl {
    top: 14px;
    left: 14px;
    border-width: 2px 0 0 2px;
    border-radius: 4px 0 0 0;
}
.staff-intro__card-corner--br {
    bottom: 14px;
    right: 14px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 4px 0;
}

/* Stats — elevated strip */
.staff-stats--luxury {
    position: relative;
    padding: clamp(1.75rem, 3.5vw, 2.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
    margin-top: 0;
    z-index: 1;
    background: #f5f0e8;
}
.staff-stats__wrap {
    max-width: 980px;
    margin: 0 auto;
    padding: 0.35rem;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(212, 168, 75, 0.55), rgba(26, 47, 107, 0.25), rgba(212, 168, 75, 0.45));
    box-shadow: 0 20px 50px rgba(15, 29, 69, 0.15);
}
.staff-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    background: transparent;
}
.staff-stat-card {
    position: relative;
    text-align: center;
    padding: 2rem 1.25rem;
    background: linear-gradient(160deg, var(--navy-dark, #0f1d45) 0%, var(--navy, #1a2f6b) 100%);
    color: #fff;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.staff-stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, transparent, rgba(212, 168, 75, 0.35), transparent);
}
.staff-stat-card:hover {
    transform: scale(1.03);
    z-index: 1;
}
.staff-stat-card__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.08) 50%, transparent 60%);
    transform: translateX(-120%);
    transition: transform 0.8s ease;
    pointer-events: none;
}
.staff-stat-card:hover .staff-stat-card__shine {
    transform: translateX(120%);
}
.staff-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 168, 75, 0.2), transparent 55%);
    pointer-events: none;
}
.staff-stat-card__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(212, 168, 75, 0.12);
    border: 1px solid rgba(212, 168, 75, 0.3);
    color: var(--saffron, #d4a84b);
    font-size: 1.25rem;
    margin-bottom: 0.85rem;
    box-shadow: 0 8px 24px rgba(212, 168, 75, 0.15);
}
.staff-stat-card__value {
    position: relative;
    display: block;
    font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
    font-size: clamp(2rem, 3.5vw, 2.65rem);
    line-height: 1;
    color: #fff;
    letter-spacing: -0.02em;
}
.staff-stat-card__label {
    position: relative;
    display: block;
    margin-top: 0.45rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Team section */
.staff-team--luxury {
    position: relative;
    padding: clamp(3rem, 6vw, 4.5rem) 0;
    background: linear-gradient(180deg, #f5f0e8 0%, #fff 40%, #faf8f5 100%);
    overflow: hidden;
}
.staff-team__title {
    font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
    font-size: clamp(1.75rem, 3.2vw, 2.25rem);
    color: var(--navy, #1a2f6b);
    margin: 0.35rem 0 0.5rem;
    letter-spacing: -0.01em;
}
.staff-team__subtitle {
    max-width: 580px;
    margin: 0 auto;
    color: #64748b;
    font-size: 1.02rem;
    line-height: 1.6;
}
.staff-team__head {
    position: relative;
    z-index: 1;
    margin-bottom: 2.75rem;
}
.staff-team__divider {
    width: 80px;
    height: 3px;
    margin: 1.25rem auto 0;
    background: linear-gradient(90deg, transparent, var(--saffron, #d4a84b), transparent);
    border-radius: 3px;
    transform-origin: center;
}

/* Luxury staff cards */
.staff-member-card--luxury {
    position: relative;
    height: 100%;
    background: #fff;
    border-radius: 22px;
    border: 1px solid rgba(26, 47, 107, 0.07);
    box-shadow:
        0 10px 40px rgba(15, 29, 69, 0.07),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    transition:
        transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.55s ease,
        border-color 0.4s ease;
}
.staff-member-card--luxury:hover {
    transform: translateY(-12px);
    border-color: rgba(212, 168, 75, 0.35);
    box-shadow:
        0 28px 60px rgba(15, 29, 69, 0.16),
        0 0 0 1px rgba(212, 168, 75, 0.12);
}
.staff-member-card__accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy, #1a2f6b), var(--saffron, #d4a84b), var(--navy, #1a2f6b));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.staff-member-card--luxury:hover .staff-member-card__accent {
    transform: scaleX(1);
}
.staff-member-card__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(212, 168, 75, 0.06) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}
.staff-member-card--luxury:hover .staff-member-card__shine {
    opacity: 1;
}
.staff-member-card__photo-wrap {
    position: relative;
    padding: 2.25rem 1.5rem 0;
    text-align: center;
    z-index: 1;
}
.staff-member-card__glow {
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 75, 0.25), transparent 68%);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}
.staff-member-card--luxury:hover .staff-member-card__glow {
    opacity: 1;
    transform: translateX(-50%) scale(1.08);
}
.staff-member-card__frame {
    position: relative;
    width: 148px;
    height: 148px;
    margin: 0 auto;
    padding: 5px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--saffron, #d4a84b), var(--navy-dark, #0f1d45) 55%, var(--navy, #1a2f6b));
    box-shadow:
        0 16px 40px rgba(15, 29, 69, 0.18),
        0 0 0 1px rgba(212, 168, 75, 0.2);
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.55s ease;
}
.staff-member-card--luxury:hover .staff-member-card__frame {
    transform: scale(1.06);
    box-shadow:
        0 22px 48px rgba(15, 29, 69, 0.22),
        0 0 24px rgba(212, 168, 75, 0.25);
}
.staff-member-card__photo,
.staff-member-card__placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
}
.staff-member-card__frame:not(.is-fallback) .staff-member-card__placeholder--fallback {
    display: none;
}
.staff-member-card__frame.is-fallback .staff-member-card__photo {
    display: none;
}
.staff-member-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--navy, #1a2f6b), var(--navy-dark, #0f1d45));
    color: var(--saffron, #d4a84b);
    font-size: 2.75rem;
}
.staff-member-card__body {
    position: relative;
    z-index: 1;
    padding: 1.35rem 1.35rem 1.85rem;
    text-align: center;
}
.staff-member-card__name {
    font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
    font-size: 1.18rem;
    color: var(--navy, #1a2f6b);
    margin: 0 0 0.3rem;
}
.staff-member-card__role {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--saffron, #d4a84b);
    margin: 0;
    letter-spacing: 0.02em;
}
.staff-member-card__dept {
    display: inline-block;
    margin-top: 0.7rem;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(26, 47, 107, 0.07), rgba(212, 168, 75, 0.08));
    border: 1px solid rgba(26, 47, 107, 0.08);
    color: var(--navy, #1a2f6b);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.staff-member-card__qual {
    margin: 0.7rem 0 0;
    font-size: 0.8rem;
    color: #64748b;
}
.staff-member-card__qual i {
    color: var(--saffron, #d4a84b);
    margin-right: 0.25rem;
}
.staff-member-card__bio {
    margin: 0.85rem 0 0;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(26, 47, 107, 0.08);
    font-size: 0.84rem;
    line-height: 1.6;
    color: #4b5563;
}

.staff-empty {
    text-align: center;
    padding: 3.5rem 1.5rem;
    border-radius: 20px;
    background: #fff;
    border: 1px dashed rgba(212, 168, 75, 0.4);
    color: #64748b;
    box-shadow: 0 12px 32px rgba(15, 29, 69, 0.06);
}
.staff-empty i {
    font-size: 2.75rem;
    color: var(--saffron, #d4a84b);
    margin-bottom: 0.85rem;
    display: block;
}

.staff-pillars--luxury {
    position: relative;
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
}
.staff-pillars__head {
    margin-bottom: 0.5rem;
}
.staff-pillar-card {
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}
.staff-pillar-card:hover {
    transform: translateY(-6px);
}

.staff-cta--luxury {
    padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.staff-cta__panel {
    position: relative;
    overflow: hidden;
}
.staff-cta__panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(212, 168, 75, 0.12), transparent 50%);
    pointer-events: none;
}

@media (max-width: 767px) {
    .staff-stats__grid {
        grid-template-columns: 1fr;
    }
    .staff-stat-card:not(:last-child)::after {
        top: auto;
        bottom: 0;
        left: 20%;
        right: 20%;
        width: 60%;
        height: 1px;
    }
}

@media (max-width: 991px) {
    .staff-stats__wrap {
        padding: 0.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .staff-member-card--luxury,
    .staff-stat-card,
    .staff-member-card__frame {
        transition: none;
    }
}

/* ── Wave dividers ── */
.staff-wave {
    line-height: 0;
    color: #faf8f5;
}
.staff-wave svg {
    display: block;
    width: 100%;
    height: 48px;
}
.staff-wave--cream { color: #faf8f5; margin-top: -1px; }
.staff-wave--navy { color: var(--navy-dark, #0f1d45); }

/* Banner particles */
.staff-banner__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.staff-banner__particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(212, 168, 75, 0.55);
    top: calc(15% + var(--i) * 9%);
    left: calc(8% + var(--i) * 11%);
    animation: staffParticle 4s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.45s);
}
@keyframes staffParticle {
    0%, 100% { opacity: 0.2; transform: translateY(0) scale(1); }
    50% { opacity: 0.9; transform: translateY(-12px) scale(1.3); }
}

.staff-decor__watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(8rem, 18vw, 14rem);
    color: rgba(26, 47, 107, 0.03);
    pointer-events: none;
}

/* Featured leadership row */
.staff-featured {
    padding: clamp(2rem, 4vw, 3rem) 0;
    background: linear-gradient(180deg, #faf8f5 0%, #fff 100%);
}
.staff-featured__title {
    font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    color: var(--navy, #1a2f6b);
    margin: 0.35rem 0 0;
}
.staff-featured__head {
    margin-bottom: 2rem;
}
.staff-member-card--featured {
    background: linear-gradient(145deg, #fff 0%, #fdfbf7 100%);
    border: 1px solid rgba(212, 168, 75, 0.2);
    box-shadow:
        0 16px 48px rgba(15, 29, 69, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}
.staff-member-card--featured .staff-member-card__inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
}
@media (min-width: 576px) {
    .staff-member-card--featured .staff-member-card__inner {
        flex-direction: row;
        text-align: left;
    }
    .staff-member-card--featured .staff-member-card__body {
        text-align: left;
        flex: 1;
    }
    .staff-member-card--featured .staff-member-card__photo-wrap {
        padding: 0;
        flex-shrink: 0;
    }
}
.staff-member-card--featured .staff-member-card__frame {
    width: 132px;
    height: 132px;
}
.staff-member-card--featured .staff-member-card__accent {
    transform: scaleX(1);
    height: 5px;
}
.staff-member-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.75rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--saffron, #d4a84b), #c9983f);
    color: var(--navy-dark, #0f1d45);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(212, 168, 75, 0.35);
}
.staff-member-card__inner {
    position: relative;
    z-index: 1;
}

/* View profile button */
.staff-member-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 1rem;
    padding: 0.55rem 1.15rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--navy, #1a2f6b), var(--navy-dark, #0f1d45));
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.staff-member-card__btn i {
    transition: transform 0.35s ease;
}
.staff-member-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 29, 69, 0.25);
    background: linear-gradient(135deg, var(--navy-dark, #0f1d45), var(--navy, #1a2f6b));
}
.staff-member-card__btn:hover i {
    transform: translateX(4px);
}
.staff-member-card--featured .staff-member-card__btn {
    background: linear-gradient(135deg, var(--saffron, #d4a84b), #c9983f);
    color: var(--navy-dark, #0f1d45);
}
.staff-member-card--featured .staff-member-card__btn:hover {
    box-shadow: 0 10px 28px rgba(212, 168, 75, 0.4);
}

/* Department filter */
.staff-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.25rem;
}
.staff-filter__btn {
    padding: 0.5rem 1.15rem;
    border-radius: 999px;
    border: 1px solid rgba(26, 47, 107, 0.12);
    background: #fff;
    color: var(--navy, #1a2f6b);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all 0.35s ease;
}
.staff-filter__btn:hover {
    border-color: rgba(212, 168, 75, 0.45);
    color: var(--navy-dark, #0f1d45);
}
.staff-filter__btn.is-active {
    background: linear-gradient(135deg, var(--navy, #1a2f6b), var(--navy-dark, #0f1d45));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 22px rgba(15, 29, 69, 0.2);
}
.staff-filter__empty {
    text-align: center;
    padding: 2rem;
    color: #64748b;
    font-size: 0.95rem;
}
.staff-grid-item.is-hidden {
    display: none !important;
}

/* Profile modal */
.staff-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.staff-modal.is-open {
    opacity: 1;
    visibility: visible;
}
.staff-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 29, 69, 0.72);
    backdrop-filter: blur(8px);
}
.staff-modal__panel {
    position: relative;
    width: min(100%, 720px);
    max-height: min(90vh, 640px);
    overflow-y: auto;
    background: #fff;
    border-radius: 24px;
    box-shadow:
        0 32px 80px rgba(15, 29, 69, 0.35),
        0 0 0 1px rgba(212, 168, 75, 0.15);
    transform: scale(0.92) translateY(24px);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.staff-modal.is-open .staff-modal__panel {
    transform: scale(1) translateY(0);
}
.staff-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(26, 47, 107, 0.08);
    color: var(--navy, #1a2f6b);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.staff-modal__close:hover {
    background: rgba(212, 168, 75, 0.2);
    transform: rotate(90deg);
}
.staff-modal__layout {
    display: grid;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .staff-modal__layout {
        grid-template-columns: 220px 1fr;
    }
}
.staff-modal__visual {
    position: relative;
    padding: 2rem 1.5rem;
    background: linear-gradient(160deg, var(--navy-dark, #0f1d45), var(--navy, #1a2f6b));
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.staff-modal__ring {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px solid rgba(212, 168, 75, 0.35);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.06);
}
.staff-modal__photo-wrap {
    position: relative;
    width: 140px;
    height: 140px;
    padding: 5px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--saffron, #d4a84b), var(--navy-dark, #0f1d45));
}
.staff-modal__photo,
.staff-modal__placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.staff-modal__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy, #1a2f6b);
    color: var(--saffron, #d4a84b);
    font-size: 3rem;
}
.staff-modal__content {
    padding: 2rem 1.75rem 2rem 1.5rem;
}
.staff-modal__name {
    font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
    font-size: 1.65rem;
    color: var(--navy, #1a2f6b);
    margin: 0.35rem 0 0.25rem;
}
.staff-modal__role {
    font-weight: 600;
    color: var(--saffron, #d4a84b);
    margin: 0;
}
.staff-modal__dept {
    display: inline-block;
    margin-top: 0.65rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(26, 47, 107, 0.06);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy, #1a2f6b);
}
.staff-modal__qual {
    margin: 0.65rem 0 0;
    font-size: 0.85rem;
    color: #64748b;
}
.staff-modal__qual i { color: var(--saffron, #d4a84b); }
.staff-modal__divider {
    width: 48px;
    height: 3px;
    margin: 1.15rem 0;
    background: linear-gradient(90deg, var(--saffron, #d4a84b), transparent);
    border-radius: 3px;
}
.staff-modal__bio {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}
