:root {
    --black: #062112;
    --green: #13863c;
    --yellow: #fec60d;
    --ice: #eaf7ff;
    --ice-2: #cdeeff;
    --panel: rgba(7, 50, 25, .82);
    --line: rgba(234, 247, 255, .22);
    --text: #f8fbf8;
    --muted: #cbd8d1;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
    color: var(--text);
    background: radial-gradient(circle at 12% 0%, rgba(254, 198, 13, .16), transparent 30%), radial-gradient(circle at 88% 12%, rgba(19, 134, 60, .5), transparent 30%), linear-gradient(180deg, #0b3f20 0%, #062112 46%, #031408 100%);
    font-family: Inter, Arial, Helvetica, sans-serif;
    transition: background .35s ease, color .35s ease;
}

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

a,
button,
.package-card,
.image-card,
.blog-card,
.feature,
.content-card,
.reel-card,
.snow-control i {
    transition: color .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease, opacity .22s ease;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

.snow-surface {
    background: linear-gradient(180deg, rgba(6, 33, 18, .97), rgba(3, 20, 8, .95)), linear-gradient(90deg, rgba(19, 134, 60, .36), rgba(254, 198, 13, .12));
    color: var(--text);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.2vw, 18px);
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    min-height: 88px;
    padding: 10px clamp(14px, 3vw, 42px);
    border-bottom: 1px solid rgba(19, 134, 60, .16);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
}

.brand {
    flex: 0 0 clamp(132px, 13vw, 178px);
    width: clamp(132px, 13vw, 178px);
    min-width: clamp(132px, 13vw, 178px);
    max-width: 178px;
    overflow: hidden;
}

.brand img {
    width: 100%;
    height: 44px;
    object-fit: contain;
    object-position: left center;
}

.brand .logo-default {
    display: block;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.brand .logo-snow {
    display: none;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

.brand .logo-default,
.brand .logo-snow {
    width: 100% !important;
    height: 44px !important;
    max-width: 178px !important;
    max-height: 44px !important;
    object-fit: contain;
}

header,
.main-nav {
    min-height: 80px;
    /* Keep the header fixed */
}

.brand {
    display: flex;
    align-items: center;
    height: 100%;
}

.brand img {
    width: 100% !important;
    height: 44px !important;
    max-width: 178px !important;
    max-height: 44px !important;
}

.main-nav {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 1vw, 16px);
    margin-left: 0;
}

.main-nav a {
    position: relative;
    padding: 12px 0;
    color: var(--text);
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    white-space: nowrap;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 2px;
    transform: scaleX(0);
    background: var(--green);
    transition: transform .25s ease;
}

.main-nav a.active::after,
.main-nav a:hover::after {
    transform: scaleX(1);
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--yellow);
}

.main-nav a:hover {
    transform: translateY(-1px);
}

.plan-btn,
.primary-btn,
.ghost-btn,
.trip-search button,
.package-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
}

.site-header .plan-btn {
    flex: 0 0 auto;
    max-width: 136px;
    min-height: 44px;
    padding-inline: 16px;
    text-align: center;
    line-height: 1.08;
}

.plan-btn,
.primary-btn,
.trip-search button,
.package-card a {
    background: var(--yellow);
    color: #090b04;
    box-shadow: 0 14px 28px rgba(254, 198, 13, .2);
}

.plan-btn:hover,
.primary-btn:hover,
.trip-search button:hover,
.package-card a:hover {
    transform: translateY(-2px);
    background: #ffd43a;
    box-shadow: 0 18px 38px rgba(254, 198, 13, .34);
}

.plan-btn:active,
.primary-btn:active,
.trip-search button:active,
.package-card a:active {
    transform: translateY(0);
    box-shadow: 0 10px 22px rgba(254, 198, 13, .24);
}

.ghost-btn {
    color: white;
    background: rgba(234, 247, 255, .08);
    border: 1px solid rgba(234, 247, 255, .42);
}

.ghost-btn:hover {
    transform: translateY(-2px);
    color: var(--yellow);
    border-color: rgba(254, 198, 13, .58);
    background: rgba(254, 198, 13, .08);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .26);
}

.snow-control {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.snow-control input {
    position: absolute;
    opacity: 0;
}

.snow-control i {
    position: relative;
    width: 44px;
    height: 26px;
    border-radius: 999px;
    background: #9eb6c2;
    box-shadow: inset 0 0 0 1px rgba(7, 16, 12, .16);
}

.snow-control i::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    background: white;
    transition: transform .25s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .18);
}

.snow-control input:checked+i {
    background: var(--green);
}

.snow-control:hover i {
    box-shadow: inset 0 0 0 1px rgba(254, 198, 13, .42), 0 10px 24px rgba(254, 198, 13, .18);
}

.snow-control input:checked+i::after {
    transform: translateX(18px);
}

.menu-toggle {
    display: none;
    margin-left: auto;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(7, 16, 12, .16);
    border-radius: 999px;
    background: white;
    color: #07100c;
}

.hero-slider {
    position: relative;
    min-height: clamp(560px, calc(100vh - 105px), 690px);
    overflow: hidden;
    isolation: isolate;
}

.slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 72px) clamp(150px, 16vw, 190px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .8s ease;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: var(--slide) center/cover;
    transform: scale(1.04);
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(3, 20, 8, .76), rgba(3, 20, 8, .2) 58%, rgba(3, 20, 8, .34));
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide-copy {
    max-width: 620px;
    padding-top: 18px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--yellow);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.slide h1,
.slide h2 {
    margin: 0;
    max-width: 680px;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.02;
    letter-spacing: 0;
    text-transform: uppercase;
}

.slide p:not(.eyebrow) {
    max-width: 420px;
    color: #eef7f0;
    font-size: clamp(16px, 1.7vw, 18px);
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.slider-dots {
    position: absolute;
    left: clamp(24px, 6vw, 90px);
    bottom: 40px;
    z-index: 3;
    display: flex;
    gap: 12px;
}

.slider-dots button {
    width: 42px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .4);
}

.slider-dots button.active {
    background: var(--yellow);
}

.trip-search {
    position: relative;
    display: grid;
    grid-template-columns: minmax(150px, .8fr) repeat(3, minmax(140px, 1fr)) minmax(150px, auto);
    gap: 14px;
    align-items: end;
    margin: 26px clamp(18px, 4vw, 56px) 0;
    padding: 18px;
    z-index: 5;
    background: rgba(4, 12, 10, .88);
    border: 1px solid rgba(234, 247, 255, .22);
    border-radius: 20px;
    backdrop-filter: blur(18px);
    box-shadow: 0 26px 80px rgba(0, 0, 0, .45);
}

.trip-search button {
    width: 100%;
    white-space: nowrap;
}

.trip-search h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.1;
}

.trip-search label {
    display: grid;
    gap: 8px;
    color: var(--ice);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.trip-search input,
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    color: white;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(234, 247, 255, .2);
    border-radius: 12px;
    outline: 0;
    transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}

.trip-search input:hover,
.contact-form input:hover,
.contact-form textarea:hover,
.contact-form select:hover {
    border-color: rgba(254, 198, 13, .36);
    background: rgba(255, 255, 255, .08);
}

.trip-search input:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--yellow);
    background: rgba(255, 255, 255, .1);
    box-shadow: 0 0 0 3px rgba(254, 198, 13, .14);
}

.trip-search input::placeholder,
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(234, 247, 255, .72);
}

.section {
    padding: clamp(56px, 7vw, 104px) clamp(18px, 4vw, 60px);
}

.spacious {
    max-width: 1480px;
    margin: 0 auto;
}

.airly,
.airy-band {
    background: linear-gradient(180deg, rgba(234, 247, 255, .06), rgba(19, 134, 60, .08));
}

.section-head {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 8px 22px;
    margin-bottom: 34px;
}

.section-head .eyebrow {
    grid-column: 1 / -1;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.05;
    text-transform: uppercase;
}

.section-head a {
    align-self: center;
    color: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .08em;
}

.destination-grid,
.package-grid,
.blog-grid,
.feature-grid,
.reels-grid {
    display: grid;
    gap: 28px;
}

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

.package-grid {
    display: flex;
    grid-template-columns: none;
    gap: 24px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    padding: 4px 4px 18px;
    scrollbar-width: thin;
    scrollbar-color: var(--yellow) rgba(255, 255, 255, .08);
}

.package-grid::-webkit-scrollbar {
    height: 8px;
}

.package-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .08);
    border-radius: 999px;
}

.package-grid::-webkit-scrollbar-thumb {
    background: var(--yellow);
    border-radius: 999px;
}

.blog-grid {
    grid-template-columns: repeat(3, 1fr);
}

.reels-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid {
    grid-template-columns: repeat(3, 1fr);
}

.image-card,
.package-card,
.blog-card,
.reel-card,
.feature,
.content-card,
.stats-panel,
.modal-panel {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(234, 247, 255, .08), rgba(255, 255, 255, .03)), var(--panel);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .34);
}

.image-card:hover,
.package-card:hover,
.blog-card:hover,
.reel-card:hover,
.feature:hover,
.content-card:hover {
    transform: translateY(-6px);
    border-color: rgba(254, 198, 13, .38);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .46), 0 0 0 1px rgba(254, 198, 13, .08);
}

.image-card img,
.package-card img,
.blog-card img,
.reel-card img {
    transition: transform .45s ease, filter .45s ease;
}

.image-card:hover img,
.package-card:hover img,
.blog-card:hover img,
.reel-card:hover img {
    transform: scale(1.035);
    filter: saturate(1.08) contrast(1.04);
}

.image-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.image-card h3,
.image-card p {
    margin-left: 22px;
    margin-right: 22px;
}

.image-card h3 {
    margin-top: 22px;
    margin-bottom: 8px;
    color: var(--yellow);
    font-size: 24px;
    text-transform: uppercase;
}

.image-card p {
    margin-bottom: 24px;
    color: var(--muted);
    line-height: 1.55;
}

.package-card {
    flex: 0 0 clamp(260px, 24vw, 340px);
    display: grid;
    grid-template-rows: auto 1fr;
    background: linear-gradient(180deg, rgba(10, 65, 32, .98), rgba(4, 30, 14, .98));
    scroll-snap-align: start;
}

.package-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.package-card img[src^="assets/manali-"],
.package-card img[src^="assets/spiti-"] {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top center;
}

.package-card div {
    padding: 22px;
    display: grid;
    gap: 14px;
    align-content: start;
    background: linear-gradient(180deg, rgba(8, 48, 24, .98), rgba(4, 28, 13, .98));
    border-top: 1px solid rgba(254, 198, 13, .12);
    z-index: 1;
}

.package-card span,
.blog-card span {
    width: fit-content;
    padding: 6px 10px;
    color: white;
    background: var(--green);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.package-card:hover span,
.blog-card:hover span {
    background: var(--yellow);
    color: #07100c;
}

.package-card h3,
.blog-card h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.15;
}

.package-card p,
.package-card strong {
    display: none;
}

.package-card p,
.blog-card p,
.content-card p,
.feature p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.package-card strong {
    color: var(--yellow);
    font-size: 24px;
}

.package-card a {
    margin-top: 2px;
    width: 100%;
}

.pdf-note {
    margin: 26px 0 0;
    color: var(--muted);
    text-align: center;
}

.experience-strip {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    gap: 16px;
    margin: 0 clamp(20px, 5vw, 72px);
    padding: 18px;
    background: linear-gradient(180deg, rgba(234, 247, 255, .07), rgba(19, 134, 60, .08));
    border: 1px solid rgba(234, 247, 255, .16);
    border-radius: 24px;
}

.experience-strip a {
    min-height: 94px;
    padding: 18px 16px;
    display: grid;
    place-items: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(19, 134, 60, .34), rgba(7, 50, 25, .72));
    border: 1px solid rgba(254, 198, 13, .14);
    border-radius: 18px;
    color: var(--ice);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.25;
    box-shadow: 0 18px 34px rgba(0, 0, 0, .16);
}

.experience-strip a:hover {
    transform: translateY(-3px);
    color: var(--yellow);
    border-color: rgba(254, 198, 13, .36);
    background: linear-gradient(180deg, rgba(19, 134, 60, .5), rgba(7, 50, 25, .86));
    box-shadow: 0 24px 44px rgba(0, 0, 0, .24);
}

.destination-experiences {
    background:
        radial-gradient(circle at 12% 8%, rgba(254, 198, 13, .13), transparent 30%),
        linear-gradient(180deg, #07361d 0%, #031309 100%);
}

.experience-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 260px;
    gap: 18px;
}

.experience-card {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    border: 1px solid rgba(234, 247, 255, .15);
    border-radius: 24px;
    background: #071a10;
    box-shadow: 0 24px 52px rgba(0, 0, 0, .22);
}

.experience-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.experience-card.wide {
    grid-column: span 2;
}

.experience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 500ms ease, filter 500ms ease;
}

.experience-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .04) 20%, rgba(0, 0, 0, .78) 100%),
        linear-gradient(90deg, rgba(3, 19, 9, .42), transparent 64%);
    pointer-events: none;
}

.experience-card div {
    position: absolute;
    z-index: 1;
    left: 22px;
    right: 22px;
    bottom: 22px;
    display: grid;
    gap: 10px;
}

.experience-card span {
    width: fit-content;
    border-radius: 999px;
    background: var(--yellow);
    color: #061d10;
    padding: 8px 12px;
    font-size: .72rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.experience-card h3 {
    max-width: 520px;
    margin: 0;
    color: #fff;
    font-size: clamp(1.35rem, 2.1vw, 2.45rem);
    line-height: 1.05;
    text-shadow: 0 8px 22px rgba(0, 0, 0, .45);
}

.experience-card:not(.large) h3 {
    font-size: clamp(1.15rem, 1.45vw, 1.55rem);
}

.experience-card:hover {
    transform: translateY(-5px);
    border-color: rgba(254, 198, 13, .44);
    box-shadow: 0 34px 70px rgba(0, 0, 0, .3);
}

.experience-card:hover img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.04);
}

.two-col {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: clamp(28px, 4vw, 54px);
    align-items: stretch;
}

.trust-section {
    align-items: center;
}

.content-card {
    padding: clamp(32px, 4.5vw, 64px);
}

.content-card h2 {
    margin: 0 0 20px;
    font-size: clamp(30px, 3.8vw, 52px);
    line-height: 1.08;
    text-transform: uppercase;
}

.content-card p:not(.eyebrow) {
    max-width: 680px;
    font-size: 17px;
}

.content-card .primary-btn {
    margin-top: 28px;
}

.stats-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 18px;
}

.stats-panel div {
    display: grid;
    place-items: center;
    gap: 12px;
    min-height: 132px;
    padding: 20px 12px;
    text-align: center;
    background: linear-gradient(180deg, rgba(254, 198, 13, .1), rgba(234, 247, 255, .045));
    border: 1px solid rgba(254, 198, 13, .12);
    border-radius: 18px;
}

.stats-panel strong {
    color: var(--yellow);
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1;
}

.stats-panel span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.snow-banner {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    margin: 0 clamp(20px, 5vw, 72px);
    padding: clamp(36px, 6vw, 80px);
    background: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .18)), url("https://images.unsplash.com/photo-1519985176271-adb1088fa94c?auto=format&fit=crop&w=1700&q=85") center/cover;
    border: 1px solid rgba(234, 247, 255, .24);
    border-radius: 24px;
}

.snow-banner div {
    max-width: 740px;
}

.snow-banner h2 {
    margin: 0 0 20px;
    color: var(--ice);
    font-size: clamp(38px, 6vw, 78px);
    line-height: 1;
    text-transform: uppercase;
}

.snow-banner p:not(.eyebrow) {
    color: #edf8ff;
    font-size: 18px;
    line-height: 1.65;
}

.journey-films-section {
    background:
        radial-gradient(circle at 18% 12%, rgba(254, 198, 13, .12), transparent 32%),
        linear-gradient(180deg, #03170d 0%, #062714 100%);
}

.journey-video-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.journey-video-card {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(234, 247, 255, .16);
    background: #07140f;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.journey-video-card video {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: block;
    object-fit: cover;
    transform: scale(1.02);
    filter: saturate(1.06) contrast(1.04);
    transition: transform 500ms ease, filter 500ms ease;
}

.journey-video-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, .82) 100%),
        linear-gradient(90deg, rgba(2, 14, 8, .42), transparent 70%);
    pointer-events: none;
}

.journey-video-card div {
    position: absolute;
    z-index: 1;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: grid;
    gap: 10px;
}

.journey-video-card span {
    width: fit-content;
    border-radius: 999px;
    background: var(--yellow);
    color: #061d10;
    padding: 8px 12px;
    font-size: .72rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.journey-video-card h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.2rem, 1.5vw, 1.65rem);
    line-height: 1.12;
    text-shadow: 0 8px 22px rgba(0, 0, 0, .42);
}

.journey-video-card:hover {
    transform: translateY(-5px);
    border-color: rgba(254, 198, 13, .42);
    box-shadow: 0 34px 76px rgba(0, 0, 0, .34);
}

.journey-video-card:hover video {
    transform: scale(1.08);
    filter: saturate(1.14) contrast(1.08);
}

.blog-card {
    display: grid;
    grid-template-rows: 260px 1fr;
}

.blog-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.blog-card div {
    padding: 24px;
    display: grid;
    gap: 13px;
}

.instagram-section {
    background: linear-gradient(180deg, rgba(234, 247, 255, .05), rgba(19, 134, 60, .08)), radial-gradient(circle at 82% 18%, rgba(254, 198, 13, .12), transparent 28%);
}

.reel-card {
    min-height: clamp(390px, 48vw, 520px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    isolation: isolate;
}

.reel-fallback,
.reel-video-card {
    aspect-ratio: 9 / 16;
    width: 100%;
    min-height: auto;
    padding: 0;
    background: rgba(4, 12, 10, .78);
}

.reel-video-card::after {
    display: none;
}

.reel-fallback::before {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    z-index: 2;
    width: 0;
    height: 0;
    transform: translate(-38%, -50%);
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
    border-left: 44px solid rgba(255, 255, 255, .92);
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .34));
    pointer-events: none;
}

.reel-card img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.62) saturate(1.08);
}

.reel-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(3, 20, 8, .06), rgba(3, 20, 8, .58));
    pointer-events: none;
}

.reel-card span {
    position: relative;
    z-index: 2;
    width: fit-content;
    margin: auto 18px 18px;
    padding: 7px 11px;
    color: #07100c;
    background: var(--yellow);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.reel-card h3 {
    margin: 0;
    max-width: 300px;
    color: white;
    font-size: 30px;
    line-height: 1.05;
    text-transform: uppercase;
}

.reel-embed {
    width: 100%;
    min-width: 0 !important;
    max-width: 100% !important;
    min-height: 500px;
    margin: 0 auto !important;
    padding: 0 !important;
    background: #ffffff !important;
    border: 1px solid var(--line) !important;
    border-radius: 18px !important;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .34) !important;
    overflow: hidden;
}

.reel-video {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: 9 / 16;
    display: block;
    object-fit: cover;
    border: 0;
    border-radius: 18px;
    background: rgba(4, 12, 10, .78);
}

.reel-link {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 2;
    width: fit-content;
    padding: 7px 11px;
    color: #07100c;
    background: var(--yellow);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.embed-slot {
    border-style: dashed;
}

.embed-note {
    display: none;
}

.page-hero {
    min-height: 380px;
    display: grid;
    align-items: end;
    padding: clamp(70px, 9vw, 112px) clamp(24px, 6vw, 90px);
    background: linear-gradient(90deg, rgba(6, 33, 18, .86), rgba(19, 134, 60, .32)), var(--page-image) center/cover;
}

.page-hero h1 {
    margin: 0;
    color: var(--yellow);
    font-size: clamp(38px, 5.6vw, 72px);
    line-height: 1;
    text-transform: uppercase;
}

.page-hero p {
    max-width: 760px;
    color: var(--ice);
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.55;
}

.content-wrap {
    padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 72px);
    max-width: 1420px;
    margin: 0 auto;
}

.feature {
    padding: 34px;
    min-height: 220px;
}

.feature h3 {
    margin: 0 0 14px;
    color: var(--yellow);
    font-size: 26px;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.contact-form textarea {
    min-height: 140px;
    padding-top: 15px;
    resize: vertical;
}

.contact-form button:disabled {
    cursor: wait;
    opacity: .72;
}

.form-status {
    margin: 0;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--ice);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(234, 247, 255, .16);
    line-height: 1.45;
}

.form-status:empty {
    display: none;
}

.form-status[data-type="success"] {
    color: #dfffe8;
    border-color: rgba(19, 134, 60, .44);
    background: rgba(19, 134, 60, .16);
}

.form-status[data-type="error"] {
    color: #fff0d2;
    border-color: rgba(254, 198, 13, .5);
    background: rgba(254, 198, 13, .12);
}

.site-footer {
    position: relative;
    margin-top: 70px;
    overflow: hidden;
    border-top: 1px solid rgba(19, 134, 60, .16);
}

.footer-art {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    width: min(66vw, 660px);
    max-width: 68%;
    height: auto;
    opacity: .17;
    pointer-events: none;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .32));
    z-index: 0;
}

.footer-gallery {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 22px clamp(20px, 5vw, 72px) 0;
}

.footer-gallery img {
    width: 100%;
    height: 155px;
    object-fit: cover;
    border-radius: 16px;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 38px;
    padding: 42px clamp(20px, 5vw, 72px);
    color: var(--yellow);
}

.footer-logo {
    width: min(260px, 100%);
    height: 92px;
    object-fit: contain;
    object-position: left center;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .24));
}

.footer-logo-snow {
    display: none;
    width: min(270px, 100%);
    height: 170px;
    object-fit: contain;
    object-position: left center;
}

body.snow-on .footer-logo-default {
    display: none;
}

body.snow-on .footer-logo-snow {
    display: block;
    filter: none;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}

.footer-socials a {
    display: inline-grid;
    place-items: center;
    width: 26px;
    height: 26px;
    margin: 0;
    color: var(--yellow);
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.footer-socials a:hover {
    transform: translateY(-2px);
    color: var(--green);
    background: transparent;
    box-shadow: none;
}

.footer-socials svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-socials a[aria-label="Facebook"] svg {
    fill: currentColor;
    stroke: none;
}

.site-footer h3 {
    margin: 0 0 14px;
    font-size: 13px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.site-footer p {
    color: rgba(254, 198, 13, .86);
    line-height: 1.6;
}

.site-footer a {
    display: block;
    color: var(--yellow);
    margin: 8px 0;
    font-weight: 800;
}

.site-footer .primary-btn {
    display: inline-flex;
    margin-top: 8px;
    color: #090b04;
}

.copyright {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 18px clamp(20px, 5vw, 72px);
    color: rgba(254, 198, 13, .82);
    border-top: 1px solid rgba(254, 198, 13, .18);
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    place-items: center;
    padding: 22px;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(10px);
}

.modal.open {
    display: grid;
}

.modal-panel {
    width: min(640px, 100%);
    padding: 34px;
}

.modal-panel h2 {
    margin: 0 0 22px;
    font-size: 36px;
    line-height: 1.05;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: var(--ice);
    color: #07100c;
    font-size: 26px;
    cursor: pointer;
}

.snow-layer {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    opacity: .96;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 255, 255, .98) 0 4px, transparent 5.4px),
        radial-gradient(circle at 31% 8%, rgba(230, 248, 255, .95) 0 3.2px, transparent 4.8px),
        radial-gradient(circle at 46% 28%, rgba(255, 255, 255, .96) 0 4.2px, transparent 5.8px),
        radial-gradient(circle at 72% 14%, rgba(218, 244, 255, .92) 0 3px, transparent 4.8px),
        radial-gradient(circle at 88% 34%, rgba(255, 255, 255, .95) 0 3.8px, transparent 5.4px),
        radial-gradient(circle at 20% 62%, rgba(255, 255, 255, .88) 0 2.4px, transparent 3.8px),
        radial-gradient(circle at 64% 74%, rgba(235, 250, 255, .88) 0 2.8px, transparent 4.2px);
    background-size: 220px 220px, 300px 300px, 390px 390px, 260px 260px, 430px 430px, 180px 180px, 340px 340px;
    filter: drop-shadow(0 1px 1px rgba(2, 8, 10, .38));
    animation: premiumSnow 9s linear infinite;
}

.snow-layer::before,
.snow-layer::after {
    content: "";
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 255, 255, .94) 0 2px, transparent 3.4px),
        radial-gradient(circle at 35% 28%, rgba(255, 255, 255, .86) 0 2.6px, transparent 4px),
        radial-gradient(circle at 58% 18%, rgba(229, 247, 255, .9) 0 3px, transparent 4.4px),
        radial-gradient(circle at 80% 46%, rgba(255, 255, 255, .9) 0 2.2px, transparent 3.8px);
    background-size: 210px 210px, 330px 330px, 260px 260px, 410px 410px;
    animation: premiumSnow 12s linear infinite;
}

.snow-layer::after {
    opacity: .6;
    filter: blur(.7px);
    animation-duration: 15s;
    animation-direction: reverse;
}

body.snow-on .snow-layer {
    display: block;
}

body.snow-on {
    background:
        radial-gradient(circle at 12% 0%, rgba(234, 247, 255, .42), transparent 34%),
        radial-gradient(circle at 86% 18%, rgba(255, 255, 255, .24), transparent 32%),
        linear-gradient(180deg, #9fbccc 0%, #7597a7 44%, #4f6d7a 100%);
}

body.snow-on .snow-surface {
    background: linear-gradient(180deg, rgba(255, 255, 255, .99), rgba(226, 247, 255, .98)), radial-gradient(circle at 18% 0, rgba(255, 255, 255, .96), transparent 42%);
    box-shadow: 0 20px 55px rgba(178, 225, 248, .34), inset 0 1px 0 rgba(255, 255, 255, .9);
    border-color: rgba(163, 217, 241, .7);
    color: #07100c;
}

body.snow-on .main-nav a,
body.snow-on .snow-control {
    color: #07100c;
}

body.snow-on .main-nav a.active,
body.snow-on .main-nav a:hover {
    color: var(--green);
}

body.snow-on .brand .logo-default {
    display: none;
}

body.snow-on .brand .logo-snow {
    display: block;
    background: transparent;
    box-shadow: none;
}

body.snow-on .footer-art {
    display: block;
    opacity: .09;
    filter: brightness(0) saturate(100%) invert(30%) sepia(64%) saturate(1030%) hue-rotate(105deg) brightness(88%) contrast(88%);
}

body.snow-on .footer-content,
body.snow-on .site-footer h3,
body.snow-on .site-footer p,
body.snow-on .site-footer a,
body.snow-on .copyright {
    color: var(--green);
}

body.snow-on .copyright {
    border-top-color: rgba(19, 134, 60, .22);
}

body.snow-on .site-header {
    border-bottom-color: rgba(205, 238, 255, .64);
}

body.snow-on .image-card,
body.snow-on .package-card,
body.snow-on .blog-card,
body.snow-on .reel-card,
body.snow-on .journey-video-card,
body.snow-on .feature,
body.snow-on .content-card,
body.snow-on .stats-panel,
body.snow-on .modal-panel,
body.snow-on .trip-search,
body.snow-on .experience-strip,
body.snow-on .snow-banner {
    border-color: rgba(205, 238, 255, .42);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .36), inset 0 1px 0 rgba(255, 255, 255, .18), 0 0 32px rgba(205, 238, 255, .08);
}

body.snow-on .image-card:hover,
body.snow-on .package-card:hover,
body.snow-on .blog-card:hover,
body.snow-on .reel-card:hover,
body.snow-on .journey-video-card:hover,
body.snow-on .feature:hover,
body.snow-on .content-card:hover {
    border-color: rgba(19, 134, 60, .34);
    box-shadow: 0 30px 80px rgba(145, 205, 230, .32), 0 0 0 1px rgba(19, 134, 60, .08);
}

body.snow-on .primary-btn,
body.snow-on .plan-btn,
body.snow-on .trip-search button,
body.snow-on .package-card a {
    box-shadow: 0 14px 30px rgba(254, 198, 13, .18), 0 0 22px rgba(205, 238, 255, .22);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}

body.snow-on .snow-control::before {
    content: "Winter active";
    color: var(--green);
    font-size: 10px;
    letter-spacing: .12em;
}

@keyframes premiumSnow {
    from {
        background-position: 0 -260px, 0 -340px, 0 -430px, 0 -300px, 0 -480px, 0 -220px, 0 -390px;
    }
    to {
        background-position: 42px 260px, -34px 340px, 38px 430px, -28px 300px, 30px 480px, -20px 220px, 26px 390px;
    }
}

body.snow-on .edge-snow::before {
    content: "";
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    top: 0;
    height: 18px;
    pointer-events: none;
    border-radius: 0 0 18px 18px;
    background: radial-gradient(22px 10px at 10% 0, rgba(255, 255, 255, .9) 48%, transparent 54%), radial-gradient(31px 14px at 31% 0, rgba(246, 252, 255, .84) 48%, transparent 54%), radial-gradient(23px 11px at 52% 0, rgba(255, 255, 255, .88) 48%, transparent 54%), radial-gradient(34px 15px at 76% 0, rgba(241, 250, 255, .82) 48%, transparent 54%), radial-gradient(22px 10px at 94% 0, rgba(255, 255, 255, .84) 48%, transparent 54%), linear-gradient(180deg, rgba(255, 255, 255, .7), rgba(232, 247, 255, .2) 72%, rgba(232, 247, 255, 0));
    filter: drop-shadow(0 4px 8px rgba(205, 238, 255, .26));
    opacity: .82;
}

.hero-slider.edge-snow::before {
    display: none;
}

body.snow-on .hero-slider::after {
    content: "SNOW MODE ACTIVE";
    position: absolute;
    right: clamp(24px, 5vw, 72px);
    bottom: 56px;
    z-index: 4;
    padding: 10px 16px;
    color: #07100c;
    background: rgba(234, 247, 255, .86);
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    box-shadow: 0 12px 30px rgba(205, 238, 255, .2);
}

@media (max-width: 1260px) {
    .site-header {
        flex-wrap: wrap;
        height: auto;
        min-height: auto;
        overflow: visible;
    }
    .menu-toggle {
        display: inline-grid;
        place-items: center;
        order: 2;
        margin-left: auto;
    }
    .main-nav {
        display: none;
        order: 5;
        width: 100%;
        height: auto;
        min-height: 0;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        margin: 0;
    }
    .main-nav.open {
        display: grid;
    }
    .main-nav a {
        padding: 16px 0;
        text-align: center;
        white-space: normal;
    }
    .plan-btn {
        order: 3;
        margin-left: 0;
    }
    .snow-control {
        order: 4;
    }
    .trip-search {
        grid-template-columns: 1fr 1fr;
        margin-top: 22px;
    }
    .trip-search>div,
    .trip-search button {
        grid-column: 1 / -1;
    }
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .experience-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 250px;
    }
    .journey-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .two-col {
        grid-template-columns: 1fr;
    }
    .stats-panel {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 980px) {
    .trip-search {
        grid-template-columns: 1fr;
        margin-inline: 14px;
    }
    .trip-search>div,
    .trip-search label,
    .trip-search button {
        grid-column: 1 / -1;
    }
    .experience-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 1340px) {
    .snow-control span {
        display: none;
    }
    .plan-btn {
        padding-inline: 16px;
    }
}

@media (max-width: 720px) {
    .site-header {
        display: grid;
        grid-template-columns: minmax(118px, 1fr) 44px 48px;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        height: auto;
        min-height: 58px;
    }
    .brand {
        width: 140px;
        min-width: 0;
        max-width: 140px;
    }
    .brand img {
        width: 140px !important;
        height: 38px !important;
        max-width: 140px !important;
        max-height: 38px !important;
    }
    .plan-btn {
        display: none;
    }
    .menu-toggle {
        grid-column: 2;
        margin-left: 0;
        width: 42px;
        height: 42px;
        justify-self: center;
    }
    .snow-control {
        grid-column: 3;
        justify-self: end;
    }
    .snow-control i {
        width: 42px;
        height: 24px;
    }
    .snow-control i::after {
        width: 18px;
        height: 18px;
    }
    .snow-control input:checked+i::after {
        transform: translateX(18px);
    }
    .main-nav {
        grid-column: 1 / -1;
        grid-template-columns: 1fr;
        width: 100%;
        margin-top: 6px;
        border-top: 1px solid rgba(254, 198, 13, .18);
    }
    .main-nav.open {
        display: grid;
    }
    .main-nav a {
        padding: 13px 8px;
        font-size: 12px;
        text-align: left;
    }
    .snow-control span {
        display: none;
    }
    .snow-control::before {
        display: none;
    }
    .hero-slider {
        min-height: 520px;
    }
    .slide {
        padding: 34px 18px 96px;
        align-items: end;
    }
    .slide h1,
    .slide h2 {
        font-size: clamp(36px, 12vw, 48px);
    }
    .slide p:not(.eyebrow) {
        font-size: 15px;
        max-width: 100%;
    }
    .hero-actions {
        gap: 10px;
        margin-top: 18px;
    }
    .hero-actions .primary-btn,
    .hero-actions .ghost-btn {
        width: 100%;
    }
    .primary-btn,
    .ghost-btn,
    .trip-search button,
    .package-card a {
        min-height: 42px;
        padding-inline: 16px;
        font-size: 11px;
    }
    .slider-dots {
        bottom: 28px;
        left: 18px;
    }
    .slider-dots button {
        width: 30px;
    }
    .trip-search {
        margin: 18px 12px 0;
        padding: 16px;
        border-radius: 16px;
    }
    .content-card {
        padding: 26px 20px;
    }
    .content-card h2 {
        font-size: 32px;
    }
    .stats-panel {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px;
    }
    .stats-panel div {
        min-height: 104px;
    }
    .page-hero {
        min-height: 320px;
        padding: 72px 18px 44px;
    }
    .page-hero h1 {
        font-size: clamp(34px, 12vw, 48px);
    }
    .page-hero p {
        font-size: 15px;
    }
    .trip-search h2 {
        font-size: 22px;
    }
    .trip-search,
    .destination-grid,
    .package-grid,
    .blog-grid,
    .reels-grid,
    .journey-video-grid,
    .feature-grid,
    .experience-gallery,
    .experience-strip,
    .two-col,
    .stats-panel,
    .footer-content,
    .footer-gallery {
        grid-template-columns: 1fr;
    }
    .experience-strip {
        margin-inline: 14px;
        padding: 12px;
    }
    .experience-strip a {
        min-height: 76px;
        padding: 16px 12px;
        font-size: 12px;
    }
    .experience-gallery {
        grid-auto-rows: auto;
        gap: 14px;
    }
    .experience-card,
    .experience-card.large,
    .experience-card.wide {
        grid-column: auto;
        grid-row: auto;
        min-height: 320px;
    }
    .experience-card div {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }
    .journey-video-card,
    .journey-video-card video {
        min-height: 420px;
    }
    .section-head {
        grid-template-columns: 1fr;
    }
    .package-card,
    .blog-card {
        grid-template-rows: auto 1fr;
    }
    .package-card img,
    .blog-card img,
    .image-card img {
        height: 240px;
    }
    .package-card img[src^="assets/manali-"],
    .package-card img[src^="assets/spiti-"] {
        height: auto !important;
        aspect-ratio: 4 / 5;
    }
    .package-grid {
        display: flex;
        grid-template-columns: none;
        gap: 16px;
        padding-bottom: 16px;
        margin-inline: -4px;
    }
    .package-card {
        flex-basis: min(82vw, 310px);
    }
    .footer-gallery img {
        height: 190px;
    }
    .footer-content {
        gap: 24px;
        padding: 34px 18px;
    }
    .footer-logo {
        width: min(230px, 82vw);
        height: 76px;
    }
    .footer-logo-snow {
        width: min(220px, 82vw);
        height: 140px;
    }
    .footer-socials {
        gap: 14px;
        flex-wrap: wrap;
    }
    .footer-socials a {
        width: 26px;
        height: 26px;
    }
    .footer-art {
        width: 280px;
        max-width: 76%;
        height: auto;
        left: 50%;
        right: auto;
        top: 54%;
        bottom: auto;
        opacity: .12;
        transform: translate(-50%, -50%);
    }
    .modal {
        padding: 14px;
        align-items: start;
        overflow-y: auto;
    }
    .modal-panel {
        max-height: calc(100vh - 28px);
        overflow-y: auto;
        padding: 26px 18px;
    }
    .modal-panel h2 {
        font-size: 30px;
    }
    body.snow-on .hero-slider::after {
        display: none;
    }
}

@media (max-width: 420px) {
    .site-header {
        grid-template-columns: minmax(104px, 1fr) 40px 44px;
        padding-inline: 10px;
    }
    .brand {
        width: 124px;
        max-width: 124px;
    }
    .brand img {
        width: 124px !important;
        height: 34px !important;
        max-width: 124px !important;
        max-height: 34px !important;
    }
    .menu-toggle {
        width: 38px;
        height: 38px;
    }
    .snow-control i {
        width: 40px;
        height: 23px;
    }
    .snow-control i::after {
        width: 17px;
        height: 17px;
    }
    .snow-control input:checked+i::after {
        transform: translateX(17px);
    }
    .slide h1,
    .slide h2 {
        font-size: 34px;
    }
    .section {
        padding-inline: 14px;
    }
    .section-head h2,
    .content-card h2 {
        font-size: 28px;
    }
    .stats-panel strong {
        font-size: 30px;
    }
    .package-card {
        flex-basis: 84vw;
    }
    .footer-gallery img {
        height: 150px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .main-nav a:hover,
    .plan-btn:hover,
    .primary-btn:hover,
    .ghost-btn:hover,
    .trip-search button:hover,
    .package-card a:hover,
    .image-card:hover,
    .package-card:hover,
    .blog-card:hover,
    .reel-card:hover,
    .feature:hover,
    .content-card:hover,
    .image-card:hover img,
    .package-card:hover img,
    .blog-card:hover img,
    .reel-card:hover img {
        transform: none;
    }
}


.trip-game-section {
    background:
        radial-gradient(circle at 78% 14%, rgba(254, 198, 13, .16), transparent 30%),
        linear-gradient(180deg, #07331b 0%, #04170d 100%);
}

.intro-drive {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(14px, 3vw, 34px);
    background:
        radial-gradient(circle at 15% 12%, rgba(254, 198, 13, .18), transparent 32%),
        radial-gradient(circle at 84% 8%, rgba(205, 238, 255, .2), transparent 34%),
        linear-gradient(180deg, rgba(2, 8, 5, .96), rgba(3, 22, 12, .98));
    backdrop-filter: blur(10px);
}

body.show-intro-drive {
    overflow: hidden;
}

body.show-intro-drive .intro-drive {
    display: flex;
}

.intro-drive-card {
    width: min(1180px, 100%);
    max-height: calc(100vh - 28px);
    overflow: auto;
}

.intro-drive .game-copy h3 {
    font-size: clamp(2.3rem, 5vw, 5.5rem);
}

.intro-drive .drive-stage {
    min-height: min(560px, 62vh);
}

.mountain-game {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(420px, 1.28fr);
    gap: clamp(20px, 3vw, 42px);
    padding: clamp(22px, 4vw, 46px);
    border: 1px solid rgba(254, 198, 13, .24);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(19, 134, 60, .24), rgba(2, 13, 8, .92)),
        #06180d;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
    overflow: hidden;
}

.game-copy {
    align-self: center;
}

.game-copy h3 {
    max-width: 560px;
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(2.25rem, 5vw, 5rem);
    line-height: .94;
    letter-spacing: 0;
}

.game-copy p:not(.eyebrow) {
    max-width: 520px;
    color: rgba(255, 255, 255, .76);
    font-size: 1.05rem;
}

.drive-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.drive-controls button {
    min-width: 104px;
    min-height: 48px;
    border: 1px solid rgba(254, 198, 13, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-weight: 950;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.drive-controls button:hover {
    transform: translateY(-3px);
    background: var(--yellow);
    color: #061d10;
    box-shadow: 0 14px 34px rgba(254, 198, 13, .22);
}

.drive-stage {
    position: relative;
    min-height: clamp(430px, 46vw, 560px);
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(234, 247, 255, .28);
    background:
        radial-gradient(circle at 72% 18%, rgba(255, 236, 158, .5), transparent 17%),
        linear-gradient(180deg, #35596a 0%, #7190a0 27%, #c8d8de 42%, #516e61 43%, #173d2a 74%, #061611 100%);
    box-shadow: inset 0 -90px 130px rgba(0, 0, 0, .38), inset 0 0 80px rgba(2, 10, 12, .28), 0 24px 60px rgba(0, 0, 0, .24);
    outline: none;
}

.drive-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 35%),
        radial-gradient(circle at 50% 82%, rgba(255, 255, 255, .14), transparent 34%),
        linear-gradient(90deg, rgba(3, 18, 13, .46), transparent 28%, transparent 72%, rgba(3, 18, 13, .46));
    mix-blend-mode: screen;
    opacity: .62;
}

.drive-stage::after {
    content: "";
    position: absolute;
    inset: auto -8% 0;
    z-index: 2;
    height: 46%;
    background:
        radial-gradient(ellipse at 18% 100%, rgba(6, 42, 26, .88), transparent 46%),
        radial-gradient(ellipse at 86% 100%, rgba(5, 34, 23, .9), transparent 44%),
        linear-gradient(180deg, rgba(28, 79, 48, .2), rgba(3, 22, 13, .92));
    pointer-events: none;
}

.finish-gate {
    position: absolute;
    z-index: 7;
    left: 50%;
    top: -92px;
    min-width: 210px;
    padding: 12px 18px;
    transform: translateX(-50%);
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .28), transparent 34%),
        linear-gradient(135deg, var(--green), #063f1d);
    color: #061d10;
    border: 2px solid rgba(254, 198, 13, .9);
    font-size: 1rem;
    font-weight: 950;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .3);
    box-shadow: 0 18px 38px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .24);
    opacity: 0;
}

.finish-gate::before,
.finish-gate::after {
    content: "";
    position: absolute;
    top: 38px;
    width: 7px;
    height: 82px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f7fff9, #a4b8bd);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .08);
}

.finish-gate::before {
    left: 18px;
}

.finish-gate::after {
    right: 18px;
}

.drive-hud {
    position: absolute;
    z-index: 9;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #061d10;
    font-size: .78rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.drive-hud span {
    border-radius: 999px;
    background: rgba(3, 18, 13, .72);
    color: rgba(255, 255, 255, .9);
    border: 1px solid rgba(255, 255, 255, .18);
    padding: 10px 13px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.drive-hud strong {
    color: var(--yellow);
}

.sky-glow {
    position: absolute;
    top: 42px;
    right: 14%;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 244, 190, .95) 0 18%, rgba(254, 198, 13, .28) 19% 42%, transparent 64%);
    filter: blur(2px);
    opacity: .78;
}

.mountain-range {
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: 39%;
    height: 46%;
    clip-path: polygon(0 78%, 8% 56%, 16% 69%, 27% 18%, 38% 65%, 49% 30%, 62% 71%, 73% 14%, 85% 61%, 100% 34%, 100% 100%, 0 100%);
}

.mountain-back {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .92) 0 15%, transparent 16% 100%),
        linear-gradient(160deg, #e7f2f5 0%, #8faab2 38%, #486a77 72%, #314b56 100%);
    opacity: .92;
    filter: saturate(.86);
}

.mountain-front {
    bottom: 31%;
    height: 38%;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .9) 0 12%, transparent 13% 100%),
        linear-gradient(135deg, #f8ffff 0%, #789186 23%, #2f5b3c 58%, #102b1d 100%);
    clip-path: polygon(0 84%, 8% 59%, 18% 75%, 27% 26%, 38% 77%, 50% 39%, 60% 83%, 72% 20%, 84% 74%, 100% 43%, 100% 100%, 0 100%);
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .28));
}

.road {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: -18%;
    width: 54%;
    height: 82%;
    transform: translateX(-50%) perspective(520px) rotateX(60deg);
    transform-origin: bottom center;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .28) 0 2%, transparent 3% 97%, rgba(255, 255, 255, .28) 98% 100%),
        linear-gradient(90deg, #151819 0 6%, #303739 7% 48%, #222729 49% 51%, #303739 52% 93%, #151819 94% 100%);
    clip-path: polygon(41% 0, 59% 0, 100% 100%, 0 100%);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, .08), 0 -16px 60px rgba(0, 0, 0, .42);
}

.road span {
    position: absolute;
    left: 50%;
    width: 7px;
    height: 62px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .52));
    transform: translateX(-50%);
    animation: roadLine 900ms linear infinite;
}

.road span:nth-child(1) { top: -10%; }
.road span:nth-child(2) { top: 18%; }
.road span:nth-child(3) { top: 46%; }
.road span:nth-child(4) { top: 74%; }

.road-edge {
    position: absolute;
    z-index: 4;
    bottom: 0;
    width: 30%;
    height: 44%;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(234, 247, 255, .32), transparent 54%),
        linear-gradient(180deg, rgba(255, 255, 255, .18), rgba(19, 134, 60, .18));
    opacity: .48;
    filter: blur(20px);
}

.road-edge.left { left: 1%; transform: skewX(-18deg); }
.road-edge.right { right: 1%; transform: skewX(18deg); }

.drive-car {
    position: absolute;
    z-index: 10;
    left: 50%;
    bottom: 34px;
    width: 82px;
    height: 126px;
    transform: translateX(-50%);
    border-radius: 30px 30px 16px 16px;
    background:
        radial-gradient(circle at 24% 78%, rgba(254, 198, 13, .95) 0 4px, transparent 5px),
        radial-gradient(circle at 76% 78%, rgba(254, 198, 13, .95) 0 4px, transparent 5px),
        linear-gradient(90deg, transparent 0 12px, rgba(255, 255, 255, .18) 13px 18px, transparent 19px 64px, rgba(255, 255, 255, .18) 65px 70px, transparent 71px),
        linear-gradient(180deg, #182322 0%, #101817 42%, #07100f 100%);
    border: 2px solid rgba(255, 255, 255, .18);
    box-shadow: 0 22px 36px rgba(0, 0, 0, .48), inset 0 2px 0 rgba(255, 255, 255, .18), inset 0 -18px 24px rgba(0, 0, 0, .38);
    transition: left 150ms ease;
}

.drive-car::before {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    top: 16px;
    height: 39px;
    border-radius: 18px 18px 10px 10px;
    background:
        linear-gradient(90deg, transparent 48%, rgba(255, 255, 255, .25) 49% 51%, transparent 52%),
        linear-gradient(180deg, rgba(224, 246, 255, .92), rgba(34, 80, 91, .94));
    border: 1px solid rgba(255, 255, 255, .3);
}

.drive-car::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 10px;
    height: 14px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 20% 50%, rgba(254, 198, 13, .95) 0 5px, transparent 6px),
        radial-gradient(circle at 80% 50%, rgba(254, 198, 13, .95) 0 5px, transparent 6px),
        linear-gradient(90deg, #050807, #1b2421, #050807);
}

.drive-car i,
.drive-car i::before {
    position: absolute;
    bottom: 26px;
    width: 13px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(180deg, #050706, #171b19);
    content: "";
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .06);
}

.drive-car i { left: -7px; }
.drive-car i::before { left: 83px; }

.drive-obstacle {
    position: absolute;
    z-index: 7;
    left: 50%;
    top: -70px;
    width: 58px;
    height: 44px;
    transform: translateX(-50%);
    border-radius: 12px 12px 12px 2px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .18), transparent 42%),
        linear-gradient(135deg, #d3a000, var(--yellow));
    border: 2px solid rgba(255, 255, 255, .72);
    box-shadow: 0 16px 30px rgba(0, 0, 0, .3);
}

.drive-obstacle::after {
    content: "";
    position: absolute;
    left: 9px;
    bottom: -50px;
    width: 6px;
    height: 50px;
    border-radius: 999px;
    background: linear-gradient(180deg, #f7fff9, #9cb2b9);
    box-shadow: 9px 48px 0 rgba(255, 255, 255, .16);
}

.mountain-game.playing .road span {
    animation-duration: 520ms;
}

.mountain-game.crashed .drive-stage {
    animation: crashPulse 420ms ease;
}

@keyframes roadLine {
    from { transform: translate(-50%, -120%); }
    to { transform: translate(-50%, 360%); }
}

@keyframes crashPulse {
    0%, 100% { filter: none; }
    45% { filter: saturate(1.5) contrast(1.2); }
}

@media (max-width: 980px) {
    .mountain-game {
        grid-template-columns: 1fr;
    }

    .drive-stage {
        min-height: 420px;
    }
}

/* Colorful dino-runner style game */
.intro-drive-card {
    overflow: visible;
}

.mountain-game {
    align-items: stretch;
}

.game-copy h3 {
    max-width: 620px;
    font-size: clamp(2rem, 4.2vw, 4.45rem);
    line-height: 1;
}

.game-copy p:not(.eyebrow) {
    max-width: 560px;
    line-height: 1.55;
}

.drive-controls {
    align-items: center;
    gap: 14px;
    padding-bottom: 4px;
}

.drive-controls button {
    min-width: 118px;
    min-height: 52px;
    padding: 0 24px;
    display: inline-grid;
    place-items: center;
    line-height: 1;
}

.drive-stage {
    min-height: clamp(380px, 38vw, 500px);
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, .88) 0 44px, transparent 45px),
        radial-gradient(circle at 74% 16%, rgba(254, 198, 13, .88) 0 56px, rgba(254, 198, 13, .16) 57px 94px, transparent 96px),
        linear-gradient(180deg, #68c7f2 0%, #a9e7ff 38%, #d7f6ff 39%, #84d27a 40%, #35a75f 72%, #13863c 100%);
    border: 3px solid rgba(255, 255, 255, .55);
    box-shadow: inset 0 -32px 0 rgba(9, 82, 38, .2), 0 26px 70px rgba(0, 0, 0, .28);
}

.drive-stage::before {
    z-index: 4;
    opacity: .86;
    mix-blend-mode: normal;
    background:
        radial-gradient(ellipse at 18% 76%, rgba(255, 255, 255, .72), transparent 11%),
        radial-gradient(ellipse at 52% 72%, rgba(255, 255, 255, .62), transparent 12%),
        radial-gradient(ellipse at 82% 77%, rgba(255, 255, 255, .6), transparent 10%),
        linear-gradient(180deg, transparent 64%, rgba(3, 52, 24, .24) 65%, rgba(3, 52, 24, .34) 100%);
}

.drive-stage::after {
    z-index: 5;
    inset: auto 0 0;
    height: 86px;
    background:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .18) 0 22px, transparent 23px 58px),
        linear-gradient(180deg, #2b2f30, #171b1b);
    border-top: 8px solid rgba(254, 198, 13, .9);
}

.mountain-range {
    left: -4%;
    right: -4%;
    bottom: 31%;
    height: 44%;
    clip-path: polygon(0 88%, 10% 54%, 18% 74%, 29% 22%, 41% 78%, 52% 36%, 63% 78%, 74% 26%, 85% 70%, 100% 40%, 100% 100%, 0 100%);
}

.mountain-back {
    background:
        linear-gradient(135deg, #ffffff 0 14%, transparent 15%),
        linear-gradient(145deg, #d5f5ff, #69a5c5 54%, #357198);
    opacity: .82;
    animation: runnerScenery 24s linear infinite;
}

.mountain-front {
    bottom: 24%;
    height: 34%;
    background:
        linear-gradient(135deg, #fff 0 12%, transparent 13%),
        linear-gradient(145deg, #f7fff5, #2f9e58 54%, #0b5f2a);
    animation: runnerScenery 16s linear infinite;
}

.sky-glow {
    top: 40px;
    right: 12%;
    width: 120px;
    height: 120px;
    opacity: .92;
    filter: none;
}

.road {
    z-index: 6;
    left: 0;
    right: 0;
    bottom: 42px;
    width: 100%;
    height: 18px;
    transform: none;
    background: repeating-linear-gradient(90deg, #fff 0 46px, transparent 47px 92px);
    clip-path: none;
    box-shadow: none;
    animation: runnerRoad 760ms linear infinite;
}

.road span {
    display: none;
}

.road-edge {
    display: none;
}

.drive-car {
    left: min(130px, 22%);
    bottom: 78px;
    width: 92px;
    height: 58px;
    transform: translateY(0);
    border-radius: 22px 28px 14px 14px;
    background:
        radial-gradient(circle at 24% 88%, #101514 0 10px, #f2f6f3 11px 14px, transparent 15px),
        radial-gradient(circle at 78% 88%, #101514 0 10px, #f2f6f3 11px 14px, transparent 15px),
        linear-gradient(90deg, transparent 0 10px, rgba(255, 255, 255, .25) 11px 16px, transparent 17px 100%),
        linear-gradient(135deg, #fec60d 0 48%, #13863c 49% 100%);
    border: 3px solid rgba(255, 255, 255, .78);
    box-shadow: 0 14px 0 rgba(0, 0, 0, .12), 0 20px 34px rgba(0, 0, 0, .28);
    transition: none;
}

.drive-car::before {
    left: 34px;
    right: 16px;
    top: 8px;
    height: 22px;
    border-radius: 14px 18px 6px 6px;
    background: linear-gradient(180deg, #eafaff, #6bc8ef);
    border: 2px solid rgba(255, 255, 255, .82);
}

.drive-car::after {
    left: 12px;
    right: 12px;
    bottom: 8px;
    height: 8px;
    background: rgba(6, 29, 16, .75);
}

.drive-car i,
.drive-car i::before {
    display: none;
}

.mountain-game.jumping .drive-car {
    box-shadow: 0 28px 0 rgba(0, 0, 0, .07), 0 34px 38px rgba(0, 0, 0, .22);
}

.drive-obstacle {
    z-index: 9;
    top: auto;
    bottom: 82px;
    width: 44px;
    height: 58px;
    transform: none;
    border: 3px solid rgba(255, 255, 255, .74);
    border-radius: 10px 10px 6px 6px;
    background:
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, .55) 0 5px, transparent 6px),
        linear-gradient(180deg, #fec60d, #df9700);
    box-shadow: 0 12px 0 rgba(0, 0, 0, .08), 0 18px 26px rgba(0, 0, 0, .22);
}

.drive-obstacle::after {
    display: none;
}

.finish-gate {
    top: auto;
    bottom: 150px;
    min-width: 190px;
    transform: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #13863c, #075827);
    color: #fff;
}

.finish-gate::before,
.finish-gate::after {
    top: 43px;
    height: 88px;
}

.drive-hud {
    z-index: 12;
}

@keyframes runnerRoad {
    from { background-position: 0 0; }
    to { background-position: -92px 0; }
}

@keyframes runnerScenery {
    from { transform: translateX(0); }
    to { transform: translateX(-8%); }
}

@media (max-width: 720px) {
    .intro-drive {
        align-items: flex-start;
        overflow: auto;
    }

    .intro-drive-card {
        max-height: none;
    }

    .game-copy h3 {
        font-size: clamp(2rem, 11vw, 3.1rem);
    }

    .drive-controls {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .drive-controls button {
        width: 100%;
        min-width: 0;
    }

    .drive-stage {
        min-height: 340px;
    }

    .drive-car {
        left: 64px;
        width: 78px;
        height: 50px;
    }
}
