/* =========================================================
   THE NORTHERN HIMALAYAS
   MAIN WEBSITE STYLESHEET
========================================================= */

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


/* =========================================================
   1. BASIC SETTINGS
========================================================= */

:root {
    --black: #111111;
    --dark: #ffffff;

    --cream: #ffffff;
    --cream2: #ffffff;

    --text: #17201a;
    --muted: #747c75;

    --gold: #c7a96d;
    --gold2: #e1c98f;

    --white: #ffffff;

    --max: 1240px;
}


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

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #ffffff;
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input {
    font: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.wrap {
    width: min(var(--max), calc(100% - 48px));
    margin: auto;
}


/* =========================================================
   WHITE FIXED HEADER
========================================================= */

.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: #ffffff;
    color: #111111;

    padding: 10px 0;

    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* KEEP EVERYTHING IN ONE ROW */
.header .nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

/* LOGO */
.header .brand {
    display: flex;
    align-items: center;
    margin-right: auto;
    flex-shrink: 0;
}

.header .brand img {
    display: block;
    width: 250px;
    height: auto;
}

/* NAVIGATION */
.header nav {
    display: flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
}

.header nav a {
    color: #111111;
    text-decoration: none;
}

/* EXPLORE BUTTON */
.header .nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    white-space: nowrap;

    color: #111111;
    background: transparent;

    border: 1px solid #bdbdbd;

    padding: 14px 22px;
}

.header .nav-btn:hover {
    background: #111111;
    color: #ffffff;
}

/* MOBILE MENU */
.header .menu {
    display: none;
    margin-left: auto;

    color: #111111;
    background: transparent;
    border: 0;

    font-size: 25px;
}


/* =========================================================
   LOGO
========================================================= */

.brand {
    display: flex;

    align-items: center;

    margin-right: auto;

    flex: 0 0 auto;
}

.brand img {
    width: 175px;

    height: auto;
}


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

.nav > nav {
    display: flex;

    align-items: center;

    gap: 25px;

    flex: 0 0 auto;
}

.nav > nav a {
    font-size: 10px;

    letter-spacing: 0.1em;

    white-space: nowrap;

    transition: opacity 0.25s ease;
}

.nav > nav a:hover {
    opacity: 0.65;
}


/* =========================================================
   EXPLORE BUTTON
========================================================= */

.nav-btn {
    flex: 0 0 auto;

    border: 1px solid #ffffff88;

    padding: 11px 16px;

    font-size: 9px;

    letter-spacing: 0.1em;

    white-space: nowrap;

    transition: 0.25s ease;
}

.header.scrolled .nav-btn {
    border-color: #cfcfcf;
}

.nav-btn:hover {
    background: #fff;

    color: #111;
}


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

.menu {
    display: none;

    border: 0;

    background: transparent;

    color: var(--white);

    font-size: 24px;

    cursor: pointer;
}

.header.scrolled .menu {
    color: #17201a;
}


/* =========================================================
   3. HERO
========================================================= */

.hero {
    height: 100vh;

    min-height: 720px;

    max-height: 980px;

    position: relative;

    display: flex;

    align-items: center;

    color: var(--white);

    text-align: center;

    overflow: hidden;
}


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

.hero-photo {
    position: absolute;

    inset: 0;

    background:
        url("../images/hero/home-hero.jpg")
        center / cover no-repeat;
}


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

.hero-shade {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            #02050388,
            #02050318 45%,
            #02050385
        );
}


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

.hero-center {
    position: relative;

    z-index: 2;

    padding-top: 35px;
}

.hero-center > p {
    font-size: 10px;

    letter-spacing: 0.25em;

    font-weight: 700;
}

.hero h1 {
    font:
        800 clamp(55px, 8vw, 112px) / 0.9
        Manrope;

    letter-spacing: -0.065em;

    margin: 15px 0 20px;

    text-shadow:
        0 5px 30px #0005;

    background:
        linear-gradient(
            110deg,
            #ffffff 10%,
            #ffffff 38%,
            #f4d48b 52%,
            #ffffff 66%,
            #d7d7d7 88%
        );

    background-size: 220% auto;

    -webkit-background-clip: text;

    background-clip: text;

    -webkit-text-fill-color: transparent;

    animation: headingShine 7s ease-in-out infinite;
}

.hero h1 em {
    font-style: normal;

    color: var(--gold2);

    -webkit-text-fill-color: var(--gold2);
}


/* =========================================================
   HEADING SHINE
========================================================= */

@keyframes headingShine {

    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}


/* =========================================================
   4. SEARCH
========================================================= */

.search {
    width: min(760px, 100%);

    height: 62px;

    background: #fffffff5;

    border-radius: 5px;

    margin: auto;

    display: flex;

    align-items: center;

    padding: 6px;

    box-shadow:
        0 18px 55px #0005;
}

.search > span {
    width: 45px;

    color: #737b74;

    font-size: 27px;
}

.search input {
    flex: 1;

    min-width: 0;

    border: 0;

    outline: 0;

    background: none;

    color: var(--text);

    font-size: 14px;
}

.search button {
    height: 50px;

    border: 0;

    border-radius: 3px;

    background: var(--black);

    color: var(--white);

    padding: 0 25px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.1em;

    cursor: pointer;
}


/* =========================================================
   SEARCH CHIPS
========================================================= */

.chips {
    display: flex;

    justify-content: center;

    gap: 6px;

    flex-wrap: wrap;

    margin-top: 10px;
}

.chips a,
.chips button {
    border: 1px solid #fff6;

    background: #0003;

    color: var(--white);

    padding: 7px 10px;

    border-radius: 20px;

    font-size: 9px;

    cursor: pointer;

    transition: 0.25s ease;
}

.chips a:hover,
.chips button:hover {
    background: #fff;

    color: #111;
}


/* =========================================================
   5. HERO STATS
========================================================= */

.stats {
    position: absolute;

    bottom: 0;

    left: 0;
    right: 0;

    z-index: 3;

    background: #03070499;

    border-top: 1px solid #fff2;
}

.stat-grid {
    display: grid;

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

.stat-grid > div {
    padding: 17px 20px;

    border-right: 1px solid #fff2;
}

.stat-grid > div:first-child {
    padding-left: 0;
}

.stat-grid > div:last-child {
    border: 0;
}

.stat-grid b,
.stat-grid span {
    display: block;
}

.stat-grid b {
    font:
        700 14px
        Manrope;
}

.stat-grid span {
    font-size: 8px;

    color: #c7cec8;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    margin-top: 4px;
}


/* =========================================================
   6. INTRO
========================================================= */

.intro {
    padding: 125px 0;

    background: #ffffff;

    color: var(--text);
}

.intro-grid {
    display: grid;

    grid-template-columns: 1fr 2.3fr;

    gap: 80px;
}

.num {
    font-size: 9px;

    letter-spacing: 0.15em;

    color: #7d867f;

    font-weight: 700;
}

.num span {
    display: block;

    margin-top: 12px;
}

.intro h2,
.heading h2,
.about h2 {
    font:
        800 clamp(42px, 5.3vw, 70px) / 1
        Manrope;

    letter-spacing: -0.055em;

    color: #17201a;
}

.intro h2 em,
.heading h2 em,
.about h2 em {
    color: var(--gold);

    font-style: normal;
}

.intro p {
    max-width: 560px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.9;

    margin-top: 24px;
}

.link {
    display: inline-block;

    margin-top: 23px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.1em;

    color: #17201a;
}

.link:hover {
    color: #a48445;
}


/* =========================================================
   7. TREKS
========================================================= */

.treks {
    padding: 120px 0 140px;

    background: #ffffff;

    color: var(--text);
}

.heading {
    display: flex;

    align-items: end;

    justify-content: space-between;

    gap: 50px;

    margin-bottom: 65px;
}

.heading small,
.trek-copy > small,
.contact-copy > small {
    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.17em;

    color: #858d86;
}

.heading > p {
    max-width: 390px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.8;
}


/* =========================================================
   TREK
========================================================= */

.trek {
    display: grid;

    grid-template-columns: 1.35fr 0.85fr;

    gap: 70px;

    align-items: center;

    margin-bottom: 110px;
}

.trek.reverse {
    grid-template-columns: 0.85fr 1.35fr;
}

.trek.reverse .trek-img {
    order: 2;
}

.trek.reverse .trek-copy {
    order: 1;
}


/* =========================================================
   TREK IMAGE
========================================================= */

.trek-img {
    height: 500px;

    position: relative;

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

    display: block;

    overflow: hidden;

    transition: transform 0.4s ease;

    box-shadow:
        0 20px 45px rgba(24,32,25,0.16);
}

.trek-img:hover {
    transform: scale(1.01);
}

.trek-img:after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            #0002,
            transparent 55%,
            #0007
        );
}




/* =========================================================
   TREK IMAGE LABELS
========================================================= */

.trek-img i,
.trek-img span {
    position: absolute;

    z-index: 2;

    color: var(--white);

    font-size: 9px;

    font-style: normal;

    letter-spacing: 0.15em;
}

.trek-img i {
    top: 20px;

    left: 20px;
}

.trek-img span {
    right: 20px;

    bottom: 20px;
}


/* =========================================================
   TREK TEXT
========================================================= */

.trek-copy h3 {
    font:
        800 clamp(48px, 5vw, 72px)
        Manrope;

    letter-spacing: -0.06em;

    margin-top: 7px;

    color: #17201a;
}

.trek-copy > p {
    color: var(--muted);

    font-size: 13px;

    line-height: 1.85;

    margin-top: 18px;
}

.details {
    margin-top: 27px;

    padding: 14px 0;

    border-top: 1px solid #d1cec5;

    border-bottom: 1px solid #d1cec5;

    color: #707870;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.08em;
}


/* =========================================================
   8. MOUNTAIN BREAK
========================================================= */

.break {
    height: 650px;

    position: relative;

    display: flex;

    align-items: center;

    color: var(--white);

    overflow: hidden;
}

.break-bg {
    position: absolute;

    inset: 0;

    background:
        url("../images/hero/mountain-break.jpg")
        center / cover no-repeat;
}

.break:after {
    content: "";

    position: absolute;

    inset: 0;

    background: #03070455;
}

.break-text {
    position: relative;

    z-index: 2;
}

.break-text small {
    color: var(--gold2);

    font-size: 9px;

    letter-spacing: 0.2em;

    font-weight: 800;
}

.break-text h2 {
    font:
        800 clamp(52px, 7vw, 95px) / 0.94
        Manrope;

    letter-spacing: -0.065em;

    margin-top: 15px;
}


/* =========================================================
   9. EXPERIENCES
========================================================= */

.experiences {
    padding: 125px 0;

    background: #ffffff;
}

.experience-grid {
    display: grid;

    grid-template-columns: 1.3fr 0.7fr;

    gap: 15px;
}

.experience {
    position: relative;

    min-height: 650px;

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

    display: flex;

    align-items: end;

    color: var(--white);

    overflow: hidden;

    box-shadow:
        0 20px 50px rgba(20,30,23,0.15);
}

.experience:after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            #030704d9,
            #03070408 70%
        );
}


/* =========================================================
   HOMEPAGE EXPERIENCE CLASSES
========================================================= */

.experience.hike {
    background-image:
        url("../images/experiences/hiking.jpg");
}

.experience.custom {
    background-image:
        url("../images/experiences/custom.jpg");
}

.experience-side {
    display: grid;

    gap: 15px;
}

.experience.hike,
.experience.custom {
    min-height: 317px;
}

.experience > div {
    position: relative;

    z-index: 2;

    padding: 30px;
}

.experience small {
    color: var(--gold2);

    font-size: 9px;

    letter-spacing: 0.14em;
}

.experience h3 {
    font:
        800 36px / 1.02
        Manrope;

    margin: 7px 0;
}

.experience span {
    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.1em;
}


/* =========================================================
   10. ABOUT
========================================================= */

.about-preview {
    padding: 130px 0;

    background: #ffffff;
}

.about-grid {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 90px;

    align-items: center;
}

.about-photo {
    min-height: 600px;

    background:
        url("../images/about/about.jpg")
        center / cover no-repeat;

    box-shadow:
        0 20px 50px rgba(20,30,23,0.16);
}

.about-grid h2 {
    font:
        800 clamp(42px, 5.3vw, 70px) / 1
        Manrope;

    letter-spacing: -0.055em;

    margin-top: 8px;
}

.about-grid h2 em {
    color: var(--gold);

    font-style: normal;
}

.about-grid > div > p {
    max-width: 500px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.9;

    margin-top: 19px;
}

.about-stats {
    display: grid;

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

    margin-top: 32px;

    border-top: 1px solid #d1cec5;

    border-bottom: 1px solid #d1cec5;
}

.about-stats div {
    padding: 17px 10px 17px 0;

    border-right: 1px solid #d1cec5;
}

.about-stats div:last-child {
    border: 0;
}

.about-stats b,
.about-stats span {
    display: block;
}

.about-stats b {
    font:
        800 27px
        Manrope;
}

.about-stats span {
    font-size: 8px;

    color: #777f78;

    margin-top: 4px;
}


/* =========================================================
   11. GALLERY
========================================================= */

.gallery {
    padding: 125px 0;

    background: #ffffff;
}

.gallery-grid {
    display: grid;

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

    gap: 12px;

    margin-top: 60px;
}

.gallery-item {
    height: 300px;

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

    overflow: hidden;

    transition: transform 0.35s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-one {
    background-image:
        url("../images/gallery/gallery-1.jpg");
}

.gallery-two {
    background-image:
        url("../images/gallery/gallery-2.jpg");
}

.gallery-three {
    background-image:
        url("../images/gallery/gallery-3.jpg");
}

.gallery-four {
    background-image:
        url("../images/gallery/gallery-4.jpg");
}


/* =========================================================
   12. CONTACT
========================================================= */

.contact {
    min-height: 650px;

    position: relative;

    display: flex;

    align-items: center;

    color: var(--white);

    overflow: hidden;
}

.contact-bg {
    position: absolute;

    inset: 0;

    background:
        url("../images/contact/contact.jpg")
        center / cover no-repeat;
}

.contact-shade {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            #030704e8,
            #0307047a
        );
}

.contact-copy {
    position: relative;

    z-index: 2;
}

.contact-copy > small {
    color: var(--gold2);
}

.contact-copy h2 {
    font:
        800 clamp(52px, 7vw, 92px) / 0.94
        Manrope;

    letter-spacing: -0.065em;

    margin-top: 12px;

    max-width: 800px;
}

.contact-copy h2 em {
    color: var(--gold2);

    font-style: normal;
}

.contact-copy > p {
    max-width: 560px;

    color: #d0d6d1;

    font-size: 14px;

    line-height: 1.8;

    margin: 22px 0 30px;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-details {
    display: flex;

    gap: 15px;

    flex-wrap: wrap;

    margin-bottom: 28px;
}

.contact-detail {
    min-width: 230px;

    padding: 15px 18px;

    border: 1px solid #ffffff35;

    background: #0003;

    transition: 0.3s ease;
}

.contact-detail:hover {
    background: #ffffff12;

    border-color: #ffffff70;
}

.contact-detail span {
    display: block;

    color: var(--gold2);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.16em;

    margin-bottom: 6px;
}

.contact-detail strong {
    font-size: 13px;

    font-weight: 600;
}


/* =========================================================
   CONTACT BUTTONS
========================================================= */

.contact-actions {
    display: flex;

    gap: 8px;

    flex-wrap: wrap;
}

.gold,
.outline {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 50px;

    padding: 0 22px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.1em;

    transition: 0.25s ease;
}

.gold {
    background: var(--gold);

    color: #11160f;
}

.gold:hover {
    background: var(--gold2);

    transform: translateY(-2px);
}

.outline {
    border: 1px solid #fff8;

    color: var(--white);
}

.outline:hover {
    background: #fff;

    color: #111;
}


/* =========================================================
   13. FOOTER
========================================================= */

footer {
    padding: 60px 0 20px;

    background: #ffffff;

    color: #17201a;

    border-top: 1px solid #eeeeee;
}

.footer-grid {
    display: grid;

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

    gap: 45px;

    padding-bottom: 50px;
}

.footer-grid p {
    max-width: 300px;

    color: #737c75;

    font-size: 11px;

    line-height: 1.8;

    margin-top: 17px;
}

.footer-grid h4 {
    font-size: 9px;

    letter-spacing: 0.15em;

    margin-bottom: 8px;

    color: #17201a;
}

.footer-grid > div > a:not(.brand),
.footer-grid span {
    display: block;

    color: #5f675f;

    font-size: 11px;

    margin-top: 9px;
}

.footer-grid a:hover {
    color: #111111;
}

.foot-bottom {
    border-top: 1px solid #dddddd;

    padding-top: 17px;

    display: flex;

    justify-content: space-between;

    color: #606a62;

    font-size: 9px;
}


/* =========================================================
   14. FLOATING WHATSAPP
========================================================= */

.wa {
    position: fixed;

    right: 20px;

    bottom: 20px;

    z-index: 200;

    width: 54px;

    height: 54px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: #25d366;

    color: #ffffff;

    font:
        800 9px
        Manrope;

    box-shadow:
        0 12px 30px #0004;

    transition: 0.25s ease;
}

.wa:hover {
    transform: scale(1.08);
}


/* =========================================================
   15. TABLET
========================================================= */

@media (max-width: 1000px) {

    .brand img {
        width: 150px;
    }

    .nav > nav {
        display: none;
    }

    .nav > nav.open {
        position: absolute;

        top: 68px;

        left: 20px;
        right: 20px;

        display: flex;

        flex-direction: column;

        gap: 0;

        padding: 15px;

        background: #ffffff;

        border:
            1px solid #dddddd;

        box-shadow:
            0 20px 50px rgba(0,0,0,0.15);

        color: #17201a;
    }

    .nav > nav.open a {
        padding: 11px;

        color: #17201a;

        text-align: center;

        width: 100%;
    }

    .nav > nav.open a:hover {
        background: #f5f5f5;

        opacity: 1;
    }

    .nav-btn {
        display: none;
    }

    .menu {
        display: block;

        margin-left: auto;
    }

    .trek,
    .trek.reverse {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .trek.reverse .trek-img,
    .trek.reverse .trek-copy {
        order: initial;
    }

    .experience-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .experience-side {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================================
   16. PHONE
========================================================= */

@media (max-width: 650px) {

    .wrap {
        width: calc(100% - 30px);
    }

    .header {
        padding: 12px 0;
    }

    .brand img {
        width: 125px;
    }


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

    .hero {
        min-height: 760px;
    }

    .hero-center {
        padding-top: 50px;

        width: 100%;

        text-align: center;
    }

    .hero-center > p {
        text-align: center;

        line-height: 1.6;
    }

    .hero h1 {
        font-size: 53px;

        text-align: center;
    }


    /* =====================================================
       SEARCH
    ===================================================== */

    .search {
        height: 58px;
    }

    .search button {
        padding: 0 13px;
    }

    .chips {
        justify-content: center;

        text-align: center;
    }


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

    .stat-grid {
        grid-template-columns: 1fr 1fr;

        text-align: center;
    }

    .stat-grid > div {
        padding: 10px;

        border-right: 0;
    }


    /* =====================================================
       ALL LIGHT SECTIONS — CENTERED
    ===================================================== */

    .intro,
    .treks,
    .experiences,
    .about-preview,
    .gallery {
        padding: 80px 0;

        text-align: center;

        background: #ffffff;
    }


    /* =====================================================
       INTRO
    ===================================================== */

    .intro-grid {
        grid-template-columns: 1fr;

        gap: 30px;

        justify-items: center;
    }

    .num {
        text-align: center;

        width: 100%;
    }

    .intro h2 {
        text-align: center;

        font-size: 44px;

        line-height: 1.02;
    }

    .intro p {
        margin-left: auto;

        margin-right: auto;

        text-align: center;
    }

    .intro .link {
        text-align: center;
    }


    /* =====================================================
       SECTION HEADINGS
    ===================================================== */

    .heading {
        display: block;

        margin-bottom: 45px;

        text-align: center;
    }

    .heading small {
        display: block;

        text-align: center;
    }

    .heading h2 {
        text-align: center;

        font-size: 44px;

        line-height: 1.02;

        margin-top: 8px;
    }

    .heading > p {
        margin-top: 18px;

        margin-left: auto;

        margin-right: auto;

        text-align: center;
    }


    /* =====================================================
       TREKS
    ===================================================== */

    .trek {
        margin-bottom: 75px;

        text-align: center;

        justify-items: center;
    }

    .trek:last-child {
        margin-bottom: 0;
    }

    .trek-copy {
        width: 100%;

        text-align: center;
    }

    .trek-copy > small {
        display: block;

        text-align: center;
    }

    .trek-copy h3 {
        font-size: 48px;

        line-height: 1;

        text-align: center;
    }

    .trek-copy > p {
        max-width: 560px;

        margin-left: auto;

        margin-right: auto;

        text-align: center;
    }

    .details {
        width: 100%;

        text-align: center;

        line-height: 1.8;
    }

    .trek-img {
        width: 100%;

        height: 350px;
    }


    /* =====================================================
       BREAK
    ===================================================== */

    .break {
        height: 500px;

        text-align: center;
    }

    .break-text {
        width: 100%;

        text-align: center;
    }

    .break-text small {
        display: block;

        text-align: center;
    }

    .break-text h2 {
        font-size: 52px;

        text-align: center;
    }


    /* =====================================================
       EXPERIENCES
    ===================================================== */

    .experience-grid {
        text-align: center;
    }

    .experience-side {
        grid-template-columns: 1fr;
    }

    .experience {
        min-height: 470px;

        text-align: center;
    }

    .experience.hike,
    .experience.custom {
        min-height: 300px;
    }

    .experience > div {
        width: 100%;

        padding: 30px;

        text-align: center;
    }


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

    .about-grid {
        text-align: center;

        justify-items: center;
    }

    .about-photo {
        width: 100%;

        min-height: 400px;
    }

    .about-grid > div {
        width: 100%;

        text-align: center;
    }

    .about-grid h2 {
        font-size: 44px;

        text-align: center;
    }

    .about-grid > div > p {
        margin-left: auto;

        margin-right: auto;

        text-align: center;
    }

    .about-stats {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .about-stats div {
        border-right: 0;

        border-bottom:
            1px solid #d1cec5;

        padding:
            17px 10px;
    }

    .about-stats div:last-child {
        border-bottom: 0;
    }


    /* =====================================================
       GALLERY
    ===================================================== */

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item {
        height: 220px;
    }


    /* =====================================================
       CONTACT
    ===================================================== */

    .contact {
        min-height: 700px;

        text-align: center;
    }

    .contact-copy {
        width: 100%;

        text-align: center;
    }

    .contact-copy > small {
        display: block;

        text-align: center;
    }

    .contact-copy h2 {
        font-size: 48px;

        text-align: center;

        margin-left: auto;

        margin-right: auto;
    }

    .contact-copy > p {
        font-size: 13px;

        margin-left: auto;

        margin-right: auto;

        text-align: center;
    }

    .contact-details {
        flex-direction: column;

        align-items: center;
    }

    .contact-detail {
        width: 100%;

        text-align: center;
    }

    .contact-actions {
        flex-direction: column;

        align-items: center;

        justify-content: center;
    }

    .gold,
    .outline {
        width: 220px;
    }


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

    footer {
        background: #ffffff;

        color: #17201a;

        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .footer-grid > div {
        text-align: center;
    }

    .footer-grid p {
        margin-left: auto;

        margin-right: auto;
    }

    .footer-grid > div > a:not(.brand),
    .footer-grid span {
        color: #5f675f;
    }

    .foot-bottom {
        flex-direction: column;

        gap: 8px;

        text-align: center;

        align-items: center;
    }


    /* =====================================================
       WHATSAPP
    ===================================================== */

    .wa {
        right: 15px;

        bottom: 15px;

        width: 48px;

        height: 48px;
    }
}




/* =========================================================
   FINAL POLISH
========================================================= */

::selection {
    background: rgba(199,169,109,0.75);

    color: #11160f;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #eeeeee;
}

::-webkit-scrollbar-thumb {
    background: #9c8a61;

    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c7a96d;
}@media (max-width: 650px) {

    .header {
        padding: 8px 0;
    }

    .header .nav {
        width: calc(100% - 20px);
        margin: 0 auto;
    }

    .header .brand img {
        width: 125px;
    }

    .header nav,
    .header .nav-btn {
        display: none;
    }

    .header .menu {
        display: block;
    }
}/* MOBILE PHONE NUMBER */

.mobile-phone {
    display: none;
}

@media (max-width: 650px) {

    .mobile-phone {
        display: block;

        margin-left: auto;
        margin-right: 40px;

        color: #111111;
        text-decoration: none;

        font-size: 13px;
        font-weight: 600;

        white-space: nowrap;
    }

    .header .menu {
        margin-left: 0;
    }
}.day-hikes-section {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 520px;
    background: #111;
}

.day-hikes-photo {
    width: 100%;
    height: 100%;
    min-height: 520px;
    overflow: hidden;
}

.day-hikes-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.day-hikes-info {
    padding: 70px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.day-hikes-info small {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    opacity: .65;
}

.day-hikes-info h2 {
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1;
    font-weight: 500;
    margin: 0 0 28px;
}

.day-hikes-info h2 em {
    font-style: italic;
    font-weight: 400;
}

.day-hikes-info p {
    max-width: 520px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,.72);
    margin: 0 0 18px;
}

.day-hikes-label {
    margin-top: 15px;
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255,255,255,.55);
}

@media (max-width: 700px) {

    .day-hikes-section {
        grid-template-columns: 1fr;
    }

    .day-hikes-photo {
        min-height: 330px;
    }

    .day-hikes-info {
        padding: 45px 25px;
    }

    .day-hikes-info h2 {
        font-size: 42px;
    }
}/* =========================================================
   HOMEPAGE TREK IMAGES
========================================================= */

.trek-img.dodital {
    background-image:
        url("../images/treks/dodital/dodital-home.jpg") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.trek-img.dayara {
    background-image:
        url("../images/treks/dayara-bugyal/dayara-bugyal-home.jpg") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.trek-img.kedar {
    background-image:
        url("../images/treks/kedarkantha/kedarkantha-home.jpg") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.trek-img.gomukh {
    background-image:
        url("../images/treks/gomukh-tapovan/gomukh-tapovan-home.jpg") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}


/* =========================================================
   END OF TNH STYLESHEET
========================================================= */