@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=DM+Sans:wght@400;500;600;700;800&display=swap');


/* ========================================
   KHUKURI RUN PALETTE


======================================== */

:root {

    --cream: #FFF8EF;

    --white: #FFFFFF;

    --peach-light: #FBE3D0;

    --peach: #F6C7A5;

    --apricot: #F0A26D;

    --apricot-dark: #D97F4F;

    --pistachio-light: #EEF3E4;

    --pistachio: #DCE8C5;

    --sage: #AFC59C;

    --sage-dark: #79956F;

    --forest: #214333;

    --dark: #26372E;

    --muted: #6E786F;

    --border: #D8DDD3;
}



/* ========================================
   RESET
======================================== */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;
}


html {

    scroll-behavior: smooth;
}


body {

    background: var(--cream);

    color: var(--dark);

    font-family: "DM Sans", sans-serif;

    overflow-x: hidden;
}


a {

    text-decoration: none;

    color: inherit;
}


img {

    display: block;

    width: 100%;
}



/* ========================================
   NAVIGATION
======================================== */

.header {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 100;
}


.navbar {

    height: 82px;

    padding: 0 5%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: var(--forest);
}


.logo {

    font-family: "Archivo Black", sans-serif;

    font-size: 22px;

    letter-spacing: -1px;

    color: var(--forest);
}


/* KHUKURI = GREEN
   RUN = APRICOT */

.logo span {

    color: var(--apricot-dark);
}


.nav-links {

    display: flex;

    align-items: center;

    gap: 31px;

    font-size: 13px;

    font-weight: 700;
}


.nav-links a {

    transition: opacity .2s;
}


.nav-links a:hover {

    opacity: .55;
}


.nav-join {

    padding: 11px 18px;

    background: var(--forest);

    color: var(--cream);

    border-radius: 100px;
}


.menu-button {

    display: none;

    border: none;

    background: none;

    color: var(--forest);

    font-size: 24px;

    cursor: pointer;
}



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

.hero {

    min-height: 760px;

    height: 100vh;

    position: relative;

    display: grid;

    grid-template-columns: 44% 56%;

    padding-bottom: 45px;

    background: var(--cream);
}


.hero-copy {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 120px 8% 70px 11%;
}


.eyebrow {

    margin-bottom: 25px;

    color: var(--sage-dark);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3.5px;
}


.hero h1 {

    color: var(--forest);

    font-family: "Archivo Black", sans-serif;

    font-size: clamp(64px, 7vw, 112px);

    line-height: .81;

    letter-spacing: -7px;
}


/* THE GIRLS */

.hero h1 span {

    color: var(--apricot);
}


.hero-description {

    max-width: 430px;

    margin-top: 30px;

    color: var(--dark);

    font-size: 17px;

    line-height: 1.65;
}


.hero-actions {

    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 34px;
}


.main-button {

    display: inline-flex;

    gap: 28px;

    align-items: center;

    padding: 16px 21px;

    background: var(--forest);

    color: white;

    border-radius: 100px;

    font-weight: 800;

    transition: .2s;
}


.main-button:hover {

    transform: translateY(-4px);

    background: var(--dark);
}


.text-button {

    color: var(--forest);

    font-weight: 700;

    border-bottom: 1px solid var(--forest);

    padding-bottom: 4px;
}



/* ========================================
   MINI STATS
======================================== */

.hero-mini {

    display: grid;

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

    max-width: 430px;

    margin-top: 55px;

    padding-top: 20px;

    border-top: 1px solid rgba(33,67,51,.22);
}


.hero-mini div {

    display: flex;

    flex-direction: column;
}


.hero-mini strong {

    color: var(--forest);

    font-family: "Archivo Black";

    font-size: 19px;
}


.hero-mini span {

    margin-top: 3px;

    color: var(--dark);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.5px;
}



/* ========================================
   HERO PHOTO
======================================== */

.hero-photo {

    position: relative;

    margin: 18px 18px 18px 0;

    overflow: hidden;

    border-radius: 0 0 0 65px;

    background: var(--pistachio);
}


.hero-photo img {

    width: 100%;

    height: 100%;

    object-fit: cover;
}


.hero-badge {

    position: absolute;

    right: 25px;

    bottom: 25px;

    width: 140px;

    height: 140px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    background: var(--pistachio);

    color: var(--forest);

    border-radius: 50%;

    text-align: center;

    transform: rotate(7deg);
}


.hero-badge strong {

    font-family: "Archivo Black";

    font-size: 28px;
}


.hero-badge span {

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

    line-height: 1.3;
}



/* ========================================
   TICKER
======================================== */

.ticker {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    height: 46px;

    overflow: hidden;

    background: var(--peach);

    color: var(--forest);
}


.ticker-track {

    display: flex;

    align-items: center;

    width: max-content;

    height: 100%;

    gap: 29px;

    font-family: "Archivo Black";

    font-size: 12px;

    animation: ticker 24s linear infinite;
}


@keyframes ticker {

    to {

        transform: translateX(-40%);
    }
}



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

.about-section {

    display: grid;

    grid-template-columns: 12% 88%;

    padding: 135px 6%;

    background: var(--cream);
}


.section-number {

    color: var(--sage-dark);

    font-family: "Archivo Black";
}


.section-label {

    margin-bottom: 27px;

    color: var(--sage-dark);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 4px;
}


.about-content h2 {

    color: var(--forest);

    font-family: "Archivo Black";

    font-size: clamp(56px, 7.7vw, 112px);

    line-height: .85;

    letter-spacing: -7px;
}


.about-content h2 span {

    color: var(--apricot);
}


.about-bottom {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    margin-top: 60px;
}


.about-description {

    max-width: 600px;
}


.about-description p {

    margin-bottom: 18px;

    color: var(--muted);

    font-size: 18px;

    line-height: 1.7;
}


.about-list {

    border-top: 1px solid var(--border);
}


.about-list div {

    display: grid;

    grid-template-columns: 60px 1fr;

    padding: 17px 0;

    border-bottom: 1px solid var(--border);
}


.about-list span {

    color: var(--apricot-dark);

    font-size: 10px;

    font-weight: 800;
}


.about-list strong {

    color: var(--forest);

    font-size: 14px;
}



/* ========================================
   COMMUNITY
======================================== */

.community-section {

    padding: 115px 18px 18px;

    background: var(--pistachio-light);
}


.community-header {

    width: min(1180px, 88%);

    margin: 0 auto 60px;
}


.community-header h2 {

    color: var(--forest);

    font-family: "Archivo Black";

    font-size: clamp(58px, 8vw, 112px);

    line-height: .83;

    letter-spacing: -7px;
}


.community-header h2 span {

    color: var(--sage-dark);
}


.photo-grid {

    display: grid;

    grid-template-columns: 1.35fr .65fr;

    gap: 18px;
}


.right-grid {

    display: grid;

    grid-template-rows: .53fr 1fr;

    gap: 18px;
}


.photo-card {

    position: relative;

    overflow: hidden;

    background: var(--sage);
}


.large-photo {

    min-height: 700px;
}


.small-photo {

    min-height: 0;
}


.photo-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .6s;
}


.photo-card:hover img {

    transform: scale(1.035);
}


.photo-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(

            transparent 40%,

            rgba(24,54,39,.75)

        );
}


.photo-content {

    position: absolute;

    left: 30px;

    bottom: 30px;

    z-index: 2;

    color: white;
}


.photo-content small {

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 3px;
}


.photo-content h3 {

    margin-top: 9px;

    font-family: "Archivo Black";

    font-size: clamp(33px, 4vw, 60px);

    line-height: .86;

    letter-spacing: -3px;
}



/* ========================================
   GREEN MESSAGE CARD
======================================== */

.quote-card {

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    padding: 30px;

    background: var(--pistachio);

    color: var(--forest);
}


.quote-card span {

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 3px;
}


.quote-card h3 {

    font-family: "Archivo Black";

    font-size: clamp(37px, 4vw, 59px);

    line-height: .85;

    letter-spacing: -3px;
}


.quote-card p {

    color: var(--sage-dark);

    font-size: 12px;

    font-weight: 700;
}



/* ========================================

======================================== */

.statement-section {

    padding: 130px 6%;

    background: var(--peach-light);

    color: var(--forest);
}


.statement-section > p {

    color: var(--apricot-dark);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 4px;
}


.statement-section h2 {

    margin-top: 8px;

    color: var(--forest);

    font-family: "Archivo Black";

    font-size: clamp(100px, 17vw, 245px);

    line-height: .77;

    letter-spacing: -12px;
}


.statement-bottom {

    display: flex;

    justify-content: flex-end;

    gap: 40px;

    margin-top: 45px;
}


.statement-bottom > span {

    color: var(--apricot-dark);

    font-size: 60px;
}


.statement-bottom p {

    max-width: 430px;

    color: var(--dark);

    font-size: 18px;

    line-height: 1.65;
}



/* ========================================
   NEPAL
======================================== */

.nepal-section {

    position: relative;

    height: 720px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: var(--forest);
}


.nepal-image {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;
}


.nepal-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(

            90deg,

            rgba(23,53,38,.82),

            rgba(73,103,65,.34),

            transparent

        );
}


.nepal-content {

    position: relative;

    z-index: 2;

    width: 88%;

    margin: auto;

    color: white;
}


.nepal-content > p {

    color: var(--peach);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 4px;
}


.nepal-content h2 {

    margin-top: 23px;

    font-family: "Archivo Black";

    font-size: clamp(63px, 9vw, 130px);

    line-height: .81;

    letter-spacing: -7px;
}


.nepal-content h2 span {

    color: var(--pistachio);
}


.nepal-text {

    max-width: 390px;

    margin-top: 30px;

    color: rgba(255,255,255,.82);

    font-size: 17px;

    line-height: 1.6;
}



/* ========================================
   NEXT RUN
======================================== */

.run-section {

    padding: 130px 6%;

    background: var(--cream);
}


.run-header h2 {

    color: var(--forest);

    font-family: "Archivo Black";

    font-size: clamp(66px, 9vw, 140px);

    line-height: .8;

    letter-spacing: -8px;
}


.run-header h2 span {

    color: var(--apricot);
}


.run-grid {

    display: grid;

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

    gap: 15px;

    margin-top: 75px;
}


.run-card {

    min-height: 220px;

    padding: 25px;

    background: var(--peach-light);

    color: var(--forest);

    transition: transform .25s;
}


.run-card.green {

    background: var(--pistachio-light);
}


.run-card:hover {

    transform: translateY(-6px);
}


.run-card > span {

    display: block;

    color: var(--apricot-dark);

    font-family: "Archivo Black";

    font-size: 13px;

    text-align: right;
}


.run-card.green > span {

    color: var(--sage-dark);
}


.run-card small {

    display: block;

    margin-top: 67px;

    color: var(--sage-dark);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.run-card strong {

    display: block;

    margin-top: 7px;

    color: var(--forest);

    font-family: "Archivo Black";

    font-size: 25px;
}


.run-card p {

    margin-top: 7px;

    color: var(--muted);

    font-size: 13px;
}



/* ========================================
   LOCATION BAR
======================================== */

.location-bar {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 15px;

    padding: 22px 25px;

    background: var(--forest);

    color: white;
}


.location-bar div {

    display: flex;

    flex-direction: column;
}


.location-bar small {

    color: var(--pistachio);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}


.location-bar strong {

    margin-top: 4px;
}


.location-bar a {

    padding: 12px 18px;

    background: var(--peach);

    color: var(--forest);

    font-weight: 800;
}



/* ========================================
   RULES
======================================== */

.rules-section {

    padding: 120px 6%;

    background: var(--pistachio-light);
}


.rule {

    display: grid;

    grid-template-columns: 70px 1fr auto;

    align-items: center;

    gap: 20px;

    padding: 27px 0;

    border-top: 1px solid #CBD7BE;
}


.rule:last-child {

    border-bottom: 1px solid #CBD7BE;
}


.rule span {

    color: var(--sage-dark);

    font-size: 11px;

    font-weight: 800;
}


.rule h3 {

    color: var(--forest);

    font-family: "Archivo Black";

    font-size: clamp(30px, 4vw, 58px);

    letter-spacing: -3px;
}


.rule b {

    color: var(--apricot);

    font-size: 26px;
}



/* ========================================
   JOIN

   APRICOT / PEACH
======================================== */

.join-section {

    padding: 35px 6% 115px;

    background: var(--peach);

    color: var(--forest);
}


.join-eyebrow {

    padding: 19px 0;

    border-bottom: 1px solid rgba(33,67,51,.25);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 3px;
}


.join-content {

    padding-top: 95px;
}


.join-content > p {

    margin-bottom: 20px;

    color: var(--sage-dark);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 4px;
}


.join-content h2 {

    font-family: "Archivo Black";

    font-size: clamp(70px, 10vw, 150px);

    line-height: .78;

    letter-spacing: -9px;
}


.join-content h2 span {

    color: var(--cream);
}


.join-bottom {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 40px;

    margin-top: 50px;
}


.join-bottom > p {

    max-width: 320px;

    font-size: 18px;

    line-height: 1.6;
}


.join-actions {

    display: flex;

    align-items: center;

    gap: 25px;
}


.join-button {

    padding: 15px 22px;

    background: var(--forest);

    color: white;

    font-weight: 800;
}


.social-link {

    padding-bottom: 4px;

    border-bottom: 1px solid var(--forest);

    font-weight: 800;
}



/* ========================================
   FOOTER
======================================== */

footer {

    min-height: 95px;

    padding: 0 6%;

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 30px;

    background: var(--forest);

    color: white;
}


.footer-logo {

    font-family: "Archivo Black";

    font-size: 20px;
}


.footer-logo span {

    color: var(--apricot);
}


footer > p {

    color: var(--pistachio);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 3px;
}


footer > span {

    text-align: right;

    font-size: 11px;
}



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

@media (max-width: 900px) {


    .menu-button {

        display: block;
    }


    .nav-links {

        display: none;

        position: absolute;

        top: 72px;

        left: 20px;

        right: 20px;

        padding: 25px;

        background: var(--cream);

        color: var(--forest);

        flex-direction: column;

        align-items: flex-start;

        box-shadow:

            0
            20px
            60px
            rgba(0,0,0,.08);
    }


    .nav-links.show {

        display: flex;
    }


    .hero {

        grid-template-columns: 1fr;

        height: auto;

        padding-bottom: 46px;
    }


    .hero-copy {

        min-height: 700px;

        padding: 130px 7% 65px;
    }


    .hero-photo {

        height: 650px;

        margin: 0 18px 18px;

        border-radius: 0;
    }


    .about-section {

        grid-template-columns: 1fr;

        gap: 30px;
    }


    .about-bottom {

        grid-template-columns: 1fr;

        gap: 40px;
    }


    .photo-grid {

        grid-template-columns: 1fr;
    }


    .right-grid {

        grid-template-rows: auto 550px;
    }


    .quote-card {

        min-height: 350px;
    }


    .run-grid {

        grid-template-columns: 1fr 1fr;
    }

}



@media (max-width: 600px) {


    .navbar {

        padding: 0 22px;
    }


    .hero-copy {

        min-height: 680px;

        padding-left: 24px;

        padding-right: 24px;
    }


    .hero h1 {

        font-size:

            clamp(
                60px,
                18vw,
                85px
            );

        letter-spacing: -5px;
    }


    .hero-actions {

        flex-direction: column;

        align-items: flex-start;
    }


    .hero-mini {

        gap: 10px;
    }


    .hero-photo {

        height: 480px;
    }


    .hero-badge {

        width: 110px;

        height: 110px;
    }


    .about-section {

        padding: 95px 24px;
    }


    .about-content h2 {

        letter-spacing: -4px;
    }


    .community-section {

        padding-top: 90px;
    }


    .large-photo {

        min-height: 500px;
    }


    .right-grid {

        grid-template-rows: auto 480px;
    }


    .statement-section {

        padding: 100px 24px;
    }


    .statement-section h2 {

        letter-spacing: -7px;
    }


    .statement-bottom {

        justify-content: flex-start;
    }


    .statement-bottom > span {

        display: none;
    }


    .nepal-section {

        height: 620px;
    }


    .nepal-content {

        width:

            calc(
                100%
                -
                48px
            );
    }


    .nepal-content h2 {

        letter-spacing: -5px;
    }


    .run-section {

        padding: 100px 24px;
    }


    .run-header h2 {

        letter-spacing: -5px;
    }


    .run-grid {

        grid-template-columns: 1fr;
    }


    .run-card {

        min-height: 170px;
    }


    .run-card small {

        margin-top: 38px;
    }


    .location-bar {

        align-items: flex-start;

        flex-direction: column;

        gap: 18px;
    }


    .rules-section {

        padding: 90px 24px;
    }


    .rule {

        grid-template-columns:

            35px
            1fr
            auto;

        gap: 10px;
    }


    .join-section {

        padding-left: 24px;

        padding-right: 24px;
    }


    .join-content h2 {

        letter-spacing: -5px;
    }


    .join-bottom {

        align-items: flex-start;

        flex-direction: column;
    }


    .join-actions {

        align-items: flex-start;

        flex-direction: column;
    }


    footer {

        padding: 30px 24px;

        grid-template-columns: 1fr;
    }


    footer > p {

        display: none;
    }


    footer > span {

        text-align: left;
    }

}

/* team */
/* ========================================
   PEOPLE SECTION
======================================== */

.people-section {

    padding: 130px 6%;

    background: var(--cream);
}


.people-header {

    max-width: 1000px;

    margin-bottom: 55px;
}


.people-header h2 {

    color: var(--forest);

    font-family: "Archivo Black";

    font-size: clamp(58px, 8vw, 110px);

    line-height: .84;

    letter-spacing: -7px;
}


.people-header h2 span {

    color: var(--apricot);
}


.people-intro {

    max-width: 560px;

    margin-top: 28px;

    color: var(--muted);

    font-size: 18px;

    line-height: 1.7;
}


.people-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px;
}


.person-card {

    display: grid;

    grid-template-columns: 42% 58%;

    min-height: 520px;

    overflow: hidden;
}


.founder-card {

    background: var(--peach-light);
}


.advisor-card {

    background: var(--pistachio-light);
}


.person-image {

    height: 100%;
}


.person-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;
}


.person-info {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 42px 38px;
}


.person-role {

    margin-bottom: 18px;

    color: var(--sage-dark);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 3px;
}


.person-info h3 {

    color: var(--forest);

    font-family: "Archivo Black";

    font-size: clamp(34px, 4vw, 58px);

    line-height: .9;

    letter-spacing: -3px;
}


.person-bio {

    margin-top: 22px;

    color: var(--dark);

    font-size: 17px;

    line-height: 1.7;
}


.person-note {

    margin-top: 20px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.6;

    border-top: 1px solid rgba(33,67,51,.12);

    padding-top: 18px;
}


/* ========================================
   PEOPLE SECTION RESPONSIVE
======================================== */

@media (max-width: 900px) {

    .people-grid {

        grid-template-columns: 1fr;
    }

    .person-card {

        grid-template-columns: 1fr;
    }

    .person-image {

        height: 420px;
    }

}


@media (max-width: 600px) {

    .people-section {

        padding: 90px 24px;
    }

    .people-header h2 {

        letter-spacing: -4px;
    }

    .person-info {

        padding: 28px 24px;
    }

    .person-image {

        height: 340px;
    }

}