/* ── Faculty Members page ── */
.fm-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 88px 0 72px;
}
.fm-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.fm-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(20, 16, 34, .95) 0%, rgba(31, 31, 31, .84) 42%, rgba(36, 24, 32, .92) 100%);
}
.fm-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fm-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
}
.fm-hero__copy { max-width: 640px; }
.fm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--rsbt-gold);
}
.fm-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--rsbt-gold);
}
.fm-eyebrow--center {
    display: flex;
    justify-content: center;
}
.fm-hero__title {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.02em;
}
.fm-hero__subtitle {
    margin: 14px 0 0;
    font-size: 15px;
    color: #d6b565;
    font-weight: 600;
}
.fm-hero__tagline {
    margin: 18px 0 0;
    font-size: clamp(20px, 2.6vw, 28px);
    line-height: 1.4;
    color: #f9fafb;
    font-weight: 600;
    font-style: italic;
}
.fm-breadcrumb {
    margin-top: 28px;
    font-size: 13px;
    color: #9ca3af;
}
.fm-breadcrumb a { color: #d6b565; }
.fm-breadcrumb a:hover { text-decoration: underline; }
.fm-hero__visual {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 255, 255, .12);
}
.fm-hero__visual img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.fm-hero__visual:hover img { transform: scale(1.03); }

.fm-intro {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}
.fm-intro p {
    margin: 0;
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.7;
    color: #374151;
}

.fm-stats {
    background: linear-gradient(135deg, #1f1f1f 0%, #2a1f28 50%, #1a1a1a 100%);
    padding: 48px 0;
}
.fm-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}
.fm-stat-card {
    text-align: center;
    padding: 28px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(214, 181, 101, .25);
    backdrop-filter: blur(8px);
    transition: transform .3s ease, border-color .3s ease;
}
.fm-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(214, 181, 101, .5);
}
.fm-stat-card__value {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    color: #f0dca0;
    line-height: 1.1;
}
.fm-stat-card__label {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #c4cad4;
}

.fm-split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
}
.fm-split__content h2 {
    margin: 0 0 18px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(26px, 3.4vw, 36px);
    font-weight: 600;
    color: #1f2937;
    line-height: 1.2;
}
.fm-split__content p {
    margin: 0 0 16px;
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
}
.fm-split__outro {
    padding: 16px 20px;
    border-left: 3px solid var(--rsbt-gold);
    background: rgba(180, 58, 84, .06);
    border-radius: 0 10px 10px 0;
    font-style: italic;
}
.fm-split__media {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(31, 31, 31, .15);
    border: 1px solid #e5e7eb;
}
.fm-split__media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.fm-split__media:hover img { transform: scale(1.03); }

.fm-sec-head {
    max-width: 680px;
    margin: 0 auto 44px;
}
.fm-sec-head--center { text-align: center; }
.fm-sec-head h2 {
    margin: 0 0 14px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 3.8vw, 40px);
    font-weight: 600;
    color: #1f2937;
    line-height: 1.2;
}
.fm-sec-head__lead {
    margin: 0;
    font-size: 17px;
    line-height: 1.65;
    color: #6b7280;
}

.fm-attributes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.fm-attribute-card {
    padding: 28px 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 32px rgba(31, 31, 31, .06);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.fm-attribute-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 44px rgba(31, 31, 31, .12);
    border-color: rgba(180, 58, 84, .3);
}
.fm-attribute-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(180, 58, 84, .12), rgba(214, 181, 101, .15));
    font-size: 22px;
    margin-bottom: 16px;
}
.fm-attribute-card h3 {
    margin: 0 0 10px;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}
.fm-attribute-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #6b7280;
}

.fm-expertise {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}
.fm-expertise-card {
    text-align: center;
    padding: 28px 16px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: 3px solid var(--fm-color, var(--rsbt-gold));
    box-shadow: 0 10px 28px rgba(31, 31, 31, .06);
    transition: transform .3s ease, box-shadow .3s ease;
}
.fm-expertise-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(31, 31, 31, .1);
}
.fm-expertise-card__icon {
    display: block;
    font-size: 28px;
    margin-bottom: 12px;
}
.fm-expertise-card h3 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
}

.fm-staff-header {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}
.fm-staff-header h2 {
    margin: 0 0 14px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 3.8vw, 40px);
    font-weight: 600;
    color: #1f2937;
}
.fm-staff-header p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #6b7280;
}

.fm-services {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.fm-service-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 24px rgba(31, 31, 31, .05);
    transition: transform .3s ease, border-color .3s ease;
}
.fm-service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(180, 58, 84, .25);
}
.fm-service-card__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(180, 58, 84, .08);
    font-size: 20px;
}
.fm-service-card h3 {
    margin: 0 0 6px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}
.fm-service-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
}

.fm-development {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.fm-development__content h2 {
    margin: 0 0 16px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(26px, 3.4vw, 34px);
    font-weight: 600;
    color: #1f2937;
}
.fm-development__content p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #4b5563;
}
.fm-development__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.fm-dev-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.fm-dev-item:hover {
    transform: translateX(6px);
    border-color: rgba(180, 58, 84, .3);
    box-shadow: 0 8px 20px rgba(31, 31, 31, .08);
}
.fm-dev-item__icon {
    flex: 0 0 auto;
    font-size: 20px;
}

.fm-faculties {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}
.fm-faculty-block {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px 24px 20px;
    box-shadow: 0 10px 30px rgba(31, 31, 31, .06);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.fm-faculty-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(31, 31, 31, .1);
    border-color: rgba(180, 58, 84, .2);
}
.fm-faculty-block__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0f0f0;
}
.fm-faculty-block__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 24px;
    background: linear-gradient(135deg, #1f1f1f, #3a2a34);
    flex-shrink: 0;
}
.fm-faculty-block__header h3 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
}
.fm-faculty-block__header p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #9ca3af;
    font-weight: 600;
}
.fm-member-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}
.fm-member {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    transition: background .2s ease;
}
.fm-member:hover {
    background: #f8f6f1;
}
.fm-member__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #d6b565;
    background: #1f1f1f;
}
.fm-member__name {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
}

.fm-cta {
    text-align: center;
    padding: 56px 40px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1f1f1f 0%, #2a1f28 55%, #1a1a1a 100%);
    color: #fff;
    box-shadow: 0 24px 60px rgba(31, 31, 31, .25);
}
.fm-cta__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(214, 181, 101, .15);
    border: 1px solid rgba(214, 181, 101, .35);
    font-size: 26px;
    margin-bottom: 20px;
}
.fm-cta h2 {
    margin: 0 0 16px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(26px, 3.6vw, 36px);
    font-weight: 600;
    color: #fff;
}
.fm-cta p {
    margin: 0 auto 28px;
    max-width: 640px;
    font-size: 17px;
    line-height: 1.7;
    color: #d1d5db;
}
.fm-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

@media (max-width: 1024px) {
    .fm-hero__inner { grid-template-columns: 1fr; }
    .fm-hero__visual { max-width: 480px; }
    .fm-stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .fm-split { grid-template-columns: 1fr; }
    .fm-split__media { order: -1; max-height: 320px; }
    .fm-attributes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .fm-expertise { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .fm-services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .fm-development { grid-template-columns: 1fr; gap: 32px; }
    .fm-faculties { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .fm-hero { padding: 64px 0 52px; }
    .fm-stats__grid { grid-template-columns: 1fr; }
    .fm-attributes,
    .fm-expertise,
    .fm-services { grid-template-columns: 1fr; }
    .fm-cta { padding: 40px 24px; }
}
