/* =====================================================
   GEFCON ABOUT PAGE
===================================================== */

.about-page {
    background: #fffdf9;
}


/* =====================================================
   HERO
===================================================== */

.about-hero {
    position: relative;
    min-height: 920px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #2a0f03;
    color: #ffffff;
}

.about-hero-background {
    position: absolute;
    inset: 0;
    background:
        url("/assets/images/slide2.jpg")
        center / cover;
    transform: scale(1.06);
    animation: aboutHeroZoom 14s ease-in-out infinite alternate;
}

@keyframes aboutHeroZoom {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1.12);
    }
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(35, 11, 1, 0.98) 0%,
            rgba(48, 17, 3, 0.91) 46%,
            rgba(48, 17, 3, 0.62) 70%,
            rgba(35, 11, 1, 0.48) 100%
        );
}

.about-hero-pattern {
    position: absolute;
    top: 120px;
    left: -80px;
    width: 370px;
    height: 370px;
    opacity: 0.14;
    background-image:
        radial-gradient(#ff8731 1.4px, transparent 1.4px);
    background-size: 18px 18px;
}

.about-hero-layout {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    align-items: center;
    gap: 75px;
    padding-top: 145px;
    padding-bottom: 90px;
}

.about-hero-copy {
    max-width: 750px;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.7rem;
    font-weight: 700;
}

.about-breadcrumb a:hover {
    color: #ff8731;
}

.about-breadcrumb i {
    color: #ff8731;
    font-size: 0.55rem;
}

.about-hero-copy h1 {
    max-width: 800px;
    margin-bottom: 27px;
    color: #ffffff;
    font-size: clamp(4rem, 6.5vw, 7rem);
    letter-spacing: -0.035em;
}

.about-hero-copy > p {
    max-width: 680px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.02rem;
}

.about-hero-trust {
    display: flex;
    gap: 45px;
    margin-top: 50px;
}

.about-hero-trust div {
    display: flex;
    flex-direction: column;
}

.about-hero-trust strong {
    color: #ff8731;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.25rem;
    line-height: 1;
}

.about-hero-trust span {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.65rem;
    font-weight: 700;
}

.about-hero-showcase {
    position: relative;
    min-height: 680px;
}

.hero-photo {
    position: absolute;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 35px 100px rgba(13, 4, 0, 0.5);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-photo-main {
    top: 5px;
    right: 15px;
    width: 68%;
    height: 575px;
    border: 8px solid rgba(255, 255, 255, 0.1);
    border-radius: 220px 220px 24px 24px;
}

.hero-photo-main img {
    object-position: center top;
}

.hero-photo-secondary {
    bottom: 10px;
    left: 0;
    width: 44%;
    height: 330px;
    border: 7px solid #ffffff;
    border-radius: 150px 150px 18px 18px;
}

.hero-photo-secondary img {
    object-position: center top;
}

.hero-founder-badge {
    position: absolute;
    z-index: 4;
    right: -10px;
    bottom: 22px;
    display: flex;
    min-width: 275px;
    flex-direction: column;
    padding: 21px 25px;
    border-left: 4px solid #f36d0a;
    background: #ffffff;
    box-shadow: 0 20px 70px rgba(20, 6, 0, 0.28);
}

.hero-founder-badge span {
    color: #e65b00;
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.hero-founder-badge strong {
    margin: 4px 0;
    color: #321306;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.45rem;
}

.hero-founder-badge small {
    color: #776a62;
}

.hero-floating-card {
    position: absolute;
    z-index: 5;
    top: 165px;
    left: -32px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px 19px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    background: rgba(45, 15, 2, 0.78);
    backdrop-filter: blur(13px);
}

.hero-floating-card > i {
    color: #ff8731;
    font-size: 1.4rem;
}

.hero-floating-card strong,
.hero-floating-card span {
    display: block;
}

.hero-floating-card strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.14rem;
}

.hero-floating-card span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.62rem;
}

.about-scroll-indicator {
    position: absolute;
    z-index: 4;
    bottom: 35px;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.59rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.about-scroll-indicator i {
    color: #ff8731;
    animation: scrollArrow 1.6s ease-in-out infinite;
}

@keyframes scrollArrow {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}


/* =====================================================
   BRAND STATEMENT
===================================================== */

.brand-statement {
    position: relative;
    z-index: 10;
    background: #ffffff;
    box-shadow: 0 15px 55px rgba(57, 20, 3, 0.08);
}

.brand-statement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.brand-statement-grid > div {
    display: flex;
    min-height: 130px;
    align-items: center;
    gap: 18px;
    padding: 28px 35px;
    border-right: 1px solid #f1dac0;
}

.brand-statement-grid > div:last-child {
    border-right: 0;
}

.brand-statement-grid span {
    color: #f36d0a;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    font-weight: 700;
}

.brand-statement-grid p {
    margin: 0;
    color: #4b1f09;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.22rem;
    font-weight: 600;
    line-height: 1.35;
}


/* =====================================================
   STORY
===================================================== */

.story-section {
    overflow: hidden;
    background:
        radial-gradient(
            circle at 93% 11%,
            rgba(243, 109, 10, 0.09),
            transparent 23%
        ),
        #fffdf9;
}

.story-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: clamp(70px, 8vw, 125px);
}

.story-gallery {
    position: relative;
    min-height: 760px;
}

.story-gallery::before {
    position: absolute;
    top: 55px;
    left: -45px;
    width: 350px;
    height: 350px;
    content: "";
    opacity: 0.3;
    background-image:
        radial-gradient(#e65b00 1.2px, transparent 1.2px);
    background-size: 15px 15px;
}

.story-slider {
    position: relative;
    z-index: 2;
    height: 670px;
    overflow: hidden;
    border-radius: 250px 250px 24px 24px;
    background: #f9ebd8;
    box-shadow: 0 35px 100px rgba(58, 20, 2, 0.2);
}

.story-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.07);
    transition:
        opacity 0.8s ease,
        visibility 0.8s ease,
        transform 5s ease;
}

.story-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.story-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.story-slider-navigation {
    position: absolute;
    z-index: 5;
    right: 15px;
    bottom: 5px;
    display: flex;
    align-items: center;
    gap: 11px;
}

.story-slider-navigation button {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #321306;
    color: #ffffff;
    transition: 0.25s ease;
}

.story-slider-navigation button:hover {
    background: #f36d0a;
}

.story-progress {
    width: 70px;
    height: 3px;
    overflow: hidden;
    border-radius: 99px;
    background: #f1dac0;
}

.story-progress span {
    display: block;
    width: 50%;
    height: 100%;
    background: #f36d0a;
    transition: transform 0.4s ease;
}

.story-founder-card {
    position: absolute;
    z-index: 6;
    right: -40px;
    bottom: 85px;
    display: flex;
    min-width: 300px;
    flex-direction: column;
    padding: 24px 26px;
    border-left: 4px solid #f36d0a;
    background: #ffffff;
    box-shadow: 0 20px 65px rgba(51, 17, 2, 0.17);
}

.founder-signature {
    margin-bottom: 3px;
    color: #e65b00;
    font-family: cursive;
    font-size: 1.45rem;
}

.story-founder-card strong {
    color: #321306;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.4rem;
}

.story-founder-card span {
    color: #776a62;
    font-size: 0.65rem;
}

.story-year-card {
    position: absolute;
    z-index: 6;
    top: 130px;
    left: -40px;
    display: grid;
    width: 130px;
    height: 130px;
    place-items: center;
    align-content: center;
    border: 8px solid #fffdf9;
    border-radius: 50%;
    background: #f36d0a;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 20px 60px rgba(51, 17, 2, 0.2);
}

.story-year-card strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1;
}

.story-year-card span {
    max-width: 88px;
    margin-top: 5px;
    font-size: 0.57rem;
    line-height: 1.25;
}

.story-copy h2 {
    margin-bottom: 25px;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.story-copy > p {
    color: #776a62;
}

.story-copy .story-lead {
    color: #682b0b;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.38rem;
    font-weight: 600;
    line-height: 1.5;
}

.story-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.story-highlights article {
    display: flex;
    gap: 12px;
    padding: 17px;
    border: 1px solid #f1dac0;
    border-radius: 12px;
    background: #ffffff;
}

.story-highlights i {
    margin-top: 4px;
    color: #f36d0a;
    font-size: 1.1rem;
}

.story-highlights strong,
.story-highlights span {
    display: block;
}

.story-highlights strong {
    margin-bottom: 3px;
    color: #321306;
    font-size: 0.75rem;
}

.story-highlights span {
    color: #776a62;
    font-size: 0.64rem;
    line-height: 1.55;
}


/* =====================================================
   PURPOSE
===================================================== */

.purpose-banner {
    position: relative;
    padding: 125px 0;
    overflow: hidden;
    background:
        url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=2000&q=88")
        center / cover fixed;
    color: #ffffff;
    text-align: center;
}

.purpose-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            rgba(43, 13, 1, 0.91),
            rgba(57, 18, 1, 0.94)
        );
}

.purpose-content {
    position: relative;
    z-index: 2;
}

.purpose-content > span {
    color: #ff8731;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.purpose-content h2 {
    max-width: 1000px;
    margin: 18px auto 20px;
    color: #ffffff;
    font-size: clamp(3rem, 6vw, 5.5rem);
}

.purpose-content p {
    max-width: 760px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.7);
}

.purpose-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #ff8731;
}

.purpose-divider::before,
.purpose-divider::after {
    width: 75px;
    height: 1px;
    content: "";
    background: rgba(255, 255, 255, 0.28);
}


/* =====================================================
   VALUES
===================================================== */

.about-values-section {
    background:
        linear-gradient(
            to bottom,
            #fff8ee,
            #fffdf9
        );
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.about-value-card {
    position: relative;
    min-height: 365px;
    grid-column: span 2;
    overflow: hidden;
    padding: 36px 30px;
    border: 1px solid #f1dac0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 45px rgba(60, 24, 4, 0.07);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.about-value-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.about-value-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.about-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(60, 24, 4, 0.14);
}

.about-value-card::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 5px;
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    background: #f36d0a;
    transition: transform 0.35s ease;
}

.about-value-card:hover::after {
    transform: scaleX(1);
}

.about-value-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}

.about-value-top > span {
    color: rgba(104, 43, 11, 0.1);
    font-family: "Cormorant Garamond", serif;
    font-size: 4.3rem;
    font-weight: 700;
    line-height: 1;
}

.about-value-icon {
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    border-radius: 17px;
    background: #fff8ee;
    color: #e65b00;
    font-size: 1.35rem;
}

.about-value-card h3 {
    margin-bottom: 16px;
    font-size: 1.65rem;
}

.about-value-card p {
    margin: 0;
    color: #776a62;
    font-size: 0.81rem;
}

.vision-card {
    background: #321306;
}

.vision-card h3,
.vision-card p {
    color: #ffffff;
}

.vision-card p {
    color: rgba(255, 255, 255, 0.67);
}

.vision-card .about-value-top > span {
    color: rgba(255, 255, 255, 0.08);
}

.vision-card .about-value-icon {
    background: #f36d0a;
    color: #ffffff;
}

.slogan-card {
    background:
        linear-gradient(
            135deg,
            #e65b00,
            #f7862f
        );
}

.slogan-card h3,
.slogan-card p {
    color: #ffffff;
}

.slogan-card .about-value-icon {
    background: rgba(255, 255, 255, 0.17);
    color: #ffffff;
}

.slogan-card .about-value-top > span {
    color: rgba(255, 255, 255, 0.13);
}


/* =====================================================
   LEADERSHIP
===================================================== */

.leadership-section {
    overflow: hidden;
    background:
        linear-gradient(
            125deg,
            #241006,
            #4b1f09
        );
    color: #ffffff;
}

.leadership-section::before {
    position: absolute;
    top: -250px;
    right: -180px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    content: "";
}

.leadership-heading {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 65px;
}

.leadership-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.leadership-heading > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
}

.featured-leaders {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 32px;
}

.featured-leader {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.featured-leader.reverse {
    grid-template-columns: 1.25fr 0.75fr;
}

.featured-leader.reverse .leader-image {
    grid-column: 2;
}

.featured-leader.reverse .leader-information {
    grid-column: 1;
    grid-row: 1;
}

.leader-image {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.7s ease;
}

.featured-leader:hover .leader-image img {
    transform: scale(1.05);
}

.leader-image > span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 8px 13px;
    border-radius: 99px;
    background: rgba(36, 16, 6, 0.83);
    color: #ffffff;
    font-size: 0.62rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.leader-information {
    position: relative;
    padding: 60px;
}

.leader-role-number {
    position: absolute;
    top: 25px;
    right: 35px;
    color: rgba(255, 255, 255, 0.07);
    font-family: "Cormorant Garamond", serif;
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
}

.leader-information > span {
    color: #ff8731;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.leader-information h3 {
    margin: 12px 0 22px;
    color: #ffffff;
    font-size: 2.7rem;
}

.leader-information p {
    color: rgba(255, 255, 255, 0.68);
}

.leader-strengths {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.leader-strengths span {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 99px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.61rem;
    font-weight: 700;
}

.stakeholder-area {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    align-items: start;
    gap: 55px;
    margin-top: 80px;
}

.stakeholder-introduction h3 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 2.35rem;
}

.stakeholder-introduction p {
    color: rgba(255, 255, 255, 0.62);
}

.stakeholder-grid {
    display: grid;
    gap: 15px;
}

.stakeholder-card {
    display: flex;
    align-items: flex-start;
    gap: 19px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.stakeholder-card:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.09);
}

.stakeholder-avatar {
    display: grid;
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: #f36d0a;
    color: #ffffff;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.15rem;
    font-weight: 700;
}

.stakeholder-card span {
    color: #ff8731;
    font-size: 0.59rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.stakeholder-card h4 {
    margin: 4px 0 7px;
    color: #ffffff;
    font-size: 1.4rem;
}

.stakeholder-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.74rem;
}

.leadership-cta {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    margin-top: 65px;
    padding: 35px 40px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
}

.leadership-cta > div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.leadership-cta > div > i {
    display: grid;
    width: 65px;
    height: 65px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: #f36d0a;
    font-size: 1.4rem;
}

.leadership-cta span {
    color: #ff8731;
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.leadership-cta h3 {
    margin: 3px 0 5px;
    color: #ffffff;
    font-size: 1.65rem;
}

.leadership-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.75rem;
}


/* =====================================================
   WHY CHOOSE US
===================================================== */

.choose-section {
    background:
        radial-gradient(
            circle at 5% 15%,
            rgba(243, 109, 10, 0.08),
            transparent 25%
        ),
        #fffdf9;
}

.choose-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    align-items: start;
    gap: 80px;
}

.choose-copy {
    position: sticky;
    top: 120px;
}

.choose-copy h2 {
    margin-bottom: 23px;
    font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.choose-copy > p {
    color: #776a62;
}

.choose-founder-quote {
    position: relative;
    margin: 35px 0;
    padding: 30px;
    border-left: 4px solid #f36d0a;
    background: #ffffff;
    box-shadow: 0 15px 50px rgba(60, 24, 4, 0.08);
}

.choose-founder-quote > i {
    position: absolute;
    top: 18px;
    right: 22px;
    color: #f1dac0;
    font-size: 2.5rem;
}

.choose-founder-quote blockquote {
    margin-bottom: 20px;
    color: #682b0b;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.28rem;
    font-style: italic;
    line-height: 1.5;
}

.choose-founder-quote strong,
.choose-founder-quote span {
    display: block;
}

.choose-founder-quote strong {
    color: #321306;
    font-size: 0.75rem;
}

.choose-founder-quote span {
    color: #776a62;
    font-size: 0.62rem;
}

.choose-reasons {
    display: grid;
    gap: 16px;
}

.choose-reason {
    position: relative;
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: start;
    gap: 20px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid #f1dac0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 35px rgba(60, 24, 4, 0.06);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.choose-reason:hover {
    transform: translateX(8px);
    box-shadow: 0 22px 60px rgba(60, 24, 4, 0.12);
}

.reason-number {
    color: rgba(104, 43, 11, 0.12);
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.reason-icon {
    display: grid;
    width: 55px;
    height: 55px;
    place-items: center;
    border-radius: 15px;
    background: #fff8ee;
    color: #e65b00;
    font-size: 1.2rem;
}

.choose-reason h3 {
    margin-bottom: 9px;
    font-size: 1.5rem;
}

.choose-reason p {
    margin: 0;
    color: #776a62;
    font-size: 0.78rem;
}


/* =====================================================
   STATISTICS
===================================================== */

.about-statistics {
    padding: 80px 0;
    background: #f36d0a;
    color: #ffffff;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.statistics-grid article {
    min-height: 125px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 35px;
    border-right: 1px solid rgba(255, 255, 255, 0.27);
    text-align: center;
}

.statistics-grid article:last-child {
    border-right: 0;
}

.statistics-grid strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 4rem;
    line-height: 1;
}

.statistics-grid span {
    margin-top: 10px;
    font-size: 0.68rem;
    font-weight: 700;
}


/* =====================================================
   FINAL CTA
===================================================== */

.about-final-cta {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background:
        url("https://images.unsplash.com/photo-1555244162-803834f70033?auto=format&fit=crop&w=2000&q=88")
        center / cover;
    color: #ffffff;
}

.about-final-cta-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(37, 12, 2, 0.97),
            rgba(84, 29, 3, 0.79)
        );
}

.about-final-cta-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 70px;
}

.about-final-cta h2 {
    max-width: 830px;
    margin-bottom: 17px;
    color: #ffffff;
    font-size: clamp(3rem, 5vw, 4.8rem);
}

.about-final-cta p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.about-final-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1150px) {

    .about-hero-layout {
        gap: 40px;
    }

    .about-hero-showcase {
        min-height: 620px;
    }

    .hero-photo-main {
        width: 72%;
        height: 535px;
    }

    .story-founder-card {
        right: -10px;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-value-card,
    .about-value-card:nth-child(4),
    .about-value-card:nth-child(5) {
        grid-column: auto;
    }

    .about-value-card:last-child {
        grid-column: 1 / -1;
        min-height: 260px;
    }

    .stakeholder-area {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {

    .about-hero {
        min-height: auto;
    }

    .about-hero-layout {
        grid-template-columns: 1fr;
        padding-top: 165px;
    }

    .about-hero-copy {
        max-width: 850px;
    }

    .about-hero-showcase {
        width: min(100%, 650px);
        min-height: 650px;
        margin-inline: auto;
    }

    .brand-statement-grid {
        grid-template-columns: 1fr;
    }

    .brand-statement-grid > div {
        min-height: 100px;
        border-right: 0;
        border-bottom: 1px solid #f1dac0;
    }

    .brand-statement-grid > div:last-child {
        border-bottom: 0;
    }

    .story-layout {
        grid-template-columns: 1fr;
    }

    .story-gallery {
        width: min(100%, 600px);
        margin-inline: auto;
    }

    .leadership-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .featured-leader,
    .featured-leader.reverse {
        grid-template-columns: 1fr;
    }

    .featured-leader.reverse .leader-image,
    .featured-leader.reverse .leader-information {
        grid-column: auto;
        grid-row: auto;
    }

    .leader-image {
        min-height: 550px;
    }

    .leadership-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .choose-layout {
        grid-template-columns: 1fr;
    }

    .choose-copy {
        position: static;
    }

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .statistics-grid article:nth-child(2) {
        border-right: 0;
    }

    .statistics-grid article:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.27);
    }

    .about-final-cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-final-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 650px) {

    .about-hero-layout {
        padding-top: 125px;
        padding-bottom: 80px;
    }

    .about-hero-copy h1 {
        font-size: clamp(3rem, 13vw, 4.6rem);
    }

    .about-hero-copy > p {
        font-size: 0.88rem;
    }

    .about-hero-trust {
        justify-content: space-between;
        gap: 12px;
    }

    .about-hero-trust strong {
        font-size: 1.65rem;
    }

    .about-hero-trust span {
        font-size: 0.56rem;
    }

    .about-hero-showcase {
        min-height: 530px;
    }

    .hero-photo-main {
        right: 0;
        width: 75%;
        height: 440px;
        border-radius: 160px 160px 20px 20px;
    }

    .hero-photo-secondary {
        width: 46%;
        height: 260px;
        border-radius: 110px 110px 15px 15px;
    }

    .hero-founder-badge {
        right: 0;
        min-width: 220px;
    }

    .hero-floating-card {
        top: 120px;
        left: 0;
    }

    .about-scroll-indicator {
        display: none;
    }

    .story-gallery {
        min-height: 590px;
    }

    .story-slider {
        height: 530px;
        border-radius: 180px 180px 20px 20px;
    }

    .story-year-card {
        top: 95px;
        left: -5px;
        width: 105px;
        height: 105px;
    }

    .story-founder-card {
        right: 4px;
        bottom: 45px;
        min-width: 235px;
    }

    .story-highlights {
        grid-template-columns: 1fr;
    }

    .purpose-banner {
        padding: 90px 0;
        background-attachment: scroll;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-value-card:last-child {
        grid-column: auto;
        min-height: 330px;
    }

    .leader-image {
        min-height: 440px;
    }

    .leader-information {
        padding: 38px 27px;
    }

    .leader-information h3 {
        font-size: 2.2rem;
    }

    .stakeholder-card {
        align-items: flex-start;
    }

    .leadership-cta {
        padding: 28px 22px;
    }

    .leadership-cta > div {
        align-items: flex-start;
        flex-direction: column;
    }

    .choose-reason {
        grid-template-columns: auto 1fr;
    }

    .reason-number {
        display: none;
    }

    .statistics-grid {
        grid-template-columns: 1fr;
    }

    .statistics-grid article {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.27);
    }

    .statistics-grid article:last-child {
        border-bottom: 0;
    }

    .about-final-actions {
        flex-direction: column;
    }

    .about-final-actions .button {
        width: 100%;
    }
}