/* =========================================
   THE NORTHERN HIMALAYAS
   DODITAL TREK PAGE
========================================= */

.trek-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 20px 0;
    color: #fff;
}

.trek-header.scrolled {
    position: fixed;
    background: rgba(8, 11, 9, 0.94);
    backdrop-filter: blur(14px);
    padding: 12px 0;
    border-bottom: 1px solid #ffffff18;
}


/* =========================================
   HERO
========================================= */

.trek-hero {
    height: 760px;
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.trek-hero-image {
    position: absolute;
    inset: 0;

    background:
        url("https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=2200&q=90")
        center / cover no-repeat;
}

.trek-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(2,5,3,.78),
            rgba(2,5,3,.12) 75%
        ),
        linear-gradient(
            0deg,
            rgba(2,5,3,.75),
            transparent 65%
        );
}

.trek-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 70px;
}

.trek-hero-content > small {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .2em;
}

.trek-hero-content h1 {
    font-family: Manrope, sans-serif;
    font-size: clamp(70px, 10vw, 135px);
    line-height: .9;
    letter-spacing: -.07em;
    margin: 15px 0;
}

.trek-hero-content > p {
    max-width: 520px;
    color: #d9dfda;
    font-size: 14px;
    line-height: 1.8;
}

.trek-actions {
    display: flex;
    gap: 9px;
    margin-top: 28px;
}

.gold-btn,
.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 49px;

    padding: 0 20px;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .1em;
}

.gold-btn {
    background: #c7a96d;
    color: #11160f;
}

.outline-btn {
    border: 1px solid #ffffffaa;
    color: #fff;
}


/* =========================================
   HERO FACTS
========================================= */

.trek-facts {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 5;

    background: rgba(3,7,4,.6);

    border-top: 1px solid #ffffff22;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.fact {
    padding: 18px 20px;
    border-right: 1px solid #ffffff18;
}

.fact:first-child {
    padding-left: 0;
}

.fact:last-child {
    border-right: 0;
}

.fact strong {
    display: block;

    font-family: Manrope, sans-serif;
    font-size: 14px;
}

.fact span {
    display: block;

    margin-top: 4px;

    color: #c5ccc6;

    font-size: 8px;

    letter-spacing: .1em;
}


/* =========================================
   GENERAL SECTIONS
========================================= */

.trek-intro,
.itinerary-section,
.why-section,
.prepare-section {
    padding: 120px 0;

    background: var(--cream);
}

.trek-two-column {
    display: grid;

    grid-template-columns: 1fr 1.35fr;

    gap: 100px;
}

.section-label {
    font-size: 9px;
    font-weight: 800;

    letter-spacing: .18em;

    color: #858d86;
}

.trek-two-column h2,
.section-heading h2 {
    font-family: Manrope, sans-serif;

    font-size: clamp(45px,5.6vw,75px);

    line-height: .96;

    letter-spacing: -.06em;

    margin-top: 12px;
}

.trek-two-column h2 em,
.section-heading h2 em {
    color: var(--gold);

    font-style: normal;
}

.trek-text {
    max-width: 620px;
}

.trek-text p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.95;

    margin-bottom: 18px;
}

.text-link {
    display: inline-block;

    margin-top: 8px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .1em;
}


/* =========================================
   IMAGE BREAK
========================================= */

.trek-image-break {
    height: 600px;

    position: relative;

    display: flex;

    align-items: center;

    color: #fff;

    overflow: hidden;
}

.trek-image-break-bg {
    position: absolute;

    inset: 0;

    background:
        url("https://images.unsplash.com/photo-1464278533981-50106e6176b1?auto=format&fit=crop&w=2200&q=90")
        center / cover no-repeat;
}

.trek-image-break-overlay {
    position: absolute;

    inset: 0;

    background: rgba(2,5,3,.38);
}

.trek-image-break-content {
    position: relative;

    z-index: 2;
}

.trek-image-break-content small {
    color: #e1c98f;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .2em;
}

.trek-image-break-content h2 {
    font-family: Manrope, sans-serif;

    font-size: clamp(55px,7vw,95px);

    line-height: .95;

    letter-spacing: -.06em;

    margin-top: 12px;
}

.trek-image-break-content p {
    max-width: 430px;

    color: #d7ddd8;

    font-size: 13px;

    line-height: 1.8;

    margin-top: 14px;
}


/* =========================================
   ITINERARY
========================================= */

.itinerary-section {
    background: var(--cream2);
}

.section-heading {
    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 50px;

    margin-bottom: 60px;
}

.section-heading > p {
    max-width: 390px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.8;
}

.itinerary-list {
    border-top: 1px solid #d2d0c8;
}

.itinerary-day {
    display: grid;

    grid-template-columns: 80px 1fr;

    gap: 30px;

    padding: 38px 0;

    border-bottom: 1px solid #d2d0c8;
}

.day-number {
    font-family: Manrope, sans-serif;

    font-size: 24px;

    font-weight: 800;

    color: var(--gold);
}

.day-content small {
    font-size: 8px;

    font-weight: 800;

    letter-spacing: .15em;

    color: #817d6d;
}

.day-content h3 {
    font-family: Manrope, sans-serif;

    font-size: 32px;

    letter-spacing: -.04em;

    margin-top: 8px;
}

.day-content p {
    max-width: 750px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.85;

    margin-top: 12px;
}

.day-content span {
    display: block;

    margin-top: 14px;

    color: #747b74;

    font-size: 9px;

    letter-spacing: .05em;
}

.optional-day {
    background: #e4e2d9;

    margin: 0 -24px;

    padding-left: 24px;

    padding-right: 24px;
}


/* =========================================
   ROUTE
========================================= */

.route-section {
    padding: 105px 0;

    background: #101712;

    color: #fff;
}

.route-grid {
    display: grid;

    grid-template-columns: 1fr 1.3fr;

    gap: 100px;

    align-items: center;
}

.route-grid > div > small {
    color: #e1c98f;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .18em;
}

.route-grid h2 {
    font-family: Manrope, sans-serif;

    font-size: clamp(42px,5vw,68px);

    line-height: .98;

    letter-spacing: -.06em;

    margin-top: 12px;
}

.route-information {
    border-top: 1px solid #ffffff22;
}

.route-information > div {
    display: grid;

    grid-template-columns: 130px 1fr;

    gap: 20px;

    padding: 20px 0;

    border-bottom: 1px solid #ffffff22;
}

.route-information strong {
    font-family: Manrope, sans-serif;

    font-size: 18px;

    color: #e1c98f;
}

.route-information span {
    color: #aeb7b0;

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================
   WHY DODITAL
========================================= */

.why-section {
    background: var(--cream);
}

.why-grid {
    display: grid;

    grid-template-columns: repeat(4,1fr);

    border-top: 1px solid #d2d0c8;

    border-bottom: 1px solid #d2d0c8;
}

.why-grid article {
    padding: 30px 20px 30px 0;

    border-right: 1px solid #d2d0c8;
}

.why-grid article:not(:first-child) {
    padding-left: 20px;
}

.why-grid article:last-child {
    border-right: 0;
}

.why-grid b {
    color: var(--gold);

    font-family: Manrope, sans-serif;

    font-size: 16px;
}

.why-grid h3 {
    font-family: Manrope, sans-serif;

    font-size: 22px;

    margin-top: 20px;
}

.why-grid p {
    color: var(--muted);

    font-size: 11px;

    line-height: 1.8;

    margin-top: 10px;
}


/* =========================================
   PREPARATION
========================================= */

.prepare-section {
    background: var(--cream2);
}

.checklist {
    border-top: 1px solid #d2d0c8;
}

.checklist > div {
    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 20px;

    padding: 19px 0;

    border-bottom: 1px solid #d2d0c8;
}

.checklist b {
    color: var(--gold);

    font-family: Manrope, sans-serif;

    font-size: 12px;
}

.checklist span {
    color: #626b64;

    font-size: 12px;
}


/* =========================================
   ENQUIRY
========================================= */

.trek-enquire {
    height: 620px;

    position: relative;

    display: flex;

    align-items: center;

    color: #fff;

    overflow: hidden;
}

.trek-enquire-bg {
    position: absolute;

    inset: 0;

    background:
        url("https://images.unsplash.com/photo-1526392060635-9d6019884377?auto=format&fit=crop&w=2200&q=90")
        center / cover no-repeat;
}

.trek-enquire-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,7,4,.85),
            rgba(3,7,4,.25)
        );
}

.trek-enquire-content {
    position: relative;

    z-index: 2;
}

.trek-enquire-content > small {
    color: #e1c98f;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .2em;
}

.trek-enquire-content h2 {
    font-family: Manrope, sans-serif;

    font-size: clamp(55px,7vw,90px);

    line-height: .94;

    letter-spacing: -.065em;

    margin: 13px 0;
}

.trek-enquire-content h2 em {
    color: #e1c98f;

    font-style: normal;
}

.trek-enquire-content p {
    max-width: 500px;

    color: #d2d8d3;

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 26px;
}


/* =========================================
   FOOTER
========================================= */

.footer-trek {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 28px 0;
}

.footer-trek > a:last-child {
    color: #929a93;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .1em;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .nav nav {
        display: none;
    }

    .nav nav.open {
        position: absolute;

        top: 68px;

        left: 15px;
        right: 15px;

        display: flex;

        flex-direction: column;

        gap: 0;

        padding: 15px;

        background: #080b09f5;
    }

    .nav nav.open a {
        padding: 11px;
    }

    .menu {
        display: block;
    }

    .facts-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fact {
        padding: 12px;
        border: 0;
    }

    .fact:first-child {
        padding-left: 12px;
    }

    .trek-two-column,
    .route-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 18px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid article:nth-child(2) {
        border-right: 0;
    }

}


@media (max-width: 600px) {

    .trek-hero {
        height: 700px;
    }

    .trek-hero-content h1 {
        font-size: 65px;
    }

    .trek-intro,
    .itinerary-section,
    .why-section,
    .prepare-section {
        padding: 80px 0;
    }

    .trek-image-break,
    .trek-enquire {
        height: 500px;
    }

    .itinerary-day {
        grid-template-columns: 45px 1fr;

        gap: 15px;
    }

    .day-content h3 {
        font-size: 25px;
    }

    .optional-day {
        margin: 0 -15px;

        padding-left: 15px;
        padding-right: 15px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-grid article,
    .why-grid article:not(:first-child) {
        border-right: 0;

        border-bottom: 1px solid #d2d0c8;

        padding: 22px 0;
    }

    .why-grid article:last-child {
        border-bottom: 0;
    }

    .footer-trek {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }

}


/* =========================================================
   TNH — TREK IMAGE SYSTEM
   Keep ALL trek images inside:
   images/treks/<trek-name>/
   ========================================================= */

/* -------------------------
   DODITAL
------------------------- */

.trek-hero-image.dodital-hero {
    background-image:
        url("../images/treks/dodital/dodital-hero.jpg");
}

.dodital-lake {
    background-image:
        url("../images/treks/dodital/dodital-lake.jpg");
}

.dodital-enquire {
    background-image:
        url("../images/treks/dodital/dodital-enquiry.jpg");
}


/* -------------------------
   DAYARA
   Folder name: dayara
------------------------- */

.trek-hero-image.dayara-hero {
    background-image:
        url("../images/treks/dayara/dayara-hero.jpg");
}

.dayara-break {
    background-image:
        url("../images/treks/dayara/dayara-meadow.jpg");
}

.dayara-enquire {
    background-image:
        url("../images/treks/dayara/dayara-mountains.jpg");
}


/* -------------------------
   KEDARKANTHA
------------------------- */

.trek-hero-image.kedarkantha-hero {
    background-image:
        url("../images/treks/kedarkantha/kedarkantha-hero.jpg");
}

.kedarkantha-break {
    background-image:
        url("../images/treks/kedarkantha/kedarkantha-break.jpg");
}

.kedarkantha-enquire {
    background-image:
        url("../images/treks/kedarkantha/kedarkantha-enquire.jpg");
}


/* -------------------------
   GOMUKH–TAPOVAN
------------------------- */

.trek-hero-image.gomukh-tapovan-hero {
    background-image:
        url("../images/treks/gomukh-tapovan/gomukh-tapovan-hero.jpg");
}

.gomukh-tapovan-break {
    background-image:
        url("../images/treks/gomukh-tapovan/gomukh-tapovan-break.jpg");
}

.gomukh-tapovan-enquire {
    background-image:
        url("../images/treks/gomukh-tapovan/gomukh-tapovan-enquire.jpg");
}


/* =========================================================
   TNH — NEW WHITE TREK PAGE THEME
   This overrides the old dark trek-page styling.
   Hero / image-break / enquiry remain photographic.
   ========================================================= */

body {
    background: #ffffff !important;
    color: #17201a !important;
}

.trek-intro,
.itinerary-section,
.route-section,
.why-section,
.prepare-section {
    background: #ffffff !important;
    color: #17201a !important;
}


/* Headings */

.trek-two-column h2,
.section-heading h2,
.route-grid h2,
.why-section h2,
.prepare-section h2 {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: #17201a !important;
    color: #17201a !important;
    text-shadow: none !important;
    animation: none !important;
}

.trek-two-column h2 em,
.section-heading h2 em,
.why-section h2 em,
.prepare-section h2 em {
    color: #b58b3b !important;
    -webkit-text-fill-color: #b58b3b !important;
}


/* Normal text */

.section-heading > p,
.trek-text p,
.day-content p,
.route-information span,
.why-grid p,
.checklist span {
    color: #59635b !important;
}


/* Route section */

.route-section {
    background: #ffffff !important;
    color: #17201a !important;
}

.route-grid h2 {
    color: #17201a !important;
}

.route-grid > div > small {
    color: #a57d2f !important;
}

.route-information {
    border-top-color: #e1e5e1 !important;
}

.route-information > div {
    background: #ffffff !important;
    border-bottom-color: #e1e5e1 !important;
}

.route-information strong {
    color: #a57d2f !important;
}


/* Itinerary */

.itinerary-section {
    background: #ffffff !important;
}

.itinerary-list {
    border-top-color: #e1e5e1 !important;
}

.itinerary-day {
    background: #ffffff !important;
    border-bottom-color: #e1e5e1 !important;
    border: 1px solid #e1e5e1 !important;
    margin-bottom: 16px;
    padding: 32px 28px !important;
    box-shadow:
        0 10px 30px rgba(23, 32, 26, 0.05) !important;
}

.itinerary-day:hover {
    border-color: #d8bf7a !important;
    box-shadow:
        0 18px 45px rgba(23, 32, 26, 0.09) !important;
}

.day-number {
    color: #c9a95c !important;
}

.day-content h3 {
    color: #17201a !important;
}

.day-content small {
    color: #a57d2f !important;
}

.day-content p {
    color: #59635b !important;
}

.day-content span {
    color: #59635b !important;
}


/* Why section */

.why-section {
    background: #ffffff !important;
}

.why-grid {
    border-top-color: #e1e5e1 !important;
    border-bottom-color: #e1e5e1 !important;
}

.why-grid article {
    background: #ffffff !important;
    border-right-color: #e1e5e1 !important;
}

.why-grid b {
    color: #a57d2f !important;
}

.why-grid h3 {
    color: #17201a !important;
}

.why-grid p {
    color: #59635b !important;
}


/* Preparation */

.prepare-section {
    background: #f9faf8 !important;
}

.checklist {
    border-top-color: #e1e5e1 !important;
}

.checklist > div {
    background: #ffffff !important;
    border-bottom-color: #e1e5e1 !important;
}

.checklist b {
    color: #a57d2f !important;
}

.checklist span {
    color: #59635b !important;
}


/* Hero and photographic sections stay photographic */

.trek-hero,
.trek-image-break,
.trek-enquire {
    color: #ffffff !important;
}


/* =========================================================
   MOBILE — CLEAN / CENTERED
   ========================================================= */

@media (max-width: 800px) {

    .nav nav.open {
        background: #ffffff !important;
        border: 1px solid #e1e5e1 !important;
        box-shadow:
            0 12px 30px rgba(23, 32, 26, 0.10);
    }

    .nav nav.open a {
        color: #17201a !important;
    }

    .route-grid {
        text-align: center;
    }

    .route-information > div {
        text-align: center;
    }

    .route-information {
        width: 100%;
    }

    .section-heading {
        text-align: center;
    }

    .section-heading > p {
        margin-left: auto;
        margin-right: auto;
    }

    .trek-two-column {
        text-align: center;
    }

    .trek-text {
        margin-left: auto;
        margin-right: auto;
    }

    .checklist {
        text-align: center;
    }

    .checklist > div {
        grid-template-columns: 1fr !important;
        gap: 8px;
    }

    .why-grid {
        text-align: center;
    }

    .why-grid article,
    .why-grid article:not(:first-child) {
        border-right: 0 !important;
    }

}


@media (max-width: 600px) {

    .trek-hero-content {
        text-align: center;
    }

    .trek-hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .trek-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .trek-intro,
    .itinerary-section,
    .route-section,
    .why-section,
    .prepare-section {
        text-align: center;
    }

    .trek-two-column h2,
    .section-heading h2,
    .route-grid h2,
    .prepare-section h2 {
        font-size: 2.35rem !important;
        line-height: 1.08 !important;
    }

    .itinerary-day {
        grid-template-columns: 1fr !important;
        text-align: center;
        padding: 28px 20px !important;
    }

    .day-number {
        text-align: center;
        justify-content: center;
    }

    .day-content {
        text-align: center;
        align-items: center;
    }

    .day-content h3 {
        font-size: 1.65rem !important;
    }

    .day-content p {
        font-size: 0.96rem !important;
        margin-left: auto;
        margin-right: auto;
    }

    .day-content span {
        text-align: center;
    }

    .route-grid h2 {
        font-size: 2.2rem !important;
    }

    .route-information > div {
        grid-template-columns: 1fr !important;
        gap: 8px;
        text-align: center;
    }

    .why-grid {
        grid-template-columns: 1fr !important;
    }

    .why-grid article,
    .why-grid article:not(:first-child) {
        padding: 25px 0 !important;
        border-bottom: 1px solid #e1e5e1 !important;
    }

    .why-grid article:last-child {
        border-bottom: 0 !important;
    }

    .trek-image-break-content,
    .trek-enquire-content {
        text-align: center;
    }

    .trek-enquire-content p {
        margin-left: auto;
        margin-right: auto;
    }

}

/* =========================================
   THE NORTHERN HIMALAYAS
   DODITAL TREK PAGE
========================================= */

.trek-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 20px 0;
    color: #fff;
}

.trek-header.scrolled {
    position: fixed;
    background: rgba(8, 11, 9, 0.94);
    backdrop-filter: blur(14px);
    padding: 12px 0;
    border-bottom: 1px solid #ffffff18;
}


/* =========================================
   HERO
========================================= */

.trek-hero {
    height: 760px;
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.trek-hero-image {
    position: absolute;
    inset: 0;

    background:
        url("https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=2200&q=90")
        center / cover no-repeat;
}

.trek-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(2,5,3,.78),
            rgba(2,5,3,.12) 75%
        ),
        linear-gradient(
            0deg,
            rgba(2,5,3,.75),
            transparent 65%
        );
}

.trek-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 70px;
}

.trek-hero-content > small {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .2em;
}

.trek-hero-content h1 {
    font-family: Manrope, sans-serif;
    font-size: clamp(70px, 10vw, 135px);
    line-height: .9;
    letter-spacing: -.07em;
    margin: 15px 0;
}

.trek-hero-content > p {
    max-width: 520px;
    color: #d9dfda;
    font-size: 14px;
    line-height: 1.8;
}

.trek-actions {
    display: flex;
    gap: 9px;
    margin-top: 28px;
}

.gold-btn,
.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 49px;

    padding: 0 20px;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: .1em;
}

.gold-btn {
    background: #c7a96d;
    color: #11160f;
}

.outline-btn {
    border: 1px solid #ffffffaa;
    color: #fff;
}


/* =========================================
   HERO FACTS
========================================= */

.trek-facts {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 5;

    background: rgba(3,7,4,.6);

    border-top: 1px solid #ffffff22;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.fact {
    padding: 18px 20px;
    border-right: 1px solid #ffffff18;
}

.fact:first-child {
    padding-left: 0;
}

.fact:last-child {
    border-right: 0;
}

.fact strong {
    display: block;

    font-family: Manrope, sans-serif;
    font-size: 14px;
}

.fact span {
    display: block;

    margin-top: 4px;

    color: #c5ccc6;

    font-size: 8px;

    letter-spacing: .1em;
}


/* =========================================
   GENERAL SECTIONS
========================================= */

.trek-intro,
.itinerary-section,
.why-section,
.prepare-section {
    padding: 120px 0;

    background: var(--cream);
}

.trek-two-column {
    display: grid;

    grid-template-columns: 1fr 1.35fr;

    gap: 100px;
}

.section-label {
    font-size: 9px;
    font-weight: 800;

    letter-spacing: .18em;

    color: #858d86;
}

.trek-two-column h2,
.section-heading h2 {
    font-family: Manrope, sans-serif;

    font-size: clamp(45px,5.6vw,75px);

    line-height: .96;

    letter-spacing: -.06em;

    margin-top: 12px;
}

.trek-two-column h2 em,
.section-heading h2 em {
    color: var(--gold);

    font-style: normal;
}

.trek-text {
    max-width: 620px;
}

.trek-text p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.95;

    margin-bottom: 18px;
}

.text-link {
    display: inline-block;

    margin-top: 8px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .1em;
}


/* =========================================
   IMAGE BREAK
========================================= */

.trek-image-break {
    height: 600px;

    position: relative;

    display: flex;

    align-items: center;

    color: #fff;

    overflow: hidden;
}

.trek-image-break-bg {
    position: absolute;

    inset: 0;

    background:
        url("https://images.unsplash.com/photo-1464278533981-50106e6176b1?auto=format&fit=crop&w=2200&q=90")
        center / cover no-repeat;
}

.trek-image-break-overlay {
    position: absolute;

    inset: 0;

    background: rgba(2,5,3,.38);
}

.trek-image-break-content {
    position: relative;

    z-index: 2;
}

.trek-image-break-content small {
    color: #e1c98f;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .2em;
}

.trek-image-break-content h2 {
    font-family: Manrope, sans-serif;

    font-size: clamp(55px,7vw,95px);

    line-height: .95;

    letter-spacing: -.06em;

    margin-top: 12px;
}

.trek-image-break-content p {
    max-width: 430px;

    color: #d7ddd8;

    font-size: 13px;

    line-height: 1.8;

    margin-top: 14px;
}


/* =========================================
   ITINERARY
========================================= */

.itinerary-section {
    background: var(--cream2);
}

.section-heading {
    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 50px;

    margin-bottom: 60px;
}

.section-heading > p {
    max-width: 390px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.8;
}

.itinerary-list {
    border-top: 1px solid #d2d0c8;
}

.itinerary-day {
    display: grid;

    grid-template-columns: 80px 1fr;

    gap: 30px;

    padding: 38px 0;

    border-bottom: 1px solid #d2d0c8;
}

.day-number {
    font-family: Manrope, sans-serif;

    font-size: 24px;

    font-weight: 800;

    color: var(--gold);
}

.day-content small {
    font-size: 8px;

    font-weight: 800;

    letter-spacing: .15em;

    color: #817d6d;
}

.day-content h3 {
    font-family: Manrope, sans-serif;

    font-size: 32px;

    letter-spacing: -.04em;

    margin-top: 8px;
}

.day-content p {
    max-width: 750px;

    color: var(--muted);

    font-size: 13px;

    line-height: 1.85;

    margin-top: 12px;
}

.day-content span {
    display: block;

    margin-top: 14px;

    color: #747b74;

    font-size: 9px;

    letter-spacing: .05em;
}

.optional-day {
    background: #e4e2d9;

    margin: 0 -24px;

    padding-left: 24px;

    padding-right: 24px;
}


/* =========================================
   ROUTE
========================================= */

.route-section {
    padding: 105px 0;

    background: #101712;

    color: #fff;
}

.route-grid {
    display: grid;

    grid-template-columns: 1fr 1.3fr;

    gap: 100px;

    align-items: center;
}

.route-grid > div > small {
    color: #e1c98f;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .18em;
}

.route-grid h2 {
    font-family: Manrope, sans-serif;

    font-size: clamp(42px,5vw,68px);

    line-height: .98;

    letter-spacing: -.06em;

    margin-top: 12px;
}

.route-information {
    border-top: 1px solid #ffffff22;
}

.route-information > div {
    display: grid;

    grid-template-columns: 130px 1fr;

    gap: 20px;

    padding: 20px 0;

    border-bottom: 1px solid #ffffff22;
}

.route-information strong {
    font-family: Manrope, sans-serif;

    font-size: 18px;

    color: #e1c98f;
}

.route-information span {
    color: #aeb7b0;

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================
   WHY DODITAL
========================================= */

.why-section {
    background: var(--cream);
}

.why-grid {
    display: grid;

    grid-template-columns: repeat(4,1fr);

    border-top: 1px solid #d2d0c8;

    border-bottom: 1px solid #d2d0c8;
}

.why-grid article {
    padding: 30px 20px 30px 0;

    border-right: 1px solid #d2d0c8;
}

.why-grid article:not(:first-child) {
    padding-left: 20px;
}

.why-grid article:last-child {
    border-right: 0;
}

.why-grid b {
    color: var(--gold);

    font-family: Manrope, sans-serif;

    font-size: 16px;
}

.why-grid h3 {
    font-family: Manrope, sans-serif;

    font-size: 22px;

    margin-top: 20px;
}

.why-grid p {
    color: var(--muted);

    font-size: 11px;

    line-height: 1.8;

    margin-top: 10px;
}


/* =========================================
   PREPARATION
========================================= */

.prepare-section {
    background: var(--cream2);
}

.checklist {
    border-top: 1px solid #d2d0c8;
}

.checklist > div {
    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 20px;

    padding: 19px 0;

    border-bottom: 1px solid #d2d0c8;
}

.checklist b {
    color: var(--gold);

    font-family: Manrope, sans-serif;

    font-size: 12px;
}

.checklist span {
    color: #626b64;

    font-size: 12px;
}


/* =========================================
   ENQUIRY
========================================= */

.trek-enquire {
    height: 620px;

    position: relative;

    display: flex;

    align-items: center;

    color: #fff;

    overflow: hidden;
}

.trek-enquire-bg {
    position: absolute;

    inset: 0;

    background:
        url("https://images.unsplash.com/photo-1526392060635-9d6019884377?auto=format&fit=crop&w=2200&q=90")
        center / cover no-repeat;
}

.trek-enquire-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,7,4,.85),
            rgba(3,7,4,.25)
        );
}

.trek-enquire-content {
    position: relative;

    z-index: 2;
}

.trek-enquire-content > small {
    color: #e1c98f;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .2em;
}

.trek-enquire-content h2 {
    font-family: Manrope, sans-serif;

    font-size: clamp(55px,7vw,90px);

    line-height: .94;

    letter-spacing: -.065em;

    margin: 13px 0;
}

.trek-enquire-content h2 em {
    color: #e1c98f;

    font-style: normal;
}

.trek-enquire-content p {
    max-width: 500px;

    color: #d2d8d3;

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 26px;
}


/* =========================================
   FOOTER
========================================= */

.footer-trek {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 28px 0;
}

.footer-trek > a:last-child {
    color: #929a93;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .1em;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .nav nav {
        display: none;
    }

    .nav nav.open {
        position: absolute;

        top: 68px;

        left: 15px;
        right: 15px;

        display: flex;

        flex-direction: column;

        gap: 0;

        padding: 15px;

        background: #080b09f5;
    }

    .nav nav.open a {
        padding: 11px;
    }

    .menu {
        display: block;
    }

    .facts-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fact {
        padding: 12px;
        border: 0;
    }

    .fact:first-child {
        padding-left: 12px;
    }

    .trek-two-column,
    .route-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 18px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-grid article:nth-child(2) {
        border-right: 0;
    }

}


@media (max-width: 600px) {

    .trek-hero {
        height: 700px;
    }

    .trek-hero-content h1 {
        font-size: 65px;
    }

    .trek-intro,
    .itinerary-section,
    .why-section,
    .prepare-section {
        padding: 80px 0;
    }

    .trek-image-break,
    .trek-enquire {
        height: 500px;
    }

    .itinerary-day {
        grid-template-columns: 45px 1fr;

        gap: 15px;
    }

    .day-content h3 {
        font-size: 25px;
    }

    .optional-day {
        margin: 0 -15px;

        padding-left: 15px;
        padding-right: 15px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-grid article,
    .why-grid article:not(:first-child) {
        border-right: 0;

        border-bottom: 1px solid #d2d0c8;

        padding: 22px 0;
    }

    .why-grid article:last-child {
        border-bottom: 0;
    }

    .footer-trek {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }

}.trek-hero-image {
    background:
        url("../images/treks/dodital/dodital-hero.jpg")
        center / cover no-repeat;
}.dayara-hero {
    background-image:
        url("../images/treks/dayara/dayara-hero.jpg");
}

.dayara-break {
    background-image:
        url("../images/treks/dayara/dayara-meadow.jpg");
}

.dayara-enquire {
    background-image:
        url("../images/treks/dayara/dayara-mountains.jpg");
}/* =========================================================
   TNH TREK PAGE IMAGE SYSTEM
   THE NORTHERN HIMALAYAS
========================================================= */

/* =========================
   DODITAL
========================= */

.trek-hero-image.dodital-hero {
    background-image: url("../images/treks/dodital/dodital-hero.jpg") !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.trek-image-break-bg.dodital-lake {
    background-image: url("../images/treks/dodital/dodital-lake.jpg") !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.trek-enquire-bg.dodital-enquire {
    background-image: url("../images/treks/dodital/dodital-enquiry.jpg") !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}


/* =========================
   DAYARA BUGYAL
========================= */

.trek-hero-image.dayara-hero {
    background-image: url("../images/treks/dayara/dayara-hero.jpg") !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.trek-image-break-bg.dayara-break {
    background-image: url("../images/treks/dayara/dayara-meadow.jpg") !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.trek-enquire-bg.dayara-enquire {
    background-image: url("../images/treks/dayara/dayara-mountains.jpg") !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}


/* =========================
   KEDARKANTHA
========================= */

.trek-hero-image.kedarkantha-hero {
    background-image: url("../images/treks/kedarkantha/kedarkantha-hero.jpg") !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.trek-image-break-bg.kedarkantha-break {
    background-image: url("../images/treks/kedarkantha/kedarkantha-break.jpg") !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.trek-enquire-bg.kedarkantha-enquire {
    background-image: url("../images/treks/kedarkantha/kedarkantha-enquire.jpg") !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}


/* =========================
   GOMUKH TAPOVAN
========================= */

.trek-hero-image.gomukh-tapovan-hero {
    background-image: url("../images/treks/gomukh-tapovan/gomukh-tapovan-hero.jpg") !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.trek-image-break-bg.gomukh-tapovan-break {
    background-image: url("../images/treks/gomukh-tapovan/gomukh-tapovan-break.jpg") !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.trek-enquire-bg.gomukh-tapovan-enquire {
    background-image: url("../images/treks/gomukh-tapovan/gomukh-tapovan-enquire.jpg") !important;
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}


/* =========================================================
   IMAGE CONTAINERS
========================================================= */

.trek-hero-image,
.trek-image-break-bg,
.trek-enquire-bg {
    background-color: #111 !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .trek-hero-image,
    .trek-image-break-bg,
    .trek-enquire-bg {
        background-position: center center !important;
        background-size: cover !important;
    }

}/* =========================================================
   THE NORTHERN HIMALAYAS
   TREK PAGE IMAGE FIX
========================================================= */

/* ---------- DODITAL ---------- */

.trek-hero-image.dodital-hero {
    background-image: url("../images/treks/dodital/dodital-hero.jpg") !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.trek-image-break-bg.dodital-lake {
    background-image: url("../images/treks/dodital/dodital-lake.jpg") !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.trek-enquire-bg.dodital-enquire {
    background-image: url("../images/treks/dodital/dodital-enquiry.jpg") !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}


/* ---------- DAYARA ---------- */

.trek-hero-image.dayara-hero {
    background-image: url("../images/treks/dayara/dayara-hero.jpg") !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.trek-image-break-bg.dayara-break {
    background-image: url("../images/treks/dayara/dayara-meadow.jpg") !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.trek-enquire-bg.dayara-enquire {
    background-image: url("../images/treks/dayara/dayara-mountains.jpg") !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}


/* ---------- KEDARKANTHA ---------- */

.trek-hero-image.kedarkantha-hero {
    background-image: url("../images/treks/kedarkantha/kedarkantha-hero.jpg") !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.trek-image-break-bg.kedarkantha-break {
    background-image: url("../images/treks/kedarkantha/kedarkantha-break.jpg") !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.trek-enquire-bg.kedarkantha-enquire {
    background-image: url("../images/treks/kedarkantha/kedarkantha-enquire.jpg") !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}


/* ---------- GOMUKH TAPOVAN ---------- */

.trek-hero-image.gomukh-tapovan-hero {
    background-image: url("../images/treks/gomukh-tapovan/gomukh-tapovan-hero.jpg") !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.trek-image-break-bg.gomukh-tapovan-break {
    background-image: url("../images/treks/gomukh-tapovan/gomukh-tapovan-break.jpg") !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.trek-enquire-bg.gomukh-tapovan-enquire {
    background-image: url("../images/treks/gomukh-tapovan/gomukh-tapovan-enquire.jpg") !important;
    background-position: center center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}


/* ---------- IMAGE CONTAINERS ---------- */

.trek-hero-image,
.trek-image-break-bg,
.trek-enquire-bg {
    background-color: #111 !important;
}


/* ---------- MOBILE ---------- */

@media (max-width: 700px) {

    .trek-hero-image,
    .trek-image-break-bg,
    .trek-enquire-bg {
        background-position: center center !important;
        background-size: cover !important;
    }

}/* =========================================================
   TREK PAGES — WHITE HEADER
========================================================= */

.trek-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 logo + navigation in one row */

.trek-header .nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

/* Logo */

.trek-header .brand {
    display: flex;
    align-items: center;
    margin-right: auto;
    flex-shrink: 0;
}

.trek-header .brand img {
    display: block;
    width: 250px;
    height: auto;
}

/* Navigation */

.trek-header nav {
    display: flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
}

.trek-header nav a {
    color: #111111;
    text-decoration: none;
}

.trek-header nav a:hover {
    color: #b18a45;
}

/* Explore button */

.trek-header .nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    color: #111111;
    background: transparent;

    border: 1px solid #bdbdbd;

    padding: 14px 22px;

    white-space: nowrap;
}

.trek-header .nav-btn:hover {
    background: #111111;
    color: #ffffff;
}

/* Mobile menu */

.trek-header .menu {
    display: none;

    color: #111111;
    background: transparent;

    border: 0;

    font-size: 25px;
}

/* Mobile phone */

.trek-header .mobile-phone {
    display: none;
}


/* =========================================================
   MOBILE TREK HEADER
========================================================= */

@media (max-width: 650px) {

    .trek-header {
        padding: 8px 0;
    }

    .trek-header .nav {
        width: calc(100% - 20px);
        margin: 0 auto;
    }

    .trek-header .brand img {
        width: 125px;
    }

    .trek-header nav,
    .trek-header .nav-btn {
        display: none;
    }

    .trek-header .mobile-phone {
        display: block;

        margin-left: auto;
        margin-right: 14px;

        color: #111111;

        text-decoration: none;

        font-size: 13px;
        font-weight: 600;

        white-space: nowrap;
    }

    .trek-header .menu {
        display: block;
        margin-left: 0;
    }
}/* =========================================================
   KEEP TREK HEADER WHITE WHEN SCROLLING
========================================================= */

.trek-header,
.trek-header.scrolled {
    background: #ffffff !important;
    color: #111111 !important;

    border-bottom: 1px solid #e5e5e5;

    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.trek-header.scrolled nav a,
.trek-header.scrolled .brand,
.trek-header.scrolled .menu {
    color: #111111 !important;
}

.trek-header.scrolled .nav-btn {
    color: #111111 !important;
    background: transparent !important;
    border-color: #bdbdbd !important;
}

.trek-header.scrolled .nav-btn:hover {
    background: #111111 !important;
    color: #ffffff !important;
}