/* ==========================================================
   MS CONSULTING
   MY STORY PAGE
========================================================== */


/* ==========================================================
   PAGE BASE
========================================================== */

.my-story-page {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    color: #243530;
}

.my-story-page *,
.my-story-page *::before,
.my-story-page *::after {
    box-sizing: border-box;
}

.my-story-page img {
    max-width: 100%;
}


/* ==========================================================
   CONTAINER
========================================================== */

.my-story-page .container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* ==========================================================
   HERO
========================================================== */

.story-hero {
    position: relative;
    overflow: hidden;

    padding: 70px 0 35px;

    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(201,149,46,.10),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f5f9f7 100%
        );
}


.story-hero-grid {
    display: grid;

    grid-template-columns: 52% 48%;

    align-items: center;

    min-height: 500px;
}


/* ==========================================================
   HERO CONTENT
========================================================== */

.story-hero-content {
    position: relative;
    z-index: 5;

    padding: 20px 30px 20px 0;
}


.story-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: #c9952e;

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.story-eyebrow::after {
    content: "";

    width: 55px;
    height: 2px;

    background: #c9952e;
}


.story-hero h1 {
    margin: 18px 0 25px;

    max-width: 650px;

    color: #075647;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 5vw, 65px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1px;
}


.story-hero h1 span {
    display: inline;
}


.story-title-line {
    position: relative;

    width: 315px;
    height: 2px;

    margin: 20px 0 25px;

    background: #c9952e;
}


.story-title-line::after {
    content: "";

    position: absolute;

    left: 50%;
    top: -4px;

    width: 9px;
    height: 9px;

    background: #c9952e;

    transform: rotate(45deg);
}


.story-intro {
    max-width: 610px;

    margin: 0;

    color: #344742;

    font-size: 16px;

    line-height: 1.75;
}


.story-intro strong {
    color: #075647;
}


/* ==========================================================
   STATS
========================================================== */

.story-stats {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 28px;

    margin-top: 32px;
}


.story-stat {
    display: flex;

    align-items: center;

    gap: 10px;
}


.story-stat-icon {
    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 2px solid #c9952e;

    border-radius: 50%;

    color: #075647;

    font-size: 18px;
}


.story-stat strong {
    display: block;

    color: #075647;

    font-size: 20px;

    line-height: 1.1;
}


.story-stat span {
    display: block;

    margin-top: 4px;

    color: #596964;

    font-size: 11px;
}


/* ==========================================================
   HERO IMAGE
========================================================== */

.story-hero-image {
    position: relative;

    min-height: 440px;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    overflow: hidden;
}


/* Green decorative circle */

.story-image-circle {
    position: absolute;

    width: 500px;
    height: 500px;

    right: 35px;
    bottom: 25px;

    border-radius: 50%;

    background: linear-gradient(
        145deg,
        #08705a,
        #043e33
    );
}


/* Main photograph */

.story-hero-image img {
    position: relative;

    z-index: 2;

    display: block;

    width: 390px;
    max-width: 85%;

    height: auto;

    object-fit: contain;

    margin: 0 auto;
}


/* ==========================================================
   SECTION
========================================================== */

.story-section {
    padding: 65px 0;
}


/* ==========================================================
   SECTION HEADING
========================================================== */

.story-section-heading {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    margin-bottom: 42px;
}


.story-section-heading span {
    color: #075647;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 27px;

    font-weight: 700;

    text-align: center;
}


.heading-line {
    width: 100px;
    height: 1px;

    background: #c9952e;
}


/* ==========================================================
   JOURNEY
========================================================== */

.journey-section {
    background: #ffffff;
}


.journey-grid {
    position: relative;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}


.journey-grid::before {
    content: "";

    position: absolute;

    top: 29px;
    left: 8%;
    right: 8%;

    height: 1px;

    background: #cdd8d4;
}


.journey-card {
    position: relative;

    z-index: 2;

    text-align: center;

    padding: 0 12px;
}


.journey-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #075f4d;

    border: 5px solid #ffffff;

    outline: 1px solid #d8e1de;

    color: #ffffff;

    font-size: 21px;
}


.journey-icon.gold {
    background: #c9952e;
}


.journey-card h3 {
    margin: 0 0 10px;

    color: #075647;

    font-size: 17px;
}


.journey-card:nth-child(even) h3 {
    color: #c18822;
}


.journey-card p {
    max-width: 220px;

    margin: 0 auto;

    color: #53635e;

    font-size: 13px;

    line-height: 1.65;
}


/* ==========================================================
   TODAY
========================================================== */

.today-section {
    background: #fafcfb;
}


.today-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;
}


.today-card {
    padding: 30px 25px;

    background: #ffffff;

    border: 1px solid #e1e9e5;

    border-radius: 14px;

    text-align: center;

    box-shadow: 0 8px 25px rgba(0,0,0,.05);

    transition: .3s ease;
}


.today-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 15px 35px rgba(0,0,0,.09);
}


.today-icon {
    width: 52px;
    height: 52px;

    margin: 0 auto 15px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #075f4d;

    color: #ffffff;

    font-size: 21px;
}


.today-icon.gold {
    background: #c9952e;
}


.today-card h3 {
    margin: 0 0 12px;

    color: #075647;

    font-size: 17px;
}


.today-card:nth-child(2) h3 {
    color: #c18822;
}


.today-card p {
    max-width: 300px;

    margin: 0 auto;

    color: #53635e;

    font-size: 14px;

    line-height: 1.7;
}


/* ==========================================================
   PURPOSE
========================================================== */

.purpose-section {
    padding-top: 45px;
}


.purpose-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    overflow: hidden;

    border: 1px solid #bdd5cd;

    border-radius: 12px;

    background: #ffffff;
}


.purpose-card {
    display: flex;

    align-items: center;

    gap: 18px;

    padding: 20px 28px;

    min-height: 120px;
}


.purpose-card + .purpose-card {
    border-left: 1px solid #e0c5c5;
}


.purpose-logo {
    width: 70px;
    height: 70px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;
}


.purpose-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


.purpose-card h3 {
    margin: 0 0 6px;

    color: #075647;

    font-size: 17px;
}


.purpose-card p {
    margin: 0;

    color: #53635e;

    font-size: 13px;

    line-height: 1.6;
}


/* ==========================================================
   APPROACH
========================================================== */

.approach-section {
    padding: 10px 0 70px;
}


.approach-box {
    display: grid;

    grid-template-columns: 1.15fr 1fr 1fr 1fr;

    align-items: center;

    background:
        linear-gradient(
            135deg,
            #075f4d,
            #043d33
        );

    border-radius: 12px;

    padding: 28px 30px;

    color: #ffffff;

    box-shadow: 0 12px 35px rgba(5,76,62,.16);
}


.approach-intro {
    padding-right: 25px;

    border-right: 1px solid rgba(201,149,46,.6);
}


.approach-intro span {
    display: block;

    margin-bottom: 8px;

    color: #d4a037;

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 1px;
}


.approach-intro p {
    margin: 0;

    font-size: 14px;

    line-height: 1.6;
}


.approach-item {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 0 24px;

    border-right: 1px solid rgba(201,149,46,.6);
}


.approach-item:last-child {
    border-right: none;
}


.approach-icon {
    width: 55px;
    height: 55px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 2px solid #d4a037;

    border-radius: 50%;

    color: #d4a037;

    font-size: 21px;
}


.approach-item strong {
    display: block;

    margin-bottom: 4px;

    color: #d4a037;

    font-size: 15px;
}


.approach-item p {
    margin: 0;

    font-size: 13px;

    line-height: 1.5;
}


/* ==========================================================
   LOOKING AHEAD
========================================================== */

.looking-ahead {
    padding: 70px 0;

    background: #ffffff;
}


.looking-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;
}


.looking-content {
    padding-right: 50px;

    border-right: 1px solid #c9952e;
}


.looking-title {
    display: block;

    color: #075647;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 28px;

    font-weight: 700;
}


.looking-line {
    width: 55px;
    height: 2px;

    margin: 10px 0 20px;

    background: #c9952e;
}


.looking-content p {
    margin: 0 0 8px;

    color: #53635e;

    font-size: 14px;

    line-height: 1.8;
}


.looking-content h3 {
    margin: 20px 0 0;

    color: #075647;

    font-size: 19px;
}


.story-contact {
    padding-left: 5px;
}


.signature {
    margin-bottom: 10px;

    color: #075647;

    font-family:
        "Brush Script MT",
        "Segoe Script",
        cursive;

    font-size: 38px;

    font-style: italic;
}


.story-contact h4 {
    max-width: 450px;

    margin: 0 0 24px;

    color: #20342f;

    font-size: 15px;

    line-height: 1.6;
}


.story-contact-item {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 13px;

    color: #344742;

    font-size: 14px;
}


.story-contact-item i {
    width: 20px;

    color: #075647;

    font-size: 16px;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 992px) {

    .my-story-page .container {
        width: min(100% - 32px, 900px);
    }


    .story-hero-grid {
        grid-template-columns: 1fr 1fr;
    }


    .story-hero h1 {
        font-size: 44px;
    }


    .story-hero-image {
        min-height: 420px;
    }


    .story-image-circle {
        width: 340px;
        height: 340px;
    }


    .story-hero-image img {
        width: 390px;
    }


    .journey-grid {
        grid-template-columns: repeat(2, 1fr);

        row-gap: 45px;
    }


    .journey-grid::before {
        display: none;
    }


    .approach-box {
        grid-template-columns: 1fr 1fr;

        gap: 25px;
    }


    .approach-intro {
        padding-bottom: 20px;

        border-right: 0;

        border-bottom: 1px solid rgba(201,149,46,.6);
    }


    .approach-item {
        border-right: 0;
    }
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 768px) {

    .my-story-page .container {
        width: calc(100% - 30px);
    }


    /* HERO */

    .story-hero {
        padding: 40px 0 20px;
    }


    .story-hero-grid {
        display: flex;

        flex-direction: column;

        min-height: auto;
    }


    .story-hero-content {
        width: 100%;

        padding: 0;

        text-align: center;
    }


    .story-eyebrow {
        justify-content: center;

        font-size: 11px;

        letter-spacing: 1px;
    }


    .story-eyebrow::after {
        width: 30px;
    }


    .story-hero h1 {
        max-width: 100%;

        margin: 15px auto 20px;

        font-size: 34px;

        line-height: 1.12;

        letter-spacing: -.5px;
    }


    .story-hero h1 span {
        display: block;
    }


    .story-title-line {
        width: 210px;

        margin: 18px auto 22px;
    }


    .story-intro {
        font-size: 14px;

        line-height: 1.7;
    }


    /* STATS */

    .story-stats {
        justify-content: center;

        gap: 18px;

        margin-top: 25px;
    }


    .story-stat-icon {
        width: 37px;
        height: 37px;

        font-size: 15px;
    }


    .story-stat strong {
        font-size: 16px;
    }


    .story-stat span {
        font-size: 9px;
    }


    /* IMAGE */

    .story-hero-image {
        width: 100%;

        min-height: 340px;

        margin-top: 15px;
    }


    .story-image-circle {
        width: 270px;
        height: 270px;

        right: 50%;
        bottom: 15px;

        transform: translateX(50%);
    }


    .story-hero-image img {
        width: 310px;

        max-width: 90%;
    }


    /* SECTION */

    .story-section {
        padding: 48px 0;
    }


    .story-section-heading {
        gap: 10px;

        margin-bottom: 30px;
    }


    .story-section-heading span {
        font-size: 20px;
    }


    .heading-line {
        width: 35px;
    }


    /* JOURNEY */

    .journey-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    .journey-card p {
        max-width: 340px;
    }


    /* TODAY */

    .today-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    /* PURPOSE */

    .purpose-grid {
        grid-template-columns: 1fr;
    }


    .purpose-card {
        min-height: auto;

        padding: 20px;
    }


    .purpose-card + .purpose-card {
        border-left: 0;

        border-top: 1px solid #e0c5c5;
    }


    /* APPROACH */

    .approach-section {
        padding: 5px 0 50px;
    }


    .approach-box {
        grid-template-columns: 1fr;

        gap: 22px;

        padding: 28px 20px;

        border-radius: 16px;
    }


    .approach-intro {
        padding: 0 0 20px;

        text-align: center;
    }


    .approach-item {
        padding: 0;

        border: 0;
    }


    .approach-icon {
        width: 48px;
        height: 48px;

        font-size: 18px;
    }


    /* LOOKING AHEAD */

    .looking-ahead {
        padding: 50px 0;
    }


    .looking-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .looking-content {
        padding: 0 0 30px;

        border-right: 0;

        border-bottom: 1px solid #c9952e;
    }


    .looking-title {
        font-size: 23px;
    }


    .story-contact {
        padding: 0;
    }


    .signature {
        font-size: 32px;
    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width: 480px) {

    .my-story-page .container {
        width: calc(100% - 24px);
    }


    .story-hero h1 {
        font-size: 29px;
    }


    .story-intro {
        font-size: 13px;
    }


    .story-stats {
        display: grid;

        grid-template-columns: 1fr;

        width: fit-content;

        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }


    .story-stat {
        min-width: 180px;
    }


    .story-hero-image {
        min-height: 300px;
    }


    .story-image-circle {
        width: 235px;
        height: 235px;
    }


    .story-hero-image img {
        width: 275px;
    }


    .story-section-heading span {
        font-size: 18px;
    }


    .purpose-card {
        gap: 12px;

        padding: 16px;
    }


    .purpose-logo {
        width: 55px;
        height: 55px;
    }


    .purpose-card h3 {
        font-size: 15px;
    }


    .purpose-card p {
        font-size: 12px;
    }


    .signature {
        font-size: 29px;
    }

}