.about-hero {
    position: relative;
    display: grid;
    height: clamp(240px, 18.33vw, 352px);
    overflow: hidden;
    place-items: center;
    color: #fff;
    background: url("../images/nosotros.png") center / cover no-repeat;
}

.about-hero-copy {
    width: min(90%, 760px);
    text-align: center;
}

.about-hero-copy img {
    width: clamp(26px, 1.8vw, 35px);
    margin: 0 auto 8px;
}

.about-hero-copy h1 {
    margin: 0;
    color: var(--orange);
    font-size: var(--type-page-title);
    line-height: 1.1;
}

.about-hero-copy p {
    max-width: 700px;
    margin: 14px auto 0;
    font-size: var(--type-body);
    line-height: 1.45;
}

.about-story {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: start;
    gap: clamp(44px, 4.3vw, 82px);
    padding-block: clamp(74px, 6vw, 116px) clamp(60px, 5vw, 96px);
}

.about-story-visual {
    margin-top: calc(var(--type-section-title) * 1.25 + 28px);
}

.about-story-visual img {
    width: 100%;
}

.about-story-copy h2 {
    margin: 0 0 28px;
    color: var(--blue);
    font-size: var(--type-section-title);
    line-height: 1.25;
}

.about-story-copy h2 span {
    display: block;
    color: var(--orange);
}

.about-story-copy > p {
    margin: 0 0 18px;
    color: #555;
    font-size: var(--type-body);
    line-height: 1.85;
}

.about-story-copy > p.about-story-tagline {
    margin: 8px 0 22px;
    color: var(--blue);
    font-weight: 600;
    line-height: 1.6;
}

.about-contact {
    min-height: 50px;
    font-size: 12px;
}

.about-contact img {
    width: 17px;
    height: 17px;
}

@media (max-width: 900px) {
    /* A diferencia de home.html (que tiene la seccion .chef-cta como respaldo),
       /nosotros/ no tiene ningun otro enlace a Chef Virtual -- se sobreescribe
       el `display: none` de home.css para que el FAB siga siendo la unica
       entrada en mobile. */
    .chef-fab {
        display: block;
    }

    .about-hero {
        height: 240px;
        overflow: visible;
        background-position: center;
    }

    .about-hero-copy {
        width: calc(100% - 40px);
    }

    .about-hero-copy img {
        width: 25px;
        margin-bottom: 10px;
    }

    .about-hero-copy h1 {
        font-size: var(--type-page-title);
    }

    .about-hero-copy p {
        max-width: 300px;
        margin-top: 12px;
        font-size: 13px;
        line-height: 1.4;
    }

    .about-story {
        display: flex;
        width: min(100% - 40px, 420px);
        padding-block: 82px 90px;
        flex-direction: column;
        gap: 42px;
    }

    .about-story-copy {
        order: 1;
        text-align: center;
    }

    .about-story-visual {
        order: 2;
        margin-top: 0;
    }

    .about-story-copy h2 {
        margin-bottom: 28px;
        font-size: var(--type-section-title);
    }

    .about-story-copy > p {
        max-width: 320px;
        margin-inline: auto;
        font-size: var(--type-body);
        line-height: 1.65;
    }

    /* .about-story-tagline trae su propio margin (8px 0 22px, left/right en 0)
       con mas especificidad que la regla generica de arriba -- eso le ganaba
       al margin-inline:auto y el parrafo quedaba pegado a la izquierda de su
       caja de 320px en vez de centrado junto al resto del texto. */
    .about-story-copy > p.about-story-tagline {
        margin-inline: auto;
    }

    .about-contact {
        min-height: 52px;
        margin-right: auto;
        margin-left: 0;
        padding: 12px 24px;
        font-size: 12px;
    }
}
