/* =====================================================
   VIRTUE KONSULT
   ABOUT PAGE
===================================================== */

.nav-actions a {
    background-color: #ffae00;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
}

.about-page {
    background: #f5f4f0;
    color: #18201b;
}


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

.about-hero {
    position: relative;

    min-height: 720px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #172019;
}


.about-hero-image {
    position: absolute;

    inset: 0;

    z-index: 0;
}


.about-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: saturate(0.75);
}


.about-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(12, 20, 16, 0.94) 0%,
            rgba(12, 20, 16, 0.72) 42%,
            rgba(12, 20, 16, 0.18) 100%
        );

    z-index: 1;
}


.about-hero-content {
    position: relative;

    z-index: 2;

    width: min(1380px, 90%);

    margin: 0 auto;

    padding: 170px 0 85px;

    color: white;
}


.about-hero-meta {
    display: flex;
    justify-content: space-between;

    width: 100%;

    margin-bottom: 35px;

    padding-bottom: 15px;

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

    font-size: 10px;

    letter-spacing: .18em;
}


.about-hero h1 {
    max-width: 850px;

    margin: 0;

    font-size: clamp(55px, 7vw, 105px);

    font-weight: 400;

    line-height: .98;

    letter-spacing: -.055em;
}


.about-hero h1 em {
    color: #c7d0c5;

    /* font-style: italic; */
}


.about-hero-bottom {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 60px;

    margin-top: 65px;
}


.about-hero-bottom p {
    max-width: 460px;

    margin: 0;

    font-size: 15px;

    line-height: 1.8;

    color: rgba(255,255,255,.78);
}


.about-hero-bottom a {
    display: flex;

    align-items: center;

    gap: 20px;

    color: white;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: .14em;

    text-decoration: none;
}


.about-hero-bottom a span {
    display: flex;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

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

    font-size: 17px;

    transition: .3s ease;
}


.about-hero-bottom a:hover span {
    background: white;

    color: #172019;

    transform: translateY(4px);
}



/* =====================================================
   COMMON
===================================================== */

.about-eyebrow {
    display: inline-block;

    margin-bottom: 25px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .2em;

    color: #737a74;
}



/* =====================================================
   INTRODUCTION
===================================================== */

.about-introduction {
    padding: 145px 0;

    background: #f5f4f0;
}


.about-intro-container {
    width: min(1380px, 90%);

    margin: auto;

    display: grid;

    grid-template-columns: 20px 1.1fr 1fr;

    gap: 70px;
}


.about-section-number {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
}


.about-section-number span {
    font-size: 12px;

    font-weight: 700;

    letter-spacing: .1em;
}


.about-section-number div {
    width: 1px;
    height: 100px;

    background: #bfc3bd;
}


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

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

    font-weight: 400;

    line-height: 1.02;

    letter-spacing: -.045em;
}


.about-intro-heading h2 span {
    display: block;

    color: #7c847d;

    font-style: italic;
}


.about-intro-copy {
    padding-top: 50px;
}


.about-intro-copy p {
    max-width: 550px;

    margin: 0 0 25px;

    color: #626963;

    font-size: 15px;

    line-height: 1.9;
}


.about-intro-copy .large-copy {
    color: #252d28;

    font-size: 21px;

    line-height: 1.65;
}


.about-intro-copy strong {
    color: #1c251f;
}



/* =====================================================
   STORY
===================================================== */

.about-story {
    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 720px;

    background: #e9e8e2;
}


.about-story-image {
    position: relative;

    min-height: 650px;

    overflow: hidden;
}


.about-story-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 1s ease;
}


.about-story-image:hover img {
    transform: scale(1.04);
}


.story-image-label {
    position: absolute;

    bottom: 35px;
    left: 35px;

    padding: 18px 22px;

    background: rgba(20,28,23,.86);

    color: white;
}


.story-image-label span {
    display: block;

    margin-bottom: 5px;

    font-size: 8px;

    letter-spacing: .2em;
}


.story-image-label strong {
    font-size: 11px;

    letter-spacing: .08em;
}


.about-story-content {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 90px clamp(40px, 8vw, 60px);
}


.about-story-content h2 {
    /* max-width: 600px; */

    margin: 0 0 35px;

    font-size: clamp(50px, 7vw, 20px);

    font-weight: 400;

    line-height: 1.03;

    letter-spacing: -.05em;
}


.about-story-content h2 span {
    display: block;

    color: #7a817b;

    font-style: italic;
}


.about-story-content p {
    max-width: 520px;

    margin: 0 0 20px;

    color: #636a65;

    font-size: 15px;

    line-height: 1.9;
}


.about-text-link {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    width: fit-content;

    margin-top: 25px;

    padding-bottom: 10px;

    border-bottom: 1px solid #273129;

    color: #18201b;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .08em;

    text-decoration: none;

    text-transform: uppercase;
}


.about-text-link span {
    transition: transform .3s ease;
}


.about-text-link:hover span {
    transform: translate(4px,-4px);
}



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

.values-section {
    padding: 140px 0;

    background: #ffffff;
}


.values-container {
    width: min(1380px, 90%);

    margin: auto;
}


.values-header {
    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 80px;

    margin-bottom: 75px;
}


.values-header h2 {
    margin: 0;

    max-width: 700px;

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

    font-weight: 400;

    line-height: 1;

    letter-spacing: -.05em;
}


.values-header h2 span {
    color: #7a817b;

    font-style: italic;
}


.values-header p {
    max-width: 300px;

    margin: 0;

    color: #707771;

    font-size: 14px;

    line-height: 1.8;
}


.values-grid {
    display: grid;

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

    border-top: 1px solid #d9dcd8;

    border-bottom: 1px solid #d9dcd8;
}


.value-card {
    position: relative;

    min-height: 330px;

    padding: 35px;

    border-right: 1px solid #d9dcd8;

    transition:
        background .35s ease,
        color .35s ease;
}


.value-card:last-child {
    border-right: none;
}


.value-card:hover {
    background: #172019;

    color: white;
}


.value-number {
    display: block;

    margin-bottom: 70px;

    font-size: 10px;

    color: #8b928d;

    letter-spacing: .1em;
}


.value-card i {
    margin-bottom: 35px;

    font-size: 22px;

    color: #737b75;
}


.value-card h3 {
    margin: 0 0 15px;

    font-size: 20px;

    font-weight: 500;
}


.value-card p {
    margin: 0;

    color: #747b76;

    font-size: 13px;

    line-height: 1.7;
}


.value-card:hover p {
    color: rgba(255,255,255,.65);
}



/* =====================================================
   PURPOSE
===================================================== */

.about-purpose {
    padding: 150px 0;

    background: #172019;

    color: white;
}


.purpose-container {
    width: min(1380px, 90%);

    margin: auto;
}


.purpose-intro {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;

    margin-bottom: 80px;
}


.purpose-intro h2 {
    margin: 0;

    font-size: clamp(50px, 6vw, 90px);

    font-weight: 400;

    line-height: .95;

    letter-spacing: -.055em;
}


.purpose-intro h2 span {
    color: #aeb8af;

    font-style: italic;
}


.purpose-intro p {
    max-width: 440px;

    margin-top: 60px;

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

    font-size: 15px;

    line-height: 1.9;
}


.about-purpose .about-eyebrow {
    color: #9ca59e;
}


.purpose-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 2px;
}


.purpose-card {
    min-height: 400px;

    padding: 45px;

    background: #e8e8e3;

    color: #18201b;
}


.purpose-card.dark {
    background: #252f29;

    color: white;
}


.purpose-top {
    display: flex;

    justify-content: space-between;

    margin-bottom: 100px;
}


.purpose-top span {
    font-size: 11px;

    letter-spacing: .1em;
}


.purpose-top i {
    font-size: 20px;
}


.purpose-card h3 {
    margin: 0 0 20px;

    font-size: 30px;

    font-weight: 400;
}


.purpose-card p {
    max-width: 570px;

    margin: 0;

    font-size: 14px;

    line-height: 1.9;

    color: #6a716b;
}


.purpose-card.dark p {
    color: rgba(255,255,255,.65);
}



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

.approach-section {
    padding: 150px 0;

    background: #f5f4f0;
}


.approach-container {
    width: min(1380px, 90%);

    margin: auto;
}


.approach-heading {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;
}


.approach-heading h2 {
    margin: 0;

    max-width: 700px;

    font-size: clamp(50px, 6vw, 82px);

    font-weight: 400;

    line-height: .95;

    letter-spacing: -.055em;
}


.approach-heading h2 span {
    color: #7d847e;

    font-style: italic;
}


.approach-heading p {
    max-width: 450px;

    margin: 55px 0 0;

    color: #68706a;

    font-size: 15px;

    line-height: 1.9;
}


.approach-line {
    width: 100%;

    height: 1px;

    margin: 90px 0 0;

    background: #cdd0cc;
}


.approach-steps {
    display: grid;

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

    gap: 0;
}


.approach-step {
    min-height: 270px;

    padding: 35px 35px 20px;

    border-right: 1px solid #cdd0cc;
}


.approach-step:first-child {
    padding-left: 0;
}


.approach-step:last-child {
    border-right: none;
}


.approach-step > span {
    display: block;

    margin-bottom: 75px;

    font-size: 10px;

    font-weight: 700;

    color: #7c847e;

    letter-spacing: .1em;
}


.approach-step h3 {
    margin: 0 0 15px;

    font-size: 23px;

    font-weight: 500;
}


.approach-step p {
    max-width: 230px;

    margin: 0;

    color: #707771;

    font-size: 13px;

    line-height: 1.7;
}



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

.about-cta {
    position: relative;

    min-height: 600px;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: white;
}


.about-cta-image {
    position: absolute;

    inset: 0;
}


.about-cta-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.about-cta-overlay {
    position: absolute;

    inset: 0;

    background: rgba(14,23,18,.86);
}


.about-cta-content {
    position: relative;

    z-index: 2;

    width: min(1380px, 90%);

    margin: auto;
}


.about-cta-content .about-eyebrow {
    color: #aeb8af;
}


.about-cta-content h2 {
    max-width: 800px;

    margin: 0 0 30px;

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

    font-weight: 400;

    line-height: .95;

    letter-spacing: -.06em;
}


.about-cta-content h2 span {
    display: block;

    color: #aeb8af;

    font-style: italic;
}


.about-cta-content p {
    max-width: 500px;

    margin-bottom: 40px;

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

    font-size: 15px;

    line-height: 1.8;
}


.about-cta-button {
    display: inline-flex;

    align-items: center;

    gap: 20px;

    padding: 16px 22px;

    background: white;

    color: #172019;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;

    text-decoration: none;

    transition: .3s ease;
}


.about-cta-button span {
    transition: transform .3s ease;
}


.about-cta-button:hover {
    background: #dce2dc;
}


.about-cta-button:hover span {
    transform: translate(3px,-3px);
}



/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1000px) {

    .about-intro-container {
        grid-template-columns: 50px 1fr;
    }


    .about-intro-copy {
        grid-column: 2;
        padding-top: 0;
    }


    .values-grid {
        grid-template-columns: 1fr 1fr;
    }


    .value-card:nth-child(2) {
        border-right: none;
    }


    .value-card:nth-child(1),
    .value-card:nth-child(2) {
        border-bottom: 1px solid #d9dcd8;
    }


    .purpose-intro {
        grid-template-columns: 1fr;
    }


    .purpose-intro p {
        margin-top: 0;
    }


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


    .approach-heading p {
        margin-top: 0;
    }


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


    .approach-step:nth-child(2) {
        border-right: none;
    }


    .approach-step:nth-child(1),
    .approach-step:nth-child(2) {
        border-bottom: 1px solid #cdd0cc;
    }

}


@media (max-width: 750px) {

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


    .about-hero-content {
        padding-bottom: 60px;
    }


    .about-hero-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 30px;

        margin-top: 45px;
    }


    .about-introduction,
    .values-section,
    .about-purpose,
    .approach-section {
        padding: 90px 0;
    }


    .about-intro-container {
        display: block;
    }


    .about-section-number {
        margin-bottom: 45px;
    }


    .about-section-number div {
        display: none;
    }


    .about-intro-copy {
        margin-top: 45px;
    }


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


    .about-story-image {
        min-height: 450px;
    }


    .about-story-content {
        padding: 80px 7%;
    }


    .values-header {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }


    .values-grid {
        grid-template-columns: 1fr;
    }


    .value-card,
    .value-card:nth-child(2) {
        border-right: none;

        border-bottom: 1px solid #d9dcd8;
    }


    .value-card:last-child {
        border-bottom: none;
    }


    .purpose-grid {
        grid-template-columns: 1fr;
    }


    .purpose-card {
        min-height: 350px;
    }


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


    .approach-step,
    .approach-step:nth-child(2) {
        border-right: none;

        border-bottom: 1px solid #cdd0cc;
    }


    .approach-step:first-child {
        padding-left: 35px;
    }


    .approach-step:last-child {
        border-bottom: none;
    }


    .about-cta {
        min-height: 560px;
    }

}


@media (max-width: 480px) {

    .about-hero h1 {
        font-size: 50px;
    }


    .about-hero-meta {
        font-size: 8px;
    }


    .about-intro-heading h2,
    .about-story-content h2 {
        font-size: 43px;
    }


    .values-header h2,
    .purpose-intro h2,
    .approach-heading h2 {
        font-size: 48px;
    }


    .purpose-card {
        padding: 30px;
    }


    .about-cta-content h2 {
        font-size: 53px;
    }

}