/* =========================================================
   BAROSS PATRÍCIA — staff detail page (minimal hero only)
   ========================================================= */
.fm-bp {
    --fm-green: #799c86;
    --fm-green-dark: #5a7a66;
    --fm-cream: #f8f5ee;
    --fm-ink: #2c3a33;
    --fm-ink-soft: #5d6b63;

    font-family: 'Montserrat', sans-serif;
    color: var(--fm-ink);
    background: #fff;
}

.fm-bp * { box-sizing: border-box; }

.fm-bp__container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ─────── HERO ─────── */
.fm-bp__hero {
    background: #fff;
    padding: 90px 0 110px;
}

.fm-bp__hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 900px) {
    .fm-bp__hero { padding: 50px 0 70px; }
    .fm-bp__hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .fm-bp__hero-photo { order: -1; }
}

/* text column */
.fm-bp__hero-text { max-width: 560px; }

.fm-bp__name {
    font-family: 'Marcellus', serif;
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: var(--fm-ink);
    margin: 0 0 12px;
}

.fm-bp__role {
    font-family: 'Marcellus', 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: clamp(18px, 2vw, 22px);
    color: var(--fm-green-dark);
    margin-bottom: 28px;
}

.fm-bp__lead {
    font-size: 17px;
    line-height: 1.65;
    color: var(--fm-ink-soft);
    margin: 0 0 20px;
}

.fm-bp__body {
    font-size: 17px;
    line-height: 1.65;
    color: var(--fm-ink-soft);
    margin: 0 0 36px;
}
.fm-bp__body--quote {
    font-style: italic;
}

/* actions */
.fm-bp__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.fm-bp__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.fm-bp__btn--primary {
    background: var(--fm-green);
    color: #fff !important;
}
.fm-bp__btn--primary:hover {
    background: var(--fm-green-dark);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(121, 156, 134, 0.34);
}

/* photo — circular avatar (matches team page, larger) */
.fm-bp__hero-photo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fm-bp__hero-photo-circle {
    position: relative;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    box-shadow:
        0 30px 60px -18px rgba(60, 80, 70, 0.28),
        0 12px 24px -10px rgba(60, 80, 70, 0.12),
        inset 0 0 0 1px rgba(121, 156, 134, 0.14);
}

.fm-bp__hero-photo-img {
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    height: 128%;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: top center;
}

@media (max-width: 900px) {
    .fm-bp__hero-photo-circle { max-width: 300px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
    .fm-bp *,
    .fm-bp *::before,
    .fm-bp *::after {
        transition: none !important;
        animation: none !important;
    }
}
