/* ─── ABOUT PAGE ─── */
.about-main {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding-top: 0;
}

.about-portrait {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.about-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.88;
}

.about-content {
    padding: 18vh 6vw 10vh 5vw;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 620px;
}

.about-opening {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.about-content p {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 300;
    line-height: 1.9;
    color: var(--white);
    opacity: 0.85;
}

.about-closing {
    font-family: var(--font-serif) !important;
    font-style: italic;
    color: var(--warm) !important;
    opacity: 1 !important;
    margin-top: 1rem;
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
    .about-main {
        grid-template-columns: 1fr;
    }

    .about-portrait {
        position: relative;
        height: 60vh;
    }

    .about-content {
        padding: 8vw 6vw 12vw;
        max-width: 100%;
    }
}