/* =========================================================
   MARVALET ABOUT PAGE
========================================================= */


.about-page {
    background: #080808;

    color: #ffffff;
}


.about-container {
    width: min(1280px, 92%);

    margin: 0 auto;
}



/* =========================================================
   ABOUT HERO

   Similar to homepage hero,
   but deliberately smaller.
========================================================= */

.about-hero {
    position: relative;

    min-height: 520px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background-image:

        linear-gradient(
            90deg,

            #080808 0%,
            #080808 17%,

            rgba(8, 8, 8, 0.98) 28%,
            rgba(8, 8, 8, 0.91) 39%,
            rgba(8, 8, 8, 0.73) 52%,
            rgba(8, 8, 8, 0.42) 66%,
            rgba(8, 8, 8, 0.15) 82%,
            rgba(8, 8, 8, 0.03) 100%
        ),

        var(--about-image);

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    border-bottom: 1px solid #242424;
}



/* =========================================================
   EXTRA BOTTOM FADE
========================================================= */

.about-hero::after {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            0deg,

            rgba(8, 8, 8, 0.30) 0%,

            transparent 40%
        );
}



/* =========================================================
   ABOUT HERO CONTAINER
========================================================= */

.about-hero-container {
    position: relative;

    z-index: 2;

    width: min(1280px, 92%);

    margin: 0 auto;
}



/* =========================================================
   ABOUT HERO CONTENT
========================================================= */

.about-hero-content {
    width: 52%;

    max-width: 620px;

    padding: 70px 0;
}



/* =========================================================
   EYEBROW
========================================================= */

.about-eyebrow {
    margin: 0 0 12px;

    color: #b8bdc2;

    font-size: 0.78rem;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}



/* =========================================================
   MAIN ABOUT HEADING
========================================================= */

.about-hero h1 {
    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            3rem,
            5vw,
            5.2rem
        );

    font-weight: 800;

    line-height: 0.91;

    letter-spacing: -2px;

    text-transform: uppercase;
}


.about-hero h1 span {
    display: block;

    color: #c8c8c8;
}



/* =========================================================
   TAGLINE
========================================================= */

.about-tagline {
    max-width: 500px;

    margin: 20px 0 0;

    color: #d0d0d0;

    font-size: 1rem;

    font-weight: 600;

    line-height: 1.6;
}



/* =========================================================
   DESCRIPTION
========================================================= */

.about-description {
    max-width: 570px;

    margin-top: 28px;
}


.about-description p {
    margin: 0 0 16px;

    color: #adadad;

    font-size: 0.94rem;

    line-height: 1.75;
}


.about-description p:last-child {
    margin-bottom: 0;
}



/* =========================================================
   OUR APPROACH SECTION
========================================================= */

.about-approach {
    padding: 75px 0 60px;

    background:
        linear-gradient(
            180deg,
            #090909 0%,
            #070707 100%
        );
}



/* =========================================================
   OUR APPROACH HEADING
========================================================= */

.about-approach-heading {
    margin-bottom: 30px;

    text-align: center;
}


.about-approach-heading p {
    margin: 0 0 7px;

    color: #777777;

    font-size: 0.69rem;

    font-weight: 700;

    letter-spacing: 2.2px;

    text-transform: uppercase;
}


.about-approach-heading h2 {
    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            1.8rem,
            3vw,
            2.7rem
        );

    font-weight: 800;

    letter-spacing: -0.5px;

    text-transform: uppercase;
}



/* =========================================================
   APPROACH GRID
========================================================= */

.about-approach-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 16px;
}



/* =========================================================
   APPROACH CARDS

   Bigger than your previous version.
========================================================= */

.about-approach-card {
    min-height: 280px;

    padding: 36px 30px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #101010 0%,
            #090909 100%
        );

    border: 1px solid #383838;

    border-radius: 3px;

    text-align: center;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


.about-approach-card:hover {
    background: #121212;

    border-color: #666666;
}



/* =========================================================
   CARD ICON
========================================================= */

.about-card-icon {
    width: 62px;
    height: 62px;

    margin-bottom: 23px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #5c5c5c;

    border-radius: 50%;

    color: #ffffff;

    font-size: 1.4rem;
}



/* =========================================================
   CARD TITLE
========================================================= */

.about-approach-card h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-size: 1rem;

    font-weight: 800;

    letter-spacing: 0.55px;

    text-transform: uppercase;
}



/* =========================================================
   CARD DESCRIPTION
========================================================= */

.about-approach-card p {
    max-width: 260px;

    margin: 0;

    color: #a0a0a0;

    font-size: 0.87rem;

    line-height: 1.7;
}



/* =========================================================
   ABOUT CTA
========================================================= */

.about-cta {
    min-height: 100px;

    margin-top: 30px;

    padding: 20px 22px 20px 28px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    background:
        linear-gradient(
            100deg,
            #0e0e0e 0%,
            #151515 60%,
            #0b0b0b 100%
        );

    border: 1px solid #383838;

    border-radius: 3px;
}



/* =========================================================
   CTA TEXT
========================================================= */

.about-cta-copy p {
    margin: 0;

    color: #ffffff;

    font-size: 0.88rem;

    font-weight: 800;

    letter-spacing: 0.65px;

    text-transform: uppercase;
}



/* =========================================================
   CTA BUTTON
========================================================= */

.about-cta-button {
    flex-shrink: 0;

    min-width: 195px;

    min-height: 52px;

    padding: 13px 17px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;


    /* same softer chrome you wanted */

    background:
        linear-gradient(
            135deg,

            #f4f4f4 0%,
            #eeeeee 25%,
            #cfcfcf 45%,
            #f5f5f5 62%,
            #dedede 82%,
            #eeeeee 100%
        );

    border: 1px solid #dddddd;

    border-radius: 2px;

    color: #080808;

    font-size: 1rem;

    font-weight: 800;

    letter-spacing: 0.8px;

    text-decoration: none;

    text-transform: uppercase;
}


.about-cta-button:hover {
    color: #080808;
}



/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .about-hero {
        min-height: 500px;

        background-position: 60% center;
    }


    .about-hero-content {
        width: 60%;
    }


    .about-hero h1 {
        font-size: 4rem;
    }


    .about-approach-card {
        min-height: 250px;

        padding: 30px 22px;
    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    /* ========================================
       HERO
    ======================================== */

    .about-hero {
        min-height: 650px;

        align-items: flex-end;

        background-image:

            linear-gradient(
                0deg,

                #080808 0%,
                #080808 22%,

                rgba(8, 8, 8, 0.97) 38%,
                rgba(8, 8, 8, 0.72) 60%,
                rgba(8, 8, 8, 0.24) 82%,
                rgba(8, 8, 8, 0.05) 100%
            ),

            var(--about-image);

        background-position: 65% center;
    }


    .about-hero-container {
        width: 92%;
    }


    .about-hero-content {
        width: 100%;

        max-width: none;

        padding: 270px 0 50px;
    }


    .about-hero h1 {
        font-size: 3.2rem;

        letter-spacing: -1.3px;
    }


    .about-tagline {
        font-size: 0.94rem;
    }


    .about-description {
        margin-top: 22px;
    }


    .about-description p {
        font-size: 0.86rem;
    }


    /* ========================================
       APPROACH
    ======================================== */

    .about-approach {
        padding: 55px 0 45px;
    }


    .about-container {
        width: 92%;
    }


    .about-approach-grid {
        grid-template-columns: 1fr;
    }


    .about-approach-card {
        min-height: 220px;
    }


    /* ========================================
       CTA
    ======================================== */

    .about-cta {
        padding: 22px;

        align-items: stretch;

        flex-direction: column;
    }


    .about-cta-copy {
        text-align: center;
    }


    .about-cta-button {
        width: 100%;
    }

}



/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .about-hero {
        min-height: 620px;
    }


    .about-hero-content {
        padding-top: 250px;
    }


    .about-hero h1 {
        font-size: 2.75rem;
    }


    .about-card-icon {
        width: 56px;
        height: 56px;

        font-size: 1.25rem;
    }


    .about-approach-card h3 {
        font-size: 0.92rem;
    }


    .about-approach-card p {
        font-size: 0.82rem;
    }

}