/* ── Biography — mobile first ────────────────────────────────────────── */
.biography {
    background: var(--bg-mid);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}
.biography::after {
    content: '';
    position: absolute;
    top: -200px; right: -80px;
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(173,255,242,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.biography-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Photo first on mobile */
.biography-img-wrap {
    position: relative;
    order: -1;
}
.biography-img-wrap::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    background: linear-gradient(145deg, var(--accent-mauve), var(--accent-mint));
    z-index: 0;
    opacity: 0.55;
}
.biography-img {
    position: relative; z-index: 1;
    width: 100%; height: 340px;
    object-fit: cover; object-position: center top;
    display: block;
    filter: saturate(0.8);
    transition: filter 0.5s ease;
}
.biography-img-wrap:hover .biography-img,
.biography-img-wrap:focus-within .biography-img { filter: saturate(1.05); }
.biography-img-wrap::after {
    content: '';
    position: absolute; inset: 1px;
    background: linear-gradient(to bottom, transparent 55%, rgba(176,129,186,0.22));
    z-index: 2; pointer-events: none;
}

.biography-text {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-top: 28px;
}
.biography-text p + p { margin-top: 22px; }

.biography-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    font-size: 10.5px; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--accent-mint);
    text-decoration: none;
    transition: gap 0.35s ease;
}
.biography-link:hover, .biography-link:focus-visible { gap: 18px; }

/* ── Desktop ─────────────────────────────────────────────────────────── */
@media (min-width: 900px) {
    .biography { padding: 128px 72px; }
    .biography-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 88px;
        align-items: center;
    }
    .biography-img-wrap { order: 0; }
    .biography-img { height: 500px; }
}
