/* =====================================================
   ABOUT PAGE ACTIVE LINK
===================================================== */

.about-active::after {

    width: 100% !important;

}



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

.about-page-hero {

    min-height: 520px;

    display: flex;

    align-items: center;

    color: white;

    background-image:

        linear-gradient(
            90deg,
            rgba(5, 28, 20, 0.92) 0%,
            rgba(5, 28, 20, 0.72) 45%,
            rgba(5, 28, 20, 0.23) 100%
        ),

        url("images/ourstory.jpg");

    background-size: cover;

    background-position: center;

}


.about-page-hero-inner {

    padding-top: 70px;

    padding-bottom: 70px;

}


.about-page-eyebrow {

    display: block;

    margin-bottom: 10px;

    color: #e2c574;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1.6px;

    text-transform: uppercase;

}


.about-page-hero h1 {

    max-width: 760px;

    margin-bottom: 20px;

    font-family: "Playfair Display", serif;

    font-size: clamp(
        48px,
        6vw,
        78px
    );

    line-height: 1.03;

}


.about-page-hero p {

    max-width: 620px;

    margin-bottom: 28px;

    color:
        rgba(
            255,
            255,
            255,
            0.87
        );

    font-size: 15px;

    line-height: 1.75;

}


.about-hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


.about-hero-primary,
.about-hero-secondary {

    min-height: 47px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 11px 19px;

    border-radius: 6px;

    color: white;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    transition:
        transform 0.25s ease,
        background 0.25s ease;

}


.about-hero-primary {

    background: var(--green);

}


.about-hero-secondary {

    border:
        1px solid
        rgba(255,255,255,0.85);

    background:
        rgba(0,0,0,0.18);

}


.about-hero-primary:hover,
.about-hero-secondary:hover {

    transform:
        translateY(-2px);

}



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

.about-story {

    padding: 80px 0;

    background: var(--cream);

}


.about-story-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 65px;

    align-items: center;

}


.about-story-image {

    height: 530px;

    overflow: hidden;

    border-radius: 12px;

    box-shadow:
        0 15px 38px
        rgba(0,0,0,0.11);

}


.about-story-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.5s ease;

}


.about-story-image:hover img {

    transform: scale(1.035);

}


.about-story-copy h2 {

    margin-bottom: 20px;

    font-family: "Playfair Display", serif;

    font-size: 40px;

    line-height: 1.1;

    color: #16251e;

}


.about-story-copy > p {

    margin-bottom: 14px;

    color: #59615c;

    font-size: 13px;

    line-height: 1.8;

}


.about-story-highlight {

    margin-top: 25px;

    padding: 18px;

    display: flex;

    gap: 14px;

    align-items: flex-start;

    border-left:
        3px solid
        var(--gold);

    background: white;

}


.about-story-highlight i {

    margin-top: 4px;

    color: var(--green);

    font-size: 20px;

}


.about-story-highlight p {

    color: #4d554f;

    font-size: 12px;

    line-height: 1.7;

}



/* =====================================================
   FOCUS
===================================================== */

.about-focus {

    padding: 75px 0;

    background: white;

}


.about-section-heading {

    max-width: 650px;

    margin-bottom: 35px;

}


.about-section-heading h2 {

    margin-bottom: 10px;

    font-family: "Playfair Display", serif;

    color: #17271f;

    font-size: 38px;

}


.about-section-heading p {

    color: var(--muted);

    font-size: 13px;

    line-height: 1.8;

}


.about-focus-grid {

    display: grid;

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

    gap: 19px;

}


.about-focus-card {

    padding: 28px 23px;

    border:
        1px solid
        #e5e1d8;

    border-radius: 9px;

    background: #faf9f6;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.about-focus-card:hover {

    transform:
        translateY(-6px);

    box-shadow:
        0 13px 28px
        rgba(0,0,0,0.07);

}


.focus-icon {

    width: 50px;

    height: 50px;

    margin-bottom: 18px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #eaf2ed;

    color: var(--green);

    font-size: 21px;

}


.about-focus-card h3 {

    margin-bottom: 9px;

    font-family: "Playfair Display", serif;

    color: #1b2b23;

    font-size: 19px;

}


.about-focus-card p {

    color: #6a706c;

    font-size: 11px;

    line-height: 1.75;

}



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

.about-approach {

    padding: 80px 0;

    background: #133d2e;

    color: white;

}


.about-approach-grid {

    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 80px;

}


.about-approach-heading h2 {

    margin-bottom: 18px;

    font-family: "Playfair Display", serif;

    font-size: 46px;

    line-height: 1.05;

}


.about-approach-heading p {

    max-width: 400px;

    color:
        rgba(255,255,255,0.72);

    font-size: 12px;

    line-height: 1.75;

}


.approach-item {

    display: grid;

    grid-template-columns:
        60px 1fr;

    gap: 18px;

    padding: 24px 0;

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

}


.approach-number {

    color: #d8b865;

    font-family: "Playfair Display", serif;

    font-size: 25px;

}


.approach-item h3 {

    margin-bottom: 6px;

    font-size: 16px;

}


.approach-item p {

    max-width: 560px;

    color:
        rgba(255,255,255,0.70);

    font-size: 11px;

    line-height: 1.7;

}



/* =====================================================
   SEED MATERIAL
===================================================== */

.about-seed {

    padding: 80px 0;

    background: var(--cream);

}


.about-seed-grid {

    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    gap: 65px;

    align-items: center;

}


.about-seed-copy h2 {

    margin-bottom: 18px;

    font-family: "Playfair Display", serif;

    color: #17271f;

    font-size: 39px;

    line-height: 1.1;

}


.about-seed-copy p {

    margin-bottom: 13px;

    color: #606762;

    font-size: 12px;

    line-height: 1.8;

}


.about-read-guide {

    margin-top: 10px;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 11px 18px;

    border-radius: 6px;

    background: var(--green);

    color: white;

    text-decoration: none;

    font-size: 11px;

    font-weight: 600;

}


.about-seed-points {

    padding: 30px;

    border-radius: 10px;

    background: white;

    box-shadow:
        0 12px 30px
        rgba(0,0,0,0.06);

}


.seed-point {

    display: flex;

    align-items: flex-start;

    gap: 13px;

    padding: 17px 0;

    border-bottom:
        1px solid
        #ece8e0;

}


.seed-point:last-child {

    border-bottom: 0;

}


.seed-point i {

    margin-top: 3px;

    color: var(--green);

}


.seed-point strong {

    display: block;

    margin-bottom: 4px;

    color: #26332c;

    font-size: 13px;

}


.seed-point span {

    display: block;

    color: #747975;

    font-size: 10px;

    line-height: 1.6;

}



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

.about-cta {

    padding: 52px 0;

    background: #193f31;

    color: white;

}


.about-cta-inner {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

}


.about-cta h2 {

    margin-bottom: 7px;

    font-family: "Playfair Display", serif;

    font-size: 30px;

}


.about-cta p {

    max-width: 620px;

    color:
        rgba(255,255,255,0.72);

    font-size: 12px;

}


.about-cta-buttons {

    flex-shrink: 0;

    display: flex;

    gap: 10px;

}


.about-cta-primary,
.about-cta-secondary {

    padding: 11px 17px;

    border-radius: 6px;

    text-decoration: none;

    font-size: 11px;

    font-weight: 600;

}


.about-cta-primary {

    background: #d5b467;

    color: #17382b;

}


.about-cta-secondary {

    border:
        1px solid
        rgba(255,255,255,0.65);

    color: white;

}



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

@media
(max-width: 950px) {

    .about-focus-grid {

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

    }


    .about-story-grid {

        gap: 40px;

    }


    .about-approach-grid {

        grid-template-columns: 1fr;

        gap: 45px;

    }

}



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

@media
(max-width: 750px) {

    .about-page-hero {

        min-height: 430px;

    }


    .about-page-hero h1 {

        font-size: 48px;

    }


    .about-story-grid,
    .about-seed-grid {

        grid-template-columns: 1fr;

    }


    .about-story-image {

        height: 400px;

    }


    .about-cta-inner {

        flex-direction: column;

        align-items: flex-start;

    }

}



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

@media
(max-width: 520px) {

    .about-page-hero {

        min-height: 390px;

    }


    .about-page-hero h1 {

        font-size: 40px;

    }


    .about-focus-grid {

        grid-template-columns: 1fr;

    }


    .about-story {

        padding: 55px 0;

    }


    .about-story-image {

        height: 320px;

    }


    .about-story-copy h2,
    .about-seed-copy h2 {

        font-size: 32px;

    }


    .about-approach-heading h2 {

        font-size: 38px;

    }


    .about-cta-buttons {

        width: 100%;

        flex-direction: column;

    }


    .about-cta-primary,
    .about-cta-secondary {

        text-align: center;

    }

}