/* =========================================================
   ABOUT PAGE ONLY
   ========================================================= */

body.about-page {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* ---------- HERO ---------- */

.about-page .about-hero {
    position: relative;
    width: 100%;
    min-height: 650px;
    height: 75vh;
    overflow: hidden;

    display: flex;
    align-items: center;

    background: #111;
}

.about-page .about-hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background-image: url("../images/about-hero.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;

    z-index: 1;
}

.about-page .about-hero-overlay {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.82) 0%,
            rgba(0,0,0,.62) 38%,
            rgba(0,0,0,.30) 75%,
            rgba(0,0,0,.15) 100%
        );

    z-index: 2;
}

.about-page .about-hero-content {
    position: relative;
    z-index: 3;

    width: min(1200px, calc(100% - 100px));

    margin: 0 auto;
    padding-top: 60px;
}

.about-page .about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 22px;
    padding: 8px 15px;

    border: 1px solid rgba(255,255,255,.25);
    border-radius: 30px;

    background: rgba(255,255,255,.10);

    color: #fff;

    font-family: Inter, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.about-page .about-eyebrow span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: #9BE15D;
}

.about-page .about-hero h1 {
    max-width: 750px;

    margin: 0 0 25px;

    color: #fff;

    font-family: "Playfair Display", serif;
    font-size: clamp(50px, 6vw, 82px);
    font-weight: 600;

    line-height: 1;

    letter-spacing: -2px;
}

.about-page .about-hero h1 em {
    color: #9BE15D;
    font-style: normal;
}

.about-page .about-hero-content > p {
    max-width: 600px;

    margin: 0;

    color: rgba(255,255,255,.85);

    font-family: Inter, sans-serif;
    font-size: 15px;

    line-height: 1.75;
}

.about-page .about-hero-meta {
    display: flex;
    align-items: center;
    gap: 40px;

    margin-top: 35px;
}

.about-page .about-hero-meta div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about-page .about-hero-meta strong {
    color: #9BE15D;

    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 800;
}

.about-page .about-hero-meta span {
    color: rgba(255,255,255,.65);

    font-family: Inter, sans-serif;
    font-size: 9px;

    text-transform: uppercase;
    letter-spacing: 1px;
}


/* =========================================================
   STORY
   ========================================================= */

.about-page .about-story {
    width: 100%;

    padding: 110px 0;

    background: #fff;
}

.about-page .about-container {
    width: min(1200px, calc(100% - 100px));

    margin-left: auto;
    margin-right: auto;
}

.about-page .about-story-grid {
    display: grid;

    grid-template-columns: .92fr 1.08fr;

    gap: 75px;

    align-items: center;
}

.about-page .about-story-visual {
    position: relative;

    min-height: 500px;
}

.about-page .about-story-image-wrap {
    width: 88%;
    height: 490px;

    overflow: hidden;

    border-radius: 5px 70px 5px 70px;

    box-shadow:
        0 25px 55px rgba(0,0,0,.13);
}

.about-page .about-story-image-wrap img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.about-page .about-story-floating-card {
    position: absolute;

    right: 0;
    bottom: 20px;

    width: 230px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 17px;

    border: 1px solid #e7ece3;
    border-radius: 15px;

    background: #fff;

    box-shadow:
        0 20px 45px rgba(0,0,0,.13);
}

.about-page .about-card-icon {
    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #eef5e9;

    color: #658051;
}

.about-page .about-story-floating-card div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-page .about-story-floating-card strong {
    color: #172016;

    font-family: Inter, sans-serif;
    font-size: 13px;
}

.about-page .about-story-floating-card span {
    color: #777;

    font-family: Inter, sans-serif;
    font-size: 9px;

    line-height: 1.4;
}

.about-page .about-section-label {
    display: block;

    margin-bottom: 13px;

    color: #658051;

    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

.about-page .about-story-content h2 {
    max-width: 650px;

    margin: 0 0 22px;

    color: #172016;

    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 600;

    line-height: 1.05;
}

.about-page .about-story-content h2 span {
    color: #658051;
}

.about-page .about-story-content > p {
    max-width: 650px;

    margin: 0 0 15px;

    color: #596057;

    font-family: Inter, sans-serif;
    font-size: 14px;

    line-height: 1.85;
}

.about-page .about-story-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;

    margin-top: 28px;
}

.about-page .about-story-point {
    display: flex;

    gap: 12px;

    padding: 17px;

    border-radius: 12px;

    background: #f3f6ef;
}

.about-page .about-story-point > i {
    color: #658051;

    font-size: 17px;
}

.about-page .about-story-point h3 {
    margin: 0 0 5px;

    color: #172016;

    font-family: Inter, sans-serif;
    font-size: 13px;
}

.about-page .about-story-point p {
    margin: 0;

    color: #737870;

    font-family: Inter, sans-serif;
    font-size: 10px;

    line-height: 1.5;
}


/* =========================================================
   CSR
   ========================================================= */

.about-page .about-csr {
    width: 100%;

    padding: 110px 0;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(155,225,93,.13),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #f3f6ef,
            #fff
        );
}

.about-page .about-csr-heading {
    display: grid;

    grid-template-columns: 1fr 420px;

    gap: 60px;

    align-items: end;

    margin-bottom: 50px;
}

.about-page .about-csr-heading h2 {
    margin: 0;

    color: #172016;

    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 4vw, 57px);
    font-weight: 600;

    line-height: 1.05;
}

.about-page .about-csr-heading h2 span {
    color: #658051;
}

.about-page .about-csr-heading > p {
    margin: 0;

    color: #596057;

    font-family: Inter, sans-serif;
    font-size: 14px;

    line-height: 1.8;
}

.about-page .about-csr-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.about-page .about-csr-card {
    position: relative;

    min-height: 300px;

    padding: 32px 28px;

    overflow: hidden;

    border: 1px solid #e4eae0;
    border-radius: 18px;

    background: #fff;

    transition: transform .3s ease,
                box-shadow .3s ease;
}

.about-page .about-csr-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 22px 50px rgba(35,50,30,.11);
}

.about-page .about-csr-card.about-csr-featured {
    background: #172016;

    border-color: #172016;
}

.about-page .about-csr-number {
    position: absolute;

    top: 10px;
    right: 18px;

    color: #edf1e9;

    font-family: Inter, sans-serif;
    font-size: 65px;
    font-weight: 800;
}

.about-page .about-csr-featured .about-csr-number {
    color: rgba(255,255,255,.06);
}

.about-page .about-csr-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 14px;

    background: #edf5e8;

    color: #658051;

    font-size: 19px;
}

.about-page .about-csr-featured .about-csr-icon {
    background: rgba(155,225,93,.12);

    color: #9BE15D;
}

.about-page .about-csr-card h3 {
    margin: 0 0 12px;

    color: #172016;

    font-family: Inter, sans-serif;
    font-size: 18px;
}

.about-page .about-csr-featured h3 {
    color: #fff;
}

.about-page .about-csr-card p {
    margin: 0;

    color: #626861;

    font-family: Inter, sans-serif;
    font-size: 12px;

    line-height: 1.75;
}

.about-page .about-csr-featured p {
    color: rgba(255,255,255,.67);
}

.about-page .about-csr-card > a {
    position: absolute;

    left: 28px;
    bottom: 26px;

    color: #658051;

    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 700;

    text-decoration: none;
}

.about-page .about-csr-featured > a {
    color: #9BE15D;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .about-page .about-container,
    .about-page .about-hero-content {
        width: calc(100% - 50px);
    }

    .about-page .about-story-grid {
        grid-template-columns: 1fr;
    }

    .about-page .about-story-visual {
        width: 100%;
        max-width: 650px;

        margin-left: auto;
        margin-right: auto;
    }

    .about-page .about-csr-heading {
        grid-template-columns: 1fr;

        gap: 25px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .about-page .about-container,
    .about-page .about-hero-content {
        width: calc(100% - 30px);
    }

    .about-page .about-hero {
        height: 650px;
        min-height: 650px;
    }

    .about-page .about-hero-image {
        background-position: 65% center;
    }

    .about-page .about-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,.65),
                rgba(0,0,0,.42) 40%,
                rgba(0,0,0,.82)
            );
    }

    .about-page .about-hero h1 {
        font-size: 46px;
    }

    .about-page .about-hero-content > p {
        font-size: 13px;
    }

    .about-page .about-hero-meta {
        gap: 24px;
    }

    .about-page .about-hero-meta strong {
        font-size: 20px;
    }

    .about-page .about-story {
        padding: 75px 0;
    }

    .about-page .about-story-visual {
        min-height: 420px;
    }

    .about-page .about-story-image-wrap {
        width: 90%;
        height: 400px;
    }

    .about-page .about-story-floating-card {
        width: 190px;
    }

    .about-page .about-story-points {
        grid-template-columns: 1fr;
    }

    .about-page .about-csr {
        padding: 75px 0;
    }

    .about-page .about-csr-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .about-page .about-hero {
        height: 620px;
        min-height: 620px;
    }

    .about-page .about-hero h1 {
        font-size: 40px;
    }

    .about-page .about-story-image-wrap {
        height: 340px;
    }

    .about-page .about-story-visual {
        min-height: 365px;
    }

    .about-page .about-story-floating-card {
        width: 170px;
    }

    .about-page .about-story-content h2 {
        font-size: 34px;
    }

    .about-page .about-csr-heading h2 {
        font-size: 35px;
    }
}