/* =================================
   ABOUT PAGE SHARED STYLES
================================= */

.about-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section-label {
    margin: 0 0 8px;

    color: #d99517;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.about-section-title {
    margin: 0 0 20px;

    color: #163d31;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 3.3vw, 48px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -1px;
}


/* =================================
   ABOUT HERO
================================= */

.about-hero {
    position: relative;

    display: flex;
    min-height: 440px;

    align-items: center;

    overflow: hidden;

    color: #ffffff;
    background-color: #003f2e;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 53, 39, 1) 0%,
            rgba(0, 53, 39, 0.94) 30%,
            rgba(0, 53, 39, 0.72) 48%,
            rgba(0, 53, 39, 0.18) 75%
        ),
        url("../images/about-hero.webp");

    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}

.about-hero::after {
    content: "";

    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    height: 80px;

    background:
        linear-gradient(
            0deg,
            rgba(0, 42, 31, 0.35),
            transparent
        );

    pointer-events: none;
}

.about-hero-container {
    position: relative;
    z-index: 2;

    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.about-hero-content {
    width: min(100%, 600px);
    padding: 75px 0;
}

.about-label {
    margin: 0 0 9px;

    color: #e2a01d;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-hero-title {
    margin: 0;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 4.6vw, 70px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -2px;
}

.about-hero-title span {
    display: block;
}

.about-gold-line {
    width: 58px;
    height: 3px;
    margin: 25px 0;

    background-color: #e2a01d;
}

.about-hero-description {
    max-width: 470px;
    margin: 0;

    color: rgba(255, 255, 255, 0.9);

    font-size: 17px;
    line-height: 1.5;
}


/* =================================
   WHO WE ARE
================================= */

.who-we-are-section {
    padding: 75px 0;
    background-color: #ffffff;
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: 1fr 1.08fr;
    gap: 60px;

    align-items: center;
}

.who-we-are-content p:not(.section-label),
.story-content p:not(.section-label) {
    margin: 0 0 16px;

    color: #46534e;

    font-size: 15px;
    line-height: 1.7;
}

.who-we-are-content strong {
    color: #213c33;
}

.about-image-wrapper,
.story-image-wrapper {
    overflow: hidden;

    border-radius: 11px;
    box-shadow: 0 18px 45px rgba(0, 59, 43, 0.13);
}

.about-content-image {
    display: block;
    width: 100%;
    height: 380px;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-content-image,
.story-image-wrapper:hover .story-image {
    transform: scale(1.04);
}


/* =================================
   VISION, MISSION AND VALUES
================================= */

.principles-section {
    padding: 52px 0;

    color: #ffffff;
    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(3, 98, 68, 0.35),
            transparent 35%
        ),
        #003f2e;
}

.principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.25fr;
}

.principle-card {
    position: relative;
    padding: 5px 38px;
}

.principle-card:first-child {
    padding-left: 0;
}

.principle-card:last-child {
    padding-right: 0;
}

.principle-card:not(:last-child)::after {
    content: "";

    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    width: 1px;
    background-color: rgba(226, 160, 29, 0.55);
}

.principle-heading {
    display: flex;
    margin-bottom: 17px;

    align-items: center;
    gap: 15px;
}

.principle-icon {
    color: #e2a01d;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    line-height: 1;
}

.principle-heading h2 {
    margin: 0;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 400;
}

.principle-card p {
    margin: 0;

    color: rgba(255, 255, 255, 0.84);

    font-size: 13px;
    line-height: 1.7;
}

.values-list {
    display: flex;
    margin: 0;
    padding: 0;

    flex-direction: column;
    gap: 7px;

    list-style: none;
}

.values-list li {
    position: relative;
    padding-left: 20px;

    color: rgba(255, 255, 255, 0.84);

    font-size: 12px;
    line-height: 1.5;
}

.values-list li::before {
    content: "✓";

    position: absolute;
    top: 0;
    left: 0;

    color: #e2a01d;
    font-weight: 800;
}

.values-list strong {
    color: #ffffff;
}


/* =================================
   OUR STORY
================================= */

.our-story-section {
    padding: 75px 0;
    background-color: #f8f7f3;
}

.story-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.25fr;
    gap: 60px;

    align-items: center;
}

.story-image {
    display: block;
    width: 100%;
    height: 390px;

    object-fit: cover;

    transition: transform 0.6s ease;
}


/* =================================
   TABLET
================================= */

@media (max-width: 900px) {

    .about-hero {
        min-height: 430px;

        background-image:
            linear-gradient(
                90deg,
                rgba(0, 53, 39, 0.97) 0%,
                rgba(0, 53, 39, 0.87) 48%,
                rgba(0, 53, 39, 0.42) 100%
            ),
            url("../images/about-hero.webp");
    }

    .who-we-are-grid,
    .story-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .principles-grid {
        grid-template-columns: 1fr;
    }

    .principle-card {
        padding: 30px 0;
    }

    .principle-card:not(:last-child)::after {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;

        width: auto;
        height: 1px;
    }

    .about-content-image,
    .story-image {
        height: 430px;
    }
}


/* =================================
   MOBILE
================================= */

@media (max-width: 600px) {

    .about-container,
    .about-hero-container {
        width: calc(100% - 28px);
    }

    .about-hero {
        min-height: 540px;

        align-items: flex-end;

        background-image:
            linear-gradient(
                180deg,
                rgba(0, 53, 39, 0.2) 0%,
                rgba(0, 53, 39, 0.67) 38%,
                rgba(0, 53, 39, 0.98) 75%,
                #003529 100%
            ),
            url("../images/about-hero.webp");

        background-position: center top;
    }

    .about-hero-content {
        padding: 190px 0 55px;
    }

    .about-hero-title {
        font-size: clamp(43px, 12vw, 56px);
        line-height: 1;
        letter-spacing: -1.5px;
    }

    .about-hero-description {
        font-size: 16px;
    }

    .who-we-are-section,
    .our-story-section {
        padding: 55px 0;
    }

    .about-section-title {
        font-size: 35px;
    }

    .about-content-image,
    .story-image {
        height: 320px;
    }

    .principles-section {
        padding: 20px 0;
    }

    .principle-heading h2 {
        font-size: 25px;
    }

    .principle-card p,
    .values-list li {
        font-size: 13px;
    }
}