/* ===========================================================
   ABOUT / CEOS SECTION
   Fondo oscuro. Izquierda: foto de los CEOs con el águila gris
   apoyada por detrás (no cubre todo). Derecha: texto de marca.
   Abajo: banda dorada con las estadísticas.
   =========================================================== */

.about,
.about * {
    box-sizing: border-box;
}

.about {
    position: relative;
    background: radial-gradient(120% 140% at 15% 0%, #4d0d13 0%, #240509 68%, #170306 100%);
    font-family: var(--font-serif);
    color: #efe9df;
    overflow: hidden;
}

.about-inner {
    position: relative;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 40px;
    align-items: center;
    padding: 56px 60px 40px;
}

/* ---------- Logo superior ---------- */
.about-logo {
    position: absolute;
    top: 34px;
    left: 30%;
    transform: translateX(-50%);
    width: 210px;
    height: auto;
    z-index: 3;
}

/* ---------- Visual: águila + foto ---------- */
.about-visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 560px;
}

.about-eagle {
    position: absolute;
    bottom: -6%;
    left: 50%;
    transform: translateX(-50%);
    width: 165%;
    max-width: none;
    height: auto;
    opacity: 0.9;
    z-index: 1;
    pointer-events: none;
}

.about-photo {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 2;
}

/* ---------- Texto de marca ---------- */
.about-copy {
    padding-top: 30px;
}

.about-copy h2 {
    margin: 0 0 30px;
    color: #ffffff;
    font-family: var(--font-inter);
    font-size: clamp(25px, 2vw, 32px);
    font-weight: 600;
    line-height: 1.15;
}

.about-copy p {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.5;
    color: #e7e1d6;
    text-align: justify;
}

.about-copy strong {
    font-weight: 700;
    color: #ffffff;
}

.about-copy em {
    font-style: italic;
}

.about-closing {
    margin: 0 0 2px !important;
    font-style: italic;
    font-weight: 600;
}

.about-tagline {
    margin: 24px 0 0 !important;
    text-align: center !important;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff !important;
}

/* ---------- Banda dorada de estadísticas ---------- */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--landing-gold);
    padding: 26px 60px;
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 20px;
}

.about-num {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 500;
    line-height: 1;
    color: #1e1a12;
}

.about-label {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 400;
    color: #2b2519;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .about-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 90px 40px 40px;
    }

    .about-logo {
        top: 26px;
        left: 50%;
    }

    .about-visual {
        min-height: 440px;
        max-width: 420px;
        margin: 0 auto;
    }

    .about-copy {
        padding-top: 0;
    }

    .about-stats {
        padding: 24px 40px;
    }

    .about-num {
        font-size: 34px;
    }
}

@media (max-width: 640px) {
    .about-inner {
        padding: 84px 22px 32px;
    }

    .about-visual {
        min-height: 360px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 0;
        padding: 24px 26px;
    }

    .about-stat {
        padding: 0 10px;
    }
}
