/* =========================================
   CHI SIAMO
========================================= */

.about-page {
    --astra-green-dark: #173f35;
    --astra-ivory: #f4f1e9;
    --astra-gold: #c4a765;
    min-height: 100vh;
    background: #DBD0A3;
    color: #273a34;
    font-family: Georgia, "Times New Roman", serif;
}

.about-opening {
    display: grid;
    grid-template-columns: minmax(320px, 38%) minmax(0, 62%);
    min-height: 100vh;
}

.about-side-image {
    min-height: 100%;
    overflow: hidden;
}

.about-side-image img {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    display: block;
    object-fit: cover;
    object-position: center;
}

.about-story {
    width: min(780px, calc(100% - 80px));
    margin: 0 auto;
    padding: 120px 0 85px;
}

.about-portrait {
    width: min(310px, 60%);
    height: auto;
    display: block;
    margin: 0 auto 42px;
}

.about-eyebrow {
    margin: 0 0 18px;
    color: var(--astra-gold);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.about-story h2 {
    margin: 0 0 42px;
    color: var(--astra-green-dark);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(34px, 3.5vw, 52px);
    font-weight: 300;
    line-height: 1.05;
}

/* Tutti i paragrafi hanno esattamente lo stesso carattere e la stessa misura. */
.about-story p,
.about-story .about-lead {
    margin: 0 0 25px;
    padding: 0;
    border: 0;
    color: #273a34;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.75;
}

.about-story p strong {
    font-size: inherit;
    line-height: inherit;
}

@media (max-width: 900px) {
    .about-opening {
        grid-template-columns: 34% 66%;
    }

    .about-story {
        width: min(100% - 52px, 720px);
    }
}

@media (max-width: 700px) {
    .about-opening {
        display: block;
    }

    .about-side-image {
        height: 320px;
        min-height: 0;
    }

    .about-side-image img {
        height: 100%;
        min-height: 0;
    }

    .about-story {
        width: auto;
        padding: 55px 26px 70px;
    }

    .about-portrait {
        width: min(280px, 75%);
        margin-bottom: 34px;
    }

    .about-story p,
    .about-story .about-lead {
        font-size: 16px;
    }
}
