/* Page-specific styles: about ("Qui sommes-nous"). Loaded only on this page.
 * Same palette/type as the rest of the site: FreightBig Pro titles in brand
 * blue (#889FC1), Hero New body in grey (#818181), light-blue accents, square
 * corners, cream/photo bands. */

.about-page .about-section {
    padding: 10px 100px 0;
}

/* --- Hero heading (same .section-header pattern as other pages) ------------- */
.about-page .about-head {
    max-width: 760px;
    margin: 0 auto 90px;
}
.about-page .about-head .subtitle {
    color: #a0b1ce;
    margin-bottom: 22px;
}
.about-page .about-head .title {
    font-size: 70px;
    line-height: 80px;
    letter-spacing: 6px;
    color: #889FC1;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.about-page .about-intro {
    font-family: "Hero New Light";
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.27px;
    color: #818181;
}

/* --- Story rows (image + text, alternating) -------------------------------- */
.about-page .about-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 110px;
}
.about-page .about-story .about-row:last-child {
    margin-bottom: 0;
}
.about-page .about-media img {
    width: 100%;
    height: auto;
    display: block;
}
.about-page .about-content {
    padding: 0 40px;
}
.about-page .about-subtitle {
    display: inline-block;
    font-family: "Hero New Light";
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #a0b1ce;
    margin-bottom: 24px;
}
.about-page .about-title {
    font-size: 52px;
    line-height: 62px;
    letter-spacing: 2px;
    color: #889FC1;
    margin-bottom: 30px;
}
.about-page .about-title .italic {
    font-style: italic;
}
.about-page .about-text {
    font-family: "Hero New Light";
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.27px;
    color: #818181;
    margin-bottom: 0;
}
.about-page .about-link {
    display: inline-block;
    margin-top: 30px;
    font-family: "Hero New Light";
    font-size: 13px;
    line-height: 21px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #889FC1;
    border-bottom: 1px solid #889FC1;
    padding-bottom: 6px;
    transition: opacity 0.25s ease;
}
.about-page .about-link:hover {
    opacity: 0.6;
}
@media (min-width: 992px) {
    .about-page .about-row--reverse {
        flex-direction: row-reverse;
    }
}

/* --- Values ---------------------------------------------------------------- */
.about-page .about-values {
    margin-top: 130px;
}
.about-page .about-values-title {
    font-size: 70px;
    line-height: 80px;
    letter-spacing: 6px;
    color: #889FC1;
    text-transform: uppercase;
    margin-bottom: 60px;
}
.about-page .about-values-wrap {
    margin-top: 20px;
}
.about-page .about-value {
    text-align: center;
    padding: 0 22px;
    margin-bottom: 40px;
}
.about-page .about-value-num {
    display: block;
    font-style: italic;
    font-size: 56px;
    line-height: 1;
    color: #D3D9E5;
    margin-bottom: 18px;
}
.about-page .about-value-name {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 1px;
    color: #889FC1;
    margin-bottom: 16px;
}
.about-page .about-value-text {
    font-family: "Hero New Light";
    font-size: 14px;
    line-height: 26px;
    letter-spacing: 0.2px;
    color: #818181;
    margin: 0;
}

/* --- Photo quote band ------------------------------------------------------ */
.about-page .about-quote {
    position: relative;
    margin-top: 120px;
    padding: 130px 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}
.about-page .about-quote::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(136, 159, 193, 0.62);
}
.about-page .about-quote-inner {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}
.about-page .about-quote-mark {
    display: block;
    font-size: 90px;
    line-height: 0.4;
    color: #FFFFFF;
    margin-bottom: 20px;
}
.about-page .about-quote-text {
    font-size: 46px;
    line-height: 58px;
    letter-spacing: 1px;
    font-style: italic;
    color: #FFFFFF;
    margin-bottom: 26px;
}
.about-page .about-quote-sign {
    display: inline-block;
    font-size: 13px;
    line-height: 21px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FFFFFF;
}

/* --- Responsive ------------------------------------------------------------ */
@media (max-width: 1199px) {
    /* breadcrumbs are hidden < 1200px -> add top clearance under the header */
    .about-page .about-section {
        padding: 160px 60px 0;
    }
    .about-page .about-head .title,
    .about-page .about-values-title {
        font-size: 56px;
        line-height: 66px;
    }
    .about-page .about-row {
        margin-bottom: 80px;
    }
    .about-page .about-title {
        font-size: 42px;
        line-height: 52px;
    }
}
@media (max-width: 991px) {
    /* stack image over text; keep image on top for both rows */
    .about-page .about-media {
        width: 100%;
        margin-bottom: 36px;
    }
    .about-page .about-content {
        width: 100%;
        padding: 0;
        text-align: center;
    }
    .about-page .about-quote {
        margin-top: 90px;
        padding: 100px 25px;
    }
}
@media (max-width: 767px) {
    .about-page .about-section {
        padding: 150px 25px 0;
    }
    .about-page .about-head {
        margin-bottom: 60px;
    }
    .about-page .about-head .title,
    .about-page .about-values-title {
        font-size: 44px;
        line-height: 52px;
        letter-spacing: 4px;
    }
    .about-page .about-values {
        margin-top: 90px;
    }
    .about-page .about-values-title {
        margin-bottom: 40px;
    }
    .about-page .about-value {
        margin-bottom: 50px;
    }
    .about-page .about-quote-text {
        font-size: 32px;
        line-height: 42px;
    }
}
@media (max-width: 575px) {
    .about-page .about-head .title,
    .about-page .about-values-title {
        font-size: 38px;
        line-height: 46px;
    }
    .about-page .about-title {
        font-size: 34px;
        line-height: 42px;
    }
    .about-page .about-quote-text {
        font-size: 27px;
        line-height: 37px;
    }
}
