/* =========================================================
   YUGA WEAR
   ABOUT PAGE
========================================================= */


/* =========================================================
   GLOBAL
========================================================= */

.about-hero,
.about-intro,
.about-philosophy,
.about-inspiration,
.about-process,
.about-statement,
.about-values,
.about-cta {

    width: 100%;

    overflow: hidden;

}


.about-eyebrow {

    display: inline-block;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;

    color: #F26A21;

}


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

.about-hero {

    position: relative;

    min-height: 93vh;

    display: flex;

    align-items: flex-end;

    background:

        linear-gradient(
            to right,
            rgba(0,0,0,.72),
            rgba(0,0,0,.25)
        ),

        url("../images/about1.webp");

    background-size: cover;

    background-position: center;

    color: #fff;

}


.about-hero-overlay {

    position: absolute;

    inset: 0;

    /* background:
        linear-gradient(
            to top,
            rgba(0,0,0,.78),
            rgba(0,0,0,.05)
        ); */

}


.about-hero .container {

    position: relative;

    z-index: 2;

    width: 100%;

}


.about-hero-content {

    max-width: 850px;

    padding:

        0
        0
        100px
        0;

}


.about-hero-content .about-eyebrow {

    color: #F26A21;

    margin-bottom: 25px;

}


.about-hero-content h1 {

    margin: 0;

    font-size: clamp(
        60px,
        6vw,
        150px
    );

    line-height: .88;

    letter-spacing: -5px;

    font-weight: 800;

}


.about-hero-content h1 span {

    display: block;

    color: #F26A21;

}


.about-hero-content p {

    max-width: 600px;

    margin-top: 35px;

    font-size: 19px;

    line-height: 1.7;

    color: rgba(
        255,
        255,
        255,
        .82
    );

}


/* =========================================================
   INTRO
========================================================= */

.about-intro {

    background: #fff;

    padding: 140px 0;

}


.about-intro-grid {

    display: grid;

    grid-template-columns:
        .35fr
        1fr;

    gap: 100px;

    max-width: 1100px;

    margin: auto;

}


.about-intro-label {

    padding-top: 12px;

}


.about-intro-label span {

    font-size: 12px;

    letter-spacing: 3px;

    font-weight: 700;

    color: #999;

}


.about-intro-content {

    max-width: 850px;

}


.about-intro-content h2 {

    margin: 0 0 45px;

    font-size: clamp(
        42px,
        5vw,
        72px
    );

    line-height: 1;

    letter-spacing: -3px;

}


.about-intro-content h2 span {

    color: #F26A21;

}


.about-intro-content p {

    max-width: 720px;

    margin-bottom: 22px;

    font-size: 18px;

    line-height: 1.9;

    color: #666;

}


/* =========================================================
   PHILOSOPHY
========================================================= */

.about-philosophy {

    padding: 130px 0;

    background: #f5f2ed;

}


.philosophy-grid {

    display: grid;

    grid-template-columns:
        1.05fr
        .95fr;

    gap: 90px;

    align-items: center;

}


.philosophy-image {

    position: relative;

    overflow: hidden;

    border-radius: 18px;

}


.philosophy-image::after {

    content: "";

    position: absolute;

    inset: 0;

    border: 1px solid
        rgba(255,255,255,.2);

    border-radius: 18px;

    pointer-events: none;

}


.philosophy-image img {

    display: block;

    width: 100%;

    height: 650px;

    /* object-fit: cover; */

    transition:
        transform .7s ease;

}


.philosophy-image:hover img {

    transform: scale(1.03);

}


.philosophy-content {

    max-width: 600px;

}


.philosophy-content h2 {

    margin: 25px 0 35px;

    font-size: clamp(
        42px,
        5vw,
        68px
    );

    line-height: .98;

    letter-spacing: -3px;

}


.philosophy-content h2 span {

    color: #F26A21;

    display: block;

}


.philosophy-content p {

    margin-bottom: 18px;

    color: #666;

    font-size: 17px;

    line-height: 1.8;

}


.philosophy-line {

    width: 70px;

    height: 3px;

    margin: 40px 0 20px;

    background: #F26A21;

}


.philosophy-content strong {

    font-size: 15px;

    letter-spacing: 2px;

    color: #111;

}


/* =========================================================
   SECTION HEADING
========================================================= */

.about-section-heading {

    max-width: 850px;

    margin-bottom: 70px;

}


.about-section-heading h2 {

    margin: 18px 0;

    font-size: clamp(
        42px,
        5vw,
        70px
    );

    line-height: 1;

    letter-spacing: -3px;

}


.about-section-heading p {

    color: #777;

    font-size: 17px;

    line-height: 1.7;

}


.about-section-heading.light h2 {

    color: #fff;

}


.about-section-heading.light p {

    color: #999;

}


/* =========================================================
   INSPIRATION
========================================================= */

.about-inspiration {

    padding: 140px 0;

    background: #fff;

}


.inspiration-grid {

    display: grid;

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

    gap: 25px;

}


.inspiration-card {

    background: #f7f7f7;

    border-radius: 14px;

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.inspiration-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.08);

}


.inspiration-image {

    aspect-ratio: 1 / 1;

    overflow: hidden;

}


.inspiration-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .6s ease;

}


.inspiration-card:hover
.inspiration-image img {

    transform: scale(1.05);

}


.inspiration-content {

    padding: 28px;

}


.inspiration-content > span {

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #F26A21;

}


.inspiration-content h3 {

    margin: 10px 0 12px;

    font-size: 28px;

    letter-spacing: -1px;

}


.inspiration-content p {

    margin: 0;

    font-size: 15px;

    line-height: 1.7;

    color: #777;

}


/* =========================================================
   PROCESS
========================================================= */

.about-process {

    padding: 140px 0;

    background: #0B0B0B;

    color: #fff;

}


.process-grid {

    display: grid;

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

    gap: 0;

    border-top:
        1px solid
        rgba(255,255,255,.15);

}


.process-item {

    padding: 45px 40px 20px 0;

    margin-right: 40px;

    border-right:
        1px solid
        rgba(255,255,255,.15);

}


.process-item:last-child {

    border-right: none;

}


.process-number {

    display: block;

    margin-bottom: 30px;

    color: #F26A21;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}


.process-item h3 {

    margin-top: 30px;
    margin-bottom: 18px;

    font-size: 30px;

}


.process-item p {

    max-width: 330px;

    margin: 0;

    color: #999;

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================================
   STATEMENT
========================================================= */

.about-statement {

    padding: 150px 0;
    background: blanchedalmond;
    color: #F26A21;
}


.statement-content {

    text-align: center;

}


.statement-content > span {

    display: block;

    margin-bottom: 35px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 4px;

}


.statement-content h2 {

    margin: 0;

    font-size: clamp(
        45px,
        7vw,
        100px
    );

    line-height: .95;

    letter-spacing: -5px;

}


.statement-content h2 strong {

    font-weight: 800;

}


/* =========================================================
   VALUES
========================================================= */

.about-values {

    padding: 140px 0;

    background: #fff;

}


.values-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;

}


.value-card {

    padding: 35px;

    border:
        1px solid
        #e8e8e8;

    border-radius: 12px;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;

}


.value-card:hover {

    transform: translateY(-6px);

    border-color: #F26A21;

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.06);

}


.value-icon {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 30px;

    border-radius: 50%;

    background: #fff3eb;

    color: #F26A21;

    font-size: 19px;

}


.value-card h3 {

    margin-bottom: 14px;

    font-size: 21px;

}


.value-card p {

    margin: 0;

    color: #777;

    font-size: 14px;

    line-height: 1.8;

}


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

.about-cta {

    padding: 130px 0;

    background: #f5f2ed;

}


.about-cta-content {

    max-width: 850px;

}


.about-cta-content h2 {

    margin: 18px 0;

    font-size: clamp(
        55px,
        8vw,
        110px
    );

    line-height: .9;

    letter-spacing: -5px;

}


.about-cta-content p {

    max-width: 550px;

    margin-bottom: 35px;

    color: #666;

    font-size: 17px;

    line-height: 1.8;

}


.about-cta-button {

    display: inline-flex;

    align-items: center;

    gap: 30px;

    padding: 18px 28px;

    background: #F26A21;

    color: #fff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    transition:
        transform .25s ease,
        background .25s ease;

}


.about-cta-button:hover {

    background: #111;

    transform: translateY(-3px);

}


.about-cta-button span {

    font-size: 18px;

}


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

@media (max-width: 1000px) {


    .about-intro-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .philosophy-grid {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .philosophy-image img {

        height: 550px;

    }


    .inspiration-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .inspiration-card:last-child {

        grid-column:
            1 / -1;

        max-width: 50%;

    }


    .values-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


}


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

@media (max-width: 700px) {


    .about-hero {

        min-height: 72vh;

        background-position:
            60% center;

    }


    .about-hero-content {

        padding-bottom: 65px;

    }


    .about-hero-content h1 {

        font-size:
            clamp(
                52px,
                16vw,
                90px
            );

        letter-spacing:
            -3px;

    }


    .about-hero-content p {

        font-size: 16px;

    }


    .about-intro,
    .about-philosophy,
    .about-inspiration,
    .about-process,
    .about-values {

        padding: 90px 0;

    }


    .about-intro-content h2,
    .philosophy-content h2,
    .about-section-heading h2 {

        letter-spacing: -2px;

    }


    .philosophy-image img {

        height: 430px;

    }


    .inspiration-grid {

        grid-template-columns: 1fr;

    }


    .inspiration-card:last-child {

        grid-column: auto;

        max-width: none;

    }


    .process-grid {

        grid-template-columns: 1fr;

    }


    .process-item {

        margin-right: 0;

        padding:
            35px 0;

        border-right: none;

        border-bottom:
            1px solid
            rgba(255,255,255,.15);

    }


    .process-item:last-child {

        border-bottom: none;

    }


    .process-number {

        margin-bottom: 30px;

    }


    .values-grid {

        grid-template-columns: 1fr;

    }


    .statement-content h2 {

        letter-spacing: -3px;

    }


    .about-cta {

        padding: 90px 0;

    }


    .about-cta-content h2 {

        letter-spacing: -3px;

    }

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


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

@media (max-width: 450px) {


    .about-hero-content h1 {

        font-size: 48px;

    }


    .about-intro-content p {

        font-size: 16px;

    }


    .philosophy-content p {

        font-size: 16px;

    }


    .statement-content h2 {

        font-size: 48px;

    }


    .value-card {

        padding: 28px;

    }


}
