/**
 * Everest2Elbrus - Expedition Detail Page Styles
 * Version: 4.0.0 - Major design overhaul
 *
 * Changes from v3:
 * 1. Hero: centered alignment (matches all other pages)
 * 2. Header CTA removed (PHP change)
 * 3. Quick facts bar: full container width
 * 4. Jump nav: pill style matching expeditions page
 * 5. Dark sections for Mountain + Preparation (visual rhythm)
 * 6. Value stack: numbered editorial layout (approach page style)
 * 7. Guarantee: redesigned card with shield icon, visible heading
 * 8. CTA microcopy: brighter and readable
 * 9. Scarcity line: subtle inline, no border
 * 10. Overall premium polish throughout
 *
 * NOTE: 100% ASCII file. No special characters.
 */


/* ============================================
   SECTION INTRO LABEL (used across sections)
   ============================================ */

.e2e-exp-section-intro {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.e2e-exp-section-intro__line {
    display: block;
    width: 32px;
    height: 2px;
    background: var(--e2e-crimson);
    border-radius: 1px;
    flex-shrink: 0;
}

.e2e-exp-section-intro__label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--e2e-crimson);
}


/* ============================================
   HERO - EXPEDITION DETAIL (centered)
   ============================================ */

.e2e-page-hero--expedition-detail {
    position: relative;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 0;
}

.e2e-page-hero__bg-image--everest {
    background-image: url('../img/expedition-everest-hero.webp');
    background-size: cover;
    background-position: center 30%;
}

.e2e-page-hero__bg-image--manaslu {
    background-image: url('../img/expedition-manaslu-hero.webp');
    background-size: cover;
    background-position: center 40%;
}

.e2e-page-hero__bg-image--lhotse {
    background-image: url('../img/expedition-lhotse-hero.webp');
    background-size: cover;
    background-position: center 25%;
}

.e2e-page-hero__bg-image--ama-dablam {
    background-image: url('../img/expedition-ama-dablam-hero.webp');
    background-size: cover;
    background-position: center 28%;
}

.e2e-page-hero__bg-image--mera-peak {
    background-image: url('../img/expedition-mera-peak-hero.webp');
    background-size: cover;
    background-position: center 40%;
}

.e2e-page-hero__bg-image--island-peak {
    background-image: url('../img/expedition-island-peak-hero.webp');
    background-size: cover;
    background-position: center 30%;
}

.e2e-page-hero__bg-image--lobuche-peak {
    background-image: url('../img/expedition-lobuche-peak-hero.webp');
    background-size: cover;
    background-position: center 20%;
}

.e2e-page-hero__bg-image--ebc-trek {
    background-image: url('../img/expedition-ebc-trek-hero.webp');
    background-size: cover;
    background-position: center 30%;
}

.e2e-page-hero__bg-image--annapurna-circuit {
    background-image: url('../img/expedition-annapurna-circuit-hero.webp');
    background-size: cover;
    background-position: center 35%;
}

.e2e-page-hero__bg-image--annapurna-basecamp {
    background-image: url('../img/expedition-annapurna-basecamp-hero.webp');
    background-size: cover;
    background-position: center 35%;
}

.e2e-page-hero__bg-image--makalu {
    background-image: url('../img/expedition-makalu-hero.webp');
    background-size: cover;
    background-position: center 40%;
}

.e2e-page-hero__bg-image--baruntse {
    background-image: url('../img/expedition-baruntse-hero.webp');
    background-size: cover;
    background-position: center 55%;
}

.e2e-page-hero__bg-image--manaslu-basecamp {
    background-image: url('../img/expedition-manaslu-basecamp-hero.webp');
    background-size: cover;
    background-position: center 35%;
}

.e2e-page-hero__bg-image--langtang-valley {
    background-image: url('../img/expedition-langtang-valley-hero.webp');
    background-size: cover;
    background-position: center 40%;
}

.e2e-page-hero--expedition-detail .e2e-page-hero__bg-overlay {
    background: linear-gradient(
        to bottom,
        rgba(11, 15, 20, 0.08) 0%,
        rgba(11, 15, 20, 0.25) 30%,
        rgba(11, 15, 20, 0.65) 60%,
        rgba(11, 15, 20, 0.92) 90%,
        var(--e2e-near-black) 100%
    );
}

.e2e-page-hero--expedition-detail .e2e-page-hero__content {
    text-align: center;
    max-width: 800px;
    padding-bottom: 3.5rem;
}

.e2e-exp-detail__kicker {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--e2e-white);
    margin-bottom: 1rem;
    padding: 0.375rem 0.875rem;
    background: rgba(220, 20, 60, 0.85);
    border-radius: 4px;
}

.e2e-page-hero--expedition-detail .e2e-page-hero__title {
    text-align: center;
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    line-height: 1.05;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.e2e-page-hero--expedition-detail .e2e-page-hero__subtitle {
    text-align: center;
}

.e2e-exp-detail__lead {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0.75rem auto 0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.e2e-exp-detail__hero-ctas {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.e2e-btn--outline-light {
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all var(--e2e-transition-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

@media (hover: hover) {
    .e2e-btn--outline-light:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
        color: var(--e2e-white);
    }
}


/* ============================================
   PRICE TAG IN SUBTITLE
   ============================================ */

.e2e-exp-detail__price-tag {
    color: var(--e2e-crimson);
    font-weight: 700;
}


/* Group Size: show full label on desktop, short on mobile (kept for other uses) */
.e2e-exp-facts__label-short {
    display: none;
}

@media (max-width: 640px) {
    .e2e-exp-facts__label-full {
        display: none;
    }
    .e2e-exp-facts__label-short {
        display: inline;
    }
}


/* ============================================
   JUMP NAV - DARK WRAPPER + PILLS
   Same structural pattern as expeditions page:
   pills in a <nav> inside a <section> with container.
   Dark themed to match hero/facts zone.
   ============================================ */

.e2e-section--exp-detail-nav-wrap {
    background: var(--e2e-near-black);
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: relative;
}

/* Faded divider line at top of pills section */
.e2e-section--exp-detail-nav-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(85%, 700px);
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 255, 255, 0.12) 20%,
        rgba(255, 255, 255, 0.18) 50%,
        rgba(255, 255, 255, 0.12) 80%,
        transparent 100%
    );
}

/* Nav: flex layout, identical structure to .e2e-exp-nav */
.e2e-exp-detail-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

/* Pill links: dark-themed version of .e2e-exp-nav__link
   -webkit-text-fill-color overrides browser default link
   color (dark blue) that shows on mobile touch/scroll */
.e2e-exp-detail-nav__link {
    display: inline-flex;
    align-items: center;
    padding: 0.4375rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    letter-spacing: 0.01em;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .e2e-exp-detail-nav__link:hover {
        color: var(--e2e-white);
        -webkit-text-fill-color: var(--e2e-white);
        border-color: rgba(255, 255, 255, 0.2);
        background-color: rgba(255, 255, 255, 0.08);
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
}

/* Force color on ALL states to prevent browser default blue on touch */
.e2e-exp-detail-nav__link:focus,
.e2e-exp-detail-nav__link:active,
.e2e-exp-detail-nav__link:visited,
.e2e-exp-detail-nav__link:visited:focus,
.e2e-exp-detail-nav__link:visited:active {
    outline: none;
    color: rgba(255, 255, 255, 0.5);
    -webkit-text-fill-color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.08);
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: none;
    transform: none;
}

/* Keyboard-only focus ring */
.e2e-exp-detail-nav__link:focus-visible {
    outline: 2px solid var(--e2e-crimson);
    outline-offset: 2px;
    color: var(--e2e-white);
    -webkit-text-fill-color: var(--e2e-white);
}

/* Mobile: horizontal scroll, left-aligned */
@media (max-width: 767px) {
    .e2e-exp-detail-nav {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0.5rem;
        touch-action: pan-x;
    }

    .e2e-exp-detail-nav::-webkit-scrollbar {
        display: none;
    }

    .e2e-exp-detail-nav__link {
        white-space: nowrap;
        font-size: 0.75rem;
        padding: 0.4375rem 0.875rem;
    }
}


/* ============================================
   DARK SECTION THEME (Mountain + Preparation)
   ============================================ */

.e2e-section--exp-dark {
    background: linear-gradient(
        175deg,
        var(--e2e-charcoal) 0%,
        #0f1419 50%,
        var(--e2e-near-black) 100%
    );
}

.e2e-section--exp-dark .e2e-section__title {
    color: var(--e2e-white);
}

.e2e-section--exp-dark .e2e-section__body,
.e2e-section--exp-dark .e2e-section__body p,
.e2e-section--exp-dark .e2e-content p {
    color: rgba(255, 255, 255, 0.7);
}

.e2e-section--exp-dark .e2e-exp-detail__subhead {
    color: var(--e2e-white);
}

.e2e-section--exp-dark strong {
    color: rgba(255, 255, 255, 0.95);
}

.e2e-section--exp-dark a {
    color: rgba(220, 20, 60, 0.9);
}

@media (hover: hover) {
    .e2e-section--exp-dark a:hover {
        color: var(--e2e-crimson);
    }
}

/* Dark section numbered articles */
.e2e-section--exp-dark .e2e-exp-article {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.e2e-section--exp-dark .e2e-exp-article:first-child {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.e2e-section--exp-dark .e2e-exp-article__number {
    color: rgba(220, 20, 60, 0.2);
}

.e2e-section--exp-dark .e2e-exp-article__title {
    color: var(--e2e-white);
}

.e2e-section--exp-dark .e2e-exp-article__content {
    color: rgba(255, 255, 255, 0.65);
}


/* ============================================
   WHO THIS IS FOR (Fit / Not Fit)
   ============================================ */

.e2e-exp-fit__bridge {
    margin-bottom: 3.5rem;
}

.e2e-exp-fit {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 0 3rem;
    margin-top: 2.5rem;
    align-items: start;
}

.e2e-exp-fit__divider {
    width: 2px;
    align-self: stretch;
    min-height: 200px;
    background: linear-gradient(
        to bottom,
        var(--e2e-crimson) 0%,
        rgba(220, 20, 60, 0.3) 60%,
        rgba(220, 20, 60, 0.0) 100%
    );
    border-radius: 2px;
}

.e2e-exp-fit__block {
    padding: 0;
}

.e2e-exp-fit__heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.e2e-exp-fit__block--yes .e2e-exp-fit__heading {
    color: #059669;
}

.e2e-exp-fit__block--no .e2e-exp-fit__heading {
    color: var(--e2e-crimson);
}

.e2e-exp-fit__body {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--e2e-slate);
}

.e2e-exp-fit__body p + p {
    margin-top: 1rem;
}

.e2e-exp-fit__body a {
    color: var(--e2e-nepal-blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

@media (hover: hover) {
    .e2e-exp-fit__body a:hover {
        color: var(--e2e-nepal-blue-hover);
    }
}


/* ============================================
   NUMBERED ARTICLES (Mountain section)
   ============================================ */

.e2e-exp-articles {
    margin-top: 2rem;
}

.e2e-exp-article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.e2e-exp-article:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.e2e-exp-article__number {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: rgba(220, 20, 60, 0.1);
    padding-top: 0.125rem;
    min-width: 80px;
}

.e2e-exp-article__title {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    color: var(--e2e-charcoal);
    margin-bottom: 1.25rem;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.e2e-exp-article__content {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--e2e-slate);
    max-width: 680px;
}

.e2e-exp-article__content p + p {
    margin-top: 1rem;
}


/* ============================================
   SUBHEADINGS
   ============================================ */

.e2e-exp-detail__subhead {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--e2e-charcoal);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.e2e-exp-detail__subhead:first-child {
    margin-top: 0;
}


/* ============================================
   INCLUDES / EXCLUDES
   ============================================ */

.e2e-exp-includes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
}

.e2e-exp-includes__heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid;
}

.e2e-exp-includes__col--yes .e2e-exp-includes__heading {
    color: #059669;
    border-bottom-color: transparent;
    background-image: linear-gradient(to right, #059669 0%, rgba(5, 150, 105, 0.3) 60%, rgba(5, 150, 105, 0.0) 100%);
    background-size: 100% 2px;
    background-repeat: no-repeat;
    background-position: bottom;
}

.e2e-exp-includes__col--no .e2e-exp-includes__heading {
    color: var(--e2e-crimson);
    border-bottom-color: transparent;
    background-image: linear-gradient(to right, var(--e2e-crimson) 0%, rgba(220, 20, 60, 0.3) 60%, rgba(220, 20, 60, 0.0) 100%);
    background-size: 100% 2px;
    background-repeat: no-repeat;
    background-position: bottom;
}

.e2e-exp-includes__group {
    margin-bottom: 1.5rem;
}

.e2e-exp-includes__category {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--e2e-charcoal);
    margin-bottom: 0.5rem;
}

.e2e-exp-includes__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.e2e-exp-includes__list li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--e2e-slate);
    margin-bottom: 0.35rem;
}

.e2e-exp-includes__col--yes .e2e-exp-includes__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #059669;
}

.e2e-exp-includes__col--no .e2e-exp-includes__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--e2e-crimson);
}


/* ============================================
   ITINERARY - AT A GLANCE
   ============================================ */

.e2e-exp-glance {
    background: var(--e2e-white);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.e2e-exp-glance__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--e2e-charcoal);
}

.e2e-exp-glance__phase {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1rem;
    padding: 0.625rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.e2e-exp-glance__phase:last-child {
    border-bottom: none;
}

.e2e-exp-glance__days {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--e2e-charcoal);
    white-space: nowrap;
}

.e2e-exp-glance__desc {
    font-size: 0.9375rem;
    color: var(--e2e-slate);
    line-height: 1.5;
}

.e2e-exp-glance__phase--summit {
    background: rgba(220, 20, 60, 0.04);
    margin: -1px -1rem 0;
    padding: calc(0.625rem + 1px) 1rem 0.625rem;
    border-radius: 8px;
    border-bottom: none;
}

.e2e-exp-glance__phase--summit .e2e-exp-glance__days {
    color: var(--e2e-crimson);
}


/* ============================================
   ITINERARY - TOGGLE BUTTON
   ============================================ */

.e2e-exp-itinerary {
    margin-top: 1.5rem;
}

.e2e-exp-itinerary__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: var(--e2e-charcoal);
    border: 1px solid var(--e2e-charcoal);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--e2e-white);
    cursor: pointer;
    transition: background var(--e2e-transition-base), border-color var(--e2e-transition-base);
    font-family: var(--e2e-font-family);
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@media (hover: hover) {
    .e2e-exp-itinerary__toggle:hover {
        background: #2d3748;
        border-color: #2d3748;
    }
}

.e2e-exp-itinerary__toggle:focus {
    outline: none !important;
    box-shadow: none !important;
    background: var(--e2e-charcoal);
    border-color: var(--e2e-charcoal);
    color: var(--e2e-white);
}

.e2e-exp-itinerary__toggle:focus-visible {
    outline: 2px solid var(--e2e-crimson) !important;
    outline-offset: 2px;
    box-shadow: none !important;
    background: var(--e2e-charcoal);
    color: var(--e2e-white);
}

.e2e-exp-itinerary__toggle:active {
    background: #1a202c;
    border-color: #1a202c;
    color: var(--e2e-white);
    outline: none !important;
    box-shadow: none !important;
}

.e2e-exp-itinerary__toggle[aria-expanded="true"] .e2e-exp-itinerary__toggle-icon {
    transform: rotate(180deg);
}

.e2e-exp-itinerary__toggle-icon {
    transition: transform var(--e2e-transition-base);
    flex-shrink: 0;
    color: var(--e2e-white);
}

.e2e-exp-itinerary__detail {
    margin-top: 1.5rem;
}

.e2e-exp-day {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.e2e-exp-day:last-of-type {
    border-bottom: none;
}

.e2e-exp-day__header {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.375rem;
}

.e2e-exp-day__num {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--e2e-crimson);
    white-space: nowrap;
    min-width: 65px;
}

.e2e-exp-day__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--e2e-charcoal);
}

.e2e-exp-day__meta {
    font-size: 0.8125rem;
    color: var(--e2e-slate-light);
    margin-bottom: 0.5rem;
    padding-left: calc(65px + 0.75rem);
}

.e2e-exp-day__desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--e2e-slate);
    padding-left: calc(65px + 0.75rem);
    margin: 0;
}

.e2e-exp-day--summit {
    background: rgba(220, 20, 60, 0.03);
    margin: 0.5rem -1.5rem;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(220, 20, 60, 0.1);
    border-bottom: 1px solid rgba(220, 20, 60, 0.1);
}

.e2e-exp-day--summit .e2e-exp-day__num {
    font-size: 0.875rem;
}

.e2e-exp-day--phase {
    background: rgba(0, 56, 147, 0.02);
    margin: 0.25rem -1.5rem;
    padding: 1.25rem 1.5rem;
    border-radius: 6px;
}

.e2e-exp-itinerary__note {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--e2e-slate-light);
}

.e2e-exp-itinerary__note p {
    font-size: 0.875rem;
    line-height: 1.65;
    color: var(--e2e-slate);
    margin: 0;
}


/* ============================================
   PRICING CARD
   ============================================ */

.e2e-exp-pricing {
    margin-top: 2rem;
}

.e2e-exp-pricing__card {
    background: var(--e2e-white);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.e2e-exp-pricing__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.e2e-exp-pricing__season {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--e2e-crimson);
}

.e2e-exp-pricing__dates {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--e2e-charcoal);
}

.e2e-exp-pricing__price-row {
    margin-bottom: 2rem;
}

.e2e-exp-pricing__price {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--e2e-charcoal);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.e2e-exp-pricing__per {
    display: block;
    font-size: 0.875rem;
    color: var(--e2e-slate-light);
    margin-top: 0.375rem;
}

.e2e-exp-pricing__scarcity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.e2e-exp-pricing__scarcity-line {
    width: 48px;
    height: 2px;
    background: var(--e2e-nepal-blue);
    border-radius: 1px;
    opacity: 0.4;
}

.e2e-exp-pricing__scarcity-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--e2e-slate);
    letter-spacing: 0.01em;
}

.e2e-exp-pricing__scarcity-text svg {
    flex-shrink: 0;
    color: var(--e2e-slate-light);
}

.e2e-exp-pricing__cta {
    width: 100%;
    max-width: 420px;
    text-align: center;
    margin: 0 auto;
}


/* ============================================
   VALUE STACK - NUMBERED EDITORIAL
   ============================================ */

.e2e-exp-value-stack {
    margin-top: 3rem;
}

.e2e-exp-value-stack__items {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.e2e-exp-value-stack__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    padding: 1.375rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    align-items: start;
}

.e2e-exp-value-stack__item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.e2e-exp-value-stack__num {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: rgba(0, 56, 147, 0.12);
    min-width: 48px;
    padding-top: 0.125rem;
    font-variant-numeric: tabular-nums;
}

.e2e-exp-value-stack__text {
    display: flex;
    flex-direction: column;
}

.e2e-exp-value-stack__label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--e2e-charcoal);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.e2e-exp-value-stack__note {
    font-size: 0.875rem;
    color: var(--e2e-slate);
    margin-top: 0.25rem;
    line-height: 1.6;
}

.e2e-exp-value-stack__summary {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--e2e-slate);
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    border-left: 3px solid var(--e2e-charcoal);
}


/* ============================================
   EXTRA COSTS
   ============================================ */

.e2e-exp-extra-costs {
    margin-top: 3.5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.e2e-exp-extra-costs__intro {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--e2e-slate);
    margin-bottom: 2rem;
}

.e2e-exp-extra-costs__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.e2e-exp-extra-costs__entry {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.e2e-exp-extra-costs__entry:last-child {
    border-bottom: none;
}

.e2e-exp-extra-costs__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--e2e-crimson);
    margin-top: 0.55rem;
    flex-shrink: 0;
}

.e2e-exp-extra-costs__label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--e2e-charcoal);
    margin-bottom: 0.375rem;
    letter-spacing: -0.01em;
}

.e2e-exp-extra-costs__desc {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--e2e-slate);
    margin: 0;
}

.e2e-exp-extra-costs__footer {
    margin-top: 2rem;
    font-size: 0.9375rem;
    line-height: 1.75;
    color: var(--e2e-slate);
    padding: 1rem 1.25rem;
    background: rgba(5, 150, 105, 0.04);
    border-radius: 8px;
    border-left: 3px solid #059669;
}


/* ============================================
   GUARANTEE / RISK REVERSAL
   Dark card with crimson accent line
   ============================================ */

.e2e-exp-guarantee {
    margin-top: 3rem;
}

.e2e-exp-guarantee__inner {
    background: linear-gradient(
        175deg,
        var(--e2e-charcoal) 0%,
        #0f1419 60%,
        var(--e2e-near-black) 100%
    );
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Short crimson accent line above title */
.e2e-exp-guarantee__accent {
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(
        to right,
        var(--e2e-crimson),
        rgba(220, 20, 60, 0.4)
    );
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.e2e-exp-guarantee__title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--e2e-white);
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
}

.e2e-exp-guarantee p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.e2e-exp-guarantee p + p {
    margin-top: 1rem;
}

.e2e-exp-guarantee strong {
    color: var(--e2e-white);
    font-weight: 700;
}


/* ============================================
   FAQ ACCORDION
   ============================================ */

.e2e-exp-faq {
    margin-top: 1.5rem;
}

.e2e-exp-faq__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.e2e-exp-faq__item:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.e2e-exp-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--e2e-charcoal);
    cursor: pointer;
    list-style: none;
    line-height: 1.4;
    transition: color var(--e2e-transition-fast);
}

.e2e-exp-faq__question::-webkit-details-marker {
    display: none;
}

.e2e-exp-faq__question::marker {
    content: '';
}

.e2e-exp-faq__question::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--e2e-slate-light);
    flex-shrink: 0;
    margin-left: 1rem;
    transition: transform var(--e2e-transition-fast);
}

.e2e-exp-faq__item[open] .e2e-exp-faq__question::after {
    content: '-';
}

@media (hover: hover) {
    .e2e-exp-faq__question:hover {
        color: var(--e2e-crimson);
    }
}

.e2e-exp-faq__answer {
    padding-bottom: 1.5rem;
}

.e2e-exp-faq__answer p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--e2e-slate);
    margin: 0;
}

.e2e-exp-faq__answer p + p {
    margin-top: 0.75rem;
}


/* ============================================
   FINAL CTA - Expeditions page style
   Microcopy visible below button
   ============================================ */

.e2e-exp-cta__microcopy {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}


/* ============================================
   RESPONSIVE - TABLET (1024px)
   ============================================ */

@media (max-width: 1024px) {

    .e2e-exp-fit {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .e2e-exp-fit__divider {
        width: auto;
        min-height: 2px;
        height: 2px;
        align-self: auto;
        margin: 2.5rem 0;
        background: linear-gradient(
            to right,
            var(--e2e-crimson) 0%,
            rgba(220, 20, 60, 0.3) 60%,
            rgba(220, 20, 60, 0.0) 100%
        );
    }

    .e2e-exp-includes {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .e2e-exp-article {
        grid-template-columns: 60px 1fr;
        gap: 1.25rem;
    }

    .e2e-exp-article__number {
        font-size: 2.5rem;
        min-width: 60px;
    }
}


/* ============================================
   RESPONSIVE - MOBILE (640px)
   ============================================ */

@media (max-width: 640px) {

    .e2e-page-hero--expedition-detail {
        min-height: 65vh;
    }

    .e2e-page-hero--expedition-detail .e2e-page-hero__title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .e2e-exp-detail__hero-ctas {
        flex-direction: column;
    }

    .e2e-exp-detail__hero-ctas .e2e-btn {
        text-align: center;
        justify-content: center;
    }

    .e2e-exp-article {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .e2e-exp-article__number {
        font-size: 2rem;
        min-width: auto;
    }

    .e2e-exp-glance__phase {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .e2e-exp-glance__phase--summit {
        margin: -1px -0.75rem 0;
        padding: 0.75rem;
    }

    .e2e-exp-day__meta,
    .e2e-exp-day__desc {
        padding-left: 0;
    }

    .e2e-exp-day__header {
        flex-direction: column;
        gap: 0.125rem;
    }

    .e2e-exp-day--summit {
        margin: 0.5rem -1rem;
        padding: 1rem;
    }

    .e2e-exp-day--phase {
        margin: 0.25rem -1rem;
        padding: 1rem;
    }

    .e2e-exp-pricing__card {
        padding: 2rem 1.5rem;
    }

    /* Scarcity: stack on mobile, icon on top */
    .e2e-exp-pricing__scarcity-text {
        flex-direction: column;
        text-align: center;
        gap: 0.375rem;
    }

    .e2e-exp-pricing__scarcity-text svg {
        margin: 0 auto;
    }

    .e2e-exp-value-stack__item {
        gap: 0.875rem;
    }

    .e2e-exp-value-stack__num {
        font-size: 1.5rem;
        min-width: 36px;
    }

    .e2e-exp-guarantee__inner {
        padding: 1.75rem 1.5rem;
    }

    .e2e-exp-guarantee__title {
        font-size: 1.125rem;
    }

    .e2e-exp-faq__question {
        font-size: 0.9375rem;
    }
}
