:root {
    --bg: #f7f5f1;
    --surface: #fffdf9;
    --surface-soft: #f2eee6;
    --text: #1f2a2d;
    --muted: #5b6a6f;
    --heading: #142427;
    --border: #ded7cb;
    --accent: #b86f3f;
    --accent-strong: #975730;
    --header-bg: rgba(20, 36, 39, 0.92);
    --header-bg-solid: #142427;
    --header-link: #e5ebe5;
    --max-width: 1140px;
}

html {
    scrollbar-gutter: stable;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background: radial-gradient(circle at top right, #fcfaf6, var(--bg) 42%);
    color: var(--text);
    line-height: 1.6;
    opacity: 1;
    transition: opacity 180ms ease;
}

body.is-leaving {
    opacity: 0;
}

/* Site search modal open — block scrolling on the page behind the dialog */
html.site-search-scroll-lock,
body.site-search-scroll-lock {
    overflow: hidden;
    overscroll-behavior: none;
}

body.site-search-scroll-lock {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--max-width), 92%);
    margin-inline: auto;
}

.section {
    padding: 0 0 3rem;
}

.stack > * + * {
    margin-top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: var(--header-bg);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #f4f7f2;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.95rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 700;
}

.brand-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.brand-text {
    line-height: 1;
}

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: transparent;
    color: inherit;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
    margin-inline: auto;
}

.site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--header-bg-solid);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-nav.is-open {
    display: block;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0.9rem 1rem;
    display: grid;
    gap: 0.25rem;
}

.nav-item {
    position: relative;
}

.nav-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--header-link);
    padding: 0.42rem 0.2rem;
    font-size: 0.93rem;
    transition: color 160ms ease;
}

.nav-list a.is-active,
.nav-list a:hover {
    color: #ffd9c4;
}

.dropdown-panel {
    display: none;
}

.has-dropdown.dropdown-open > .dropdown-panel {
    display: block;
}

.has-dropdown.dropdown-open > a .nav-arrow {
    transform: rotate(180deg) translateY(1px);
}

.nav-arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid currentColor;
    opacity: 0.9;
    transform: translateY(1px);
    transition: transform 180ms ease;
}

.dropdown-list a {
    display: block;
    padding: 0.45rem 0.2rem;
}

.blog-grid {
    display: grid;
    gap: 0.75rem;
}

.blog-tile {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 110px;
}

.blog-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 280ms ease;
}

.blog-tile span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    font-size: 1.02rem;
    line-height: 1.3;
    font-weight: 700;
    color: #f9fbfd;
    background: linear-gradient(180deg, transparent, rgba(13, 21, 28, 0.85));
    padding: 1rem 0.7rem 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.blog-tile:hover img,
.blog-tile:focus-visible img {
    transform: scale(1.08);
}

@media (max-width: 859px) {
    .site-nav {
        max-height: calc(100vh - 90px);
        overflow-y: auto;
    }

    .nav-list {
        padding: 1rem 0.9rem 1.5rem;
        gap: 0.45rem;
    }

    .nav-list > .nav-item > a {
        width: 100%;
        justify-content: center;
        font-size: 1.02rem;
        padding: 0.58rem 0.2rem;
    }

    .has-dropdown > .dropdown-panel {
        position: static;
        min-width: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        padding: 0.3rem 0 0.5rem;
        transform: none;
    }

    .dropdown-fullwidth {
        width: auto;
        left: auto;
        right: auto;
        border: 0;
        border-radius: 0;
        padding: 0;
    }

    .dropdown-inner {
        width: 100%;
    }

    .destinations-layout {
        display: block;
    }

    .destination-feature {
        display: none;
    }

    .destinations-groups {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.95rem;
    }

    .destination-group h4 {
        margin: 0.6rem 0 0.35rem;
        text-align: center;
        color: #f1bd6f;
    }

    .destination-group ul {
        list-style: none;
        margin: 0;
        padding: 0;
        gap: 0.3rem;
    }

    .destination-group a {
        text-align: center;
        display: block;
    }

    .dropdown-list {
        width: auto;
    }

    .dropdown-list a {
        text-align: center;
        font-size: 0.97rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .blog-tile {
        min-height: 92px;
        border-radius: 6px;
    }

    .blog-tile span {
        font-size: 0.95rem;
        padding: 0.75rem 0.6rem 0.5rem;
    }

    .blog-tile:hover img,
    .blog-tile:focus-visible img {
        transform: scale(1.03);
    }
}

.announcement-bar {
    background: #e8dfd1;
    color: #4f3f31;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid #d8cdbc;
}

.announcement-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: center;
    justify-content: center;
    padding: 0.48rem 0;
}

.announcement-inner a {
    color: #965225;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    padding: 0.15em 0.45em;
    transition:
        color 0.2s ease,
        font-weight 0.15s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.announcement-inner a:hover {
    color: var(--accent-strong);
    font-weight: 800;
    background-color: rgba(184, 111, 63, 0.14);
    box-shadow: inset 0 0 0 1px rgba(151, 87, 48, 0.22);
}

.announcement-inner a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.announcement-link {
    transition: opacity 220ms ease;
}

.announcement-link.is-swapping {
    opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
    .announcement-link {
        transition: none;
    }
}

.hero-carousel {
    position: relative;
    min-height: 70vh;
    max-height: 720px;
    overflow: hidden;
    background: #1a2c30;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 700ms ease;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    min-height: inherit;
    display: flex;
    align-items: flex-end;
    padding-bottom: clamp(2.5rem, 6vw, 5rem);
    background:
        linear-gradient(180deg, rgba(13, 31, 35, 0.08) 20%, rgba(13, 31, 35, 0.68) 100%),
        linear-gradient(90deg, rgba(13, 31, 35, 0.38) 0%, rgba(13, 31, 35, 0.08) 70%);
}

.hero-title {
    margin: 0;
    color: #fcfbf7;
    font-size: clamp(1.6rem, 4vw, 2.9rem);
    line-height: 1.1;
    max-width: 700px;
}

.hero-title-static {
    display: inline-block;
    color: #ffd8bd;
    margin-right: 0.3rem;
}

.hero-title-dynamic {
    display: inline;
    color: #ffffff;
}

.hero-title-dynamic::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 0.95em;
    margin-left: 0.08em;
    background: rgba(255, 255, 255, 0.92);
    vertical-align: -0.1em;
    animation: hero-caret 850ms steps(1, end) infinite;
}

@keyframes hero-caret {
    50% {
        opacity: 0;
    }
}

.hero-dots {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.hero-dot {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
    padding: 0;
}

.hero-dot.is-active {
    background: #ffffff;
}

.section-expeditions {
    background: transparent;
    padding-top: clamp(1.6rem, 3vw, 2.6rem);
}

.section-header h2 {
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    color: var(--heading);
    font-size: clamp(1.2rem, 2.2vw, 1.75rem);
    letter-spacing: 0.03em;
}

.expedition-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.4rem;
}

.expedition-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 34px rgba(38, 41, 33, 0.08);
    transition: transform 240ms ease, box-shadow 240ms ease;
}

.expedition-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 40px rgba(38, 41, 33, 0.14);
}

.expedition-media {
    flex-shrink: 0;
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e4ddd0;
}

/* Absolutely positioned so intrinsic image dimensions cannot stretch this frame */
.expedition-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.expedition-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 1rem;
}

.expedition-body h3 {
    margin: 0;
    color: var(--heading);
}

.expedition-meta {
    margin: 0.45rem 0 0.5rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.expedition-body .btn {
    margin-top: auto;
    align-self: flex-start;
}

.btn {
    display: inline-block;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    background: var(--accent);
    color: #fff7ef;
    padding: 0.64rem 1rem;
}

.btn:hover {
    background: var(--accent-strong);
    color: #fff9f3;
}

.btn-secondary {
    background: var(--surface-soft);
    color: #314347;
}

.btn-secondary:hover {
    background: #e8dece;
    color: #1f2a2d;
}

.trip-cta {
    text-align: center;
    margin-top: 2rem;
    color: var(--heading);
}

.trip-cta h3 {
    margin: 0;
}

.trip-cta p {
    color: var(--muted);
}

.home-adventure-story {
    padding-top: 0.5rem;
}

.adventure-story-grid {
    display: grid;
    gap: 1rem;
}

.adventure-story-content {
    background: #2b2f35;
    color: #eef2f6;
    border-radius: 8px;
    padding: clamp(1.1rem, 2vw, 1.8rem);
    display: flex;
    flex-direction: column;
}

.adventure-story-content h2 {
    margin: 0 0 0.6rem;
    text-transform: uppercase;
    font-size: clamp(1.15rem, 2.2vw, 1.55rem);
    letter-spacing: 0.03em;
}

.adventure-story-content p {
    margin: 0 0 0.75rem;
    color: #d2dbe4;
}

.adventure-story-content .btn {
    align-self: flex-start;
}

.adventure-story-trust {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.adventure-story-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
}

.adventure-story-stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 0.55rem 0.6rem;
}

.adventure-story-stat strong {
    display: block;
    color: #f7c98b;
    font-size: 1.15rem;
    line-height: 1.1;
}

.adventure-story-stat span {
    display: block;
    color: #d9e4ef;
    font-size: 0.76rem;
    margin-top: 0.2rem;
}

.adventure-story-chips {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0.75rem 0 0;
    padding: 0;
}

.adventure-story-chips li {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    font-size: 0.75rem;
    color: #ecf2f8;
    padding: 0.25rem 0.6rem;
    background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 540px) {
    .adventure-story-stats {
        grid-template-columns: 1fr;
    }
}

.adventure-story-media img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    border-radius: 8px;
    object-fit: cover;
}

.home-upcoming-gallery {
    padding-top: 1.25rem;
}

.upcoming-gallery-header {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.upcoming-gallery-header h2 {
    margin: 0;
    color: var(--heading);
    font-size: clamp(1.3rem, 2.6vw, 2rem);
    text-transform: uppercase;
}

.upcoming-gallery-header p {
    margin: 0.55rem 0 0;
    color: var(--muted);
}

.upcoming-gallery-hero {
    position: relative;
    margin-top: 1rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(184, 111, 63, 0.22);
    background: #f5efe6;
    box-shadow: 0 10px 24px rgba(44, 53, 58, 0.1);
}

.upcoming-gallery-hero img {
    width: 100%;
    min-height: 250px;
    max-height: 460px;
    object-fit: cover;
}

.upcoming-gallery-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 1rem;
    color: #f6f9fb;
    background: linear-gradient(180deg, transparent, rgba(8, 18, 27, 0.82));
}

.upcoming-gallery-kicker {
    display: inline-block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #f0c27f;
}

.upcoming-gallery-overlay h3 {
    margin: 0.2rem 0 0;
    font-size: clamp(1rem, 2vw, 1.35rem);
    line-height: 1.2;
}

.upcoming-gallery-rail {
    margin-top: 0.8rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
}

.gallery-thumb {
    border: 1px solid rgba(15, 38, 46, 0.16);
    background: #fffdf9;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    text-align: left;
    cursor: pointer;
}

.gallery-thumb img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.gallery-thumb span {
    display: block;
    font-size: 0.84rem;
    font-weight: 600;
    color: #21363e;
    padding: 0.42rem 0.55rem 0.5rem;
}

.gallery-thumb.is-active {
    border-color: #b86f3f;
    box-shadow: 0 6px 18px rgba(184, 111, 63, 0.2);
}

.upcoming-gallery-actions {
    margin-top: 0.95rem;
}

.gallery-lightbox {
    width: min(920px, 92vw);
    border: 0;
    border-radius: 12px;
    padding: 1rem;
    background: #101c22;
    color: #e7eef3;
}

.gallery-lightbox::backdrop {
    background: rgba(4, 11, 15, 0.74);
}

.gallery-lightbox-close {
    position: static;
    display: block;
    margin: 0 0 0.55rem auto;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.4rem;
    cursor: pointer;
}

.gallery-lightbox figure {
    margin: 0;
}

.gallery-lightbox img {
    width: 100%;
    max-height: 68vh;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-lightbox figcaption {
    margin-top: 0.65rem;
}

.gallery-lightbox figcaption strong,
.gallery-lightbox figcaption span {
    display: block;
}

.gallery-lightbox figcaption strong {
    color: #f3f6f8;
}

.gallery-lightbox figcaption span {
    color: #c2d0d8;
    font-size: 0.92rem;
}

.gallery-lightbox-controls {
    margin-top: 0.8rem;
    display: flex;
    justify-content: flex-end;
    gap: 0.55rem;
}

.gallery-nav-text-btn {
    min-width: 132px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 640px) {
    .gallery-lightbox {
        width: 94vw;
        padding: 0.8rem;
    }

    .gallery-lightbox-controls {
        justify-content: stretch;
    }

    .gallery-nav-text-btn {
        flex: 1;
        min-width: 0;
    }
}

.home-trip-difference {
    padding-top: 1.2rem;
}

.trip-difference-grid {
    display: grid;
    gap: 1.1rem;
}

.trip-difference-intro {
    background: #fffaf2;
    border: 1px solid rgba(184, 111, 63, 0.24);
    border-radius: 12px;
    padding: clamp(1rem, 2vw, 1.45rem);
}

.trip-difference-intro h2 {
    margin: 0;
    color: #162831;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    line-height: 1.15;
}

.trip-difference-intro p {
    margin: 0.7rem 0 0.95rem;
    color: #3f525c;
}

.trip-difference-content {
    display: grid;
    gap: 1rem;
}

.trip-difference-story {
    display: grid;
    gap: 0.75rem;
}

.trip-difference-story p {
    margin: 0;
    color: #243742;
    line-height: 1.7;
}

.trip-difference-pillars {
    display: grid;
    gap: 0.7rem;
}

.trip-difference-pillar {
    background: #ffffff;
    border: 1px solid rgba(20, 36, 39, 0.14);
    border-radius: 10px;
    padding: 0.8rem 0.9rem;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.trip-difference-pillar:hover,
.trip-difference-pillar:focus-within {
    transform: translateY(-2px);
    border-color: rgba(184, 111, 63, 0.42);
    box-shadow: 0 10px 20px rgba(23, 34, 38, 0.09);
}

.trip-difference-pillar h3 {
    margin: 0;
    color: #1a2f39;
    font-size: 1rem;
}

.trip-difference-pillar p {
    margin: 0.35rem 0 0;
    color: #4a5d67;
    font-size: 0.91rem;
}

.home-destinations-showcase {
    padding-top: 1.1rem;
}

.destinations-showcase-header h2 {
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    color: var(--heading);
    font-size: clamp(1.25rem, 2.4vw, 1.9rem);
}

.destinations-showcase-grid {
    margin-top: 1rem;
    display: grid;
    gap: 0.8rem;
}

.destination-showcase-card {
    min-width: 0;
}

.destination-showcase-link {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(20, 36, 39, 0.12);
    box-shadow: 0 8px 18px rgba(23, 33, 38, 0.09);
}

.destination-showcase-link img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transform: scale(1);
    transition: transform 300ms ease;
}

.destination-showcase-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.55rem;
    padding: 0.7rem;
    background: linear-gradient(180deg, rgba(7, 15, 20, 0.08), rgba(7, 15, 20, 0.78));
}

.destination-showcase-overlay h3 {
    margin: 0;
    color: #ffffff;
    font-size: 1.15rem;
}

.destination-showcase-cta {
    display: inline-block;
    width: fit-content;
    font-size: 0.8rem;
    font-weight: 700;
    color: #2d241a;
    background: #efbf74;
    border-radius: 999px;
    padding: 0.34rem 0.64rem;
}

.destination-showcase-link:hover img,
.destination-showcase-link:focus-visible img {
    transform: scale(1.06);
}

.destinations-showcase-footer {
    margin-top: 1.1rem;
    text-align: center;
}

.destinations-showcase-footer p {
    margin: 0;
    color: #31454f;
}

.destinations-showcase-footer .btn {
    margin-top: 0.8rem;
}

.home-google-reviews {
    padding: 1.75rem 0;
    background: linear-gradient(180deg, #eef1ee 0%, #e8ebe8 100%);
    border-top: 1px solid rgba(26, 54, 66, 0.08);
    border-bottom: 1px solid rgba(26, 54, 66, 0.06);
}

.home-google-reviews-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem 1.75rem;
    text-align: center;
}

.home-google-reviews-headline {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 600;
    color: #3d4f56;
    letter-spacing: 0.02em;
}

.home-google-reviews-widget {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem 1rem;
    padding: 0.85rem 1.15rem;
    border-radius: 12px;
    background: rgba(255, 253, 249, 0.95);
    border: 1px solid rgba(26, 54, 66, 0.12);
    box-shadow: 0 8px 24px rgba(20, 36, 39, 0.06);
    color: inherit;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.home-google-reviews-widget:hover,
.home-google-reviews-widget:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(20, 36, 39, 0.1);
    border-color: rgba(66, 133, 244, 0.35);
    outline: none;
}

.home-google-reviews-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.home-google-reviews-logo {
    flex-shrink: 0;
    display: block;
}

.home-google-reviews-wordmark {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #5f6368;
}

.home-google-reviews-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    justify-content: center;
}

.home-google-reviews-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #3c4043;
}

.home-google-reviews-stars {
    display: inline-flex;
    gap: 0.08rem;
    line-height: 1;
}

.home-google-reviews-star {
    font-size: 0.95rem;
    color: #f5b301;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.home-google-reviews-cta {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-strong);
    border-left: 1px solid rgba(26, 54, 66, 0.15);
    padding-left: 1rem;
    margin-left: 0.15rem;
}

@media (max-width: 520px) {
    .home-google-reviews-widget {
        flex-direction: column;
        padding: 1rem 1.1rem;
    }

    .home-google-reviews-cta {
        border-left: 0;
        padding-left: 0;
        margin-left: 0;
        border-top: 1px solid rgba(26, 54, 66, 0.12);
        padding-top: 0.65rem;
        width: 100%;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-google-reviews-widget {
        transition: none;
    }

    .home-google-reviews-widget:hover,
    .home-google-reviews-widget:focus-visible {
        transform: none;
    }
}

.home-faq {
    padding-top: 1.3rem;
    padding-bottom: 0.6rem;
}

.home-faq-header h2 {
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    color: var(--heading);
    font-size: clamp(1.2rem, 2.3vw, 1.75rem);
}

.faq-grid {
    margin-top: 1.85rem;
    display: grid;
    gap: 0.9rem;
}

.faq-item {
    border: 1px solid rgba(26, 54, 66, 0.2);
    border-radius: 10px;
    background: #ffffff;
    color: #122531;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(24, 40, 48, 0.06);
    transition: box-shadow 180ms ease, border-color 180ms ease;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.85rem 0.95rem;
    font-weight: 700;
    color: #123040;
    background: linear-gradient(180deg, #f9fcfe, #f2f8fb);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item-icon {
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid #2b5b71;
    transition: transform 180ms ease;
}

.faq-item[open] .faq-item-icon {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 0.95rem;
    color: #304854;
    transition: max-height 280ms ease, opacity 220ms ease, padding 220ms ease;
}

.faq-answer p {
    margin: 0.6rem 0 0;
}

.faq-item[open] .faq-answer {
    opacity: 1;
    padding: 0.15rem 0.95rem 0.95rem;
}

.faq-item.is-closing .faq-answer {
    opacity: 0;
    padding: 0 0.95rem;
}

.faq-item[open] {
    border-color: rgba(184, 111, 63, 0.35);
    box-shadow: 0 12px 24px rgba(184, 111, 63, 0.12);
}

.faq-item:hover,
.faq-item:focus-within {
    border-color: rgba(62, 101, 120, 0.35);
    box-shadow: 0 10px 20px rgba(23, 44, 54, 0.1);
}

.home-faq-contact {
    margin-top: 2rem;
    text-align: center;
}

.home-faq-contact p {
    margin: 0;
    color: #2a3b45;
}

.home-faq-contact strong {
    color: #10222c;
}

.home-faq-contact .btn {
    margin-top: 1rem;
}

.home-work-with-us {
    background: radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.92), rgba(236, 240, 242, 0.96));
    padding: clamp(1.6rem, 3vw, 2.6rem) 0;
}

.work-with-us-inner {
    display: grid;
    gap: 1.25rem;
    align-items: center;
}

.work-with-us-media-frame {
    position: relative;
    display: block;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(184, 111, 63, 0.22);
    box-shadow: 0 12px 28px rgba(24, 40, 48, 0.1);
    background: #f7f1e8;
    transform: translateY(0);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.work-with-us-media-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 18, 24, 0) 35%, rgba(8, 18, 24, 0.55) 100%);
    opacity: 0;
    transition: opacity 240ms ease;
    pointer-events: none;
}

.work-with-us-media-frame img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transform: scale(1.02) translateY(0);
    transition: transform 420ms ease;
}

.work-with-us-media-frame:hover,
.work-with-us-media-frame:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(184, 111, 63, 0.42);
    box-shadow: 0 18px 36px rgba(24, 40, 48, 0.14);
}

.work-with-us-media-frame:hover::after,
.work-with-us-media-frame:focus-visible::after {
    opacity: 1;
}

.work-with-us-media-frame:focus-visible {
    outline: 2px solid rgba(184, 111, 63, 0.65);
    outline-offset: 3px;
}

.work-with-us-media-frame:hover img,
.work-with-us-media-frame:focus-visible img {
    transform: scale(1.06) translateY(-4px);
}

.work-with-us-copy {
    background: rgba(255, 253, 249, 0.92);
    border: 1px solid rgba(20, 36, 39, 0.08);
    border-radius: 14px;
    padding: clamp(1rem, 2vw, 1.45rem);
    box-shadow: 0 10px 26px rgba(24, 40, 48, 0.08);
}

.work-with-us-kicker {
    margin: 0;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 800;
    color: #1a2f39;
}

.work-with-us-copy h2 {
    margin: 0.45rem 0 0.65rem;
    color: #13242c;
    font-size: clamp(1.35rem, 2.6vw, 1.95rem);
    line-height: 1.15;
}

.work-with-us-copy p {
    margin: 0 0 0.65rem;
    color: #3a4f5a;
}

.work-with-us-cta {
    margin-top: 0.35rem;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.work-with-us-cta:hover,
.work-with-us-cta:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(184, 111, 63, 0.28);
}

.custom-expeditions {
    padding-top: 1.2rem;
}

.custom-expeditions-hero {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 1.4rem;
}

.custom-expeditions-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 800;
    color: #b86f3f;
}

.custom-expeditions-hero h1 {
    margin: 0.45rem 0 0.55rem;
    color: var(--heading);
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.12;
}

.custom-expeditions-lead {
    margin: 0;
    color: var(--muted);
    font-size: 1.02rem;
}

.custom-expeditions-actions {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
}

.custom-expeditions-grid {
    display: grid;
    gap: 0.9rem;
}

.custom-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 10px 22px rgba(24, 40, 48, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.custom-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(24, 40, 48, 0.1);
}

.custom-card-accent {
    background: linear-gradient(180deg, #fffdf9, #f6efe4);
}

.custom-card h2 {
    margin: 0 0 0.55rem;
    color: var(--heading);
    font-size: 1.1rem;
}

.custom-list,
.custom-steps {
    margin: 0;
    padding-left: 1.1rem;
    color: #2f3f48;
    display: grid;
    gap: 0.35rem;
}

.custom-expeditions-faq {
    margin-top: 1.4rem;
}

.custom-expeditions-faq h2 {
    margin: 0 0 0.75rem;
    text-align: center;
    color: var(--heading);
}

.custom-faq-grid {
    display: grid;
    gap: 0.65rem;
}

.custom-faq-item {
    border: 1px solid rgba(20, 36, 39, 0.12);
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(24, 40, 48, 0.06);
}

.custom-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 0.75rem 0.9rem;
    font-weight: 700;
    color: #1a2f39;
    background: linear-gradient(180deg, #fbfdff, #f2f6f8);
}

.custom-faq-item summary::-webkit-details-marker {
    display: none;
}

.custom-faq-item p {
    margin: 0;
    padding: 0 0.9rem 0.85rem;
    color: #3a4f5a;
}

[data-reveal-section] [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal-section].is-inview [data-reveal="left"] {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

[data-reveal-section].is-inview [data-reveal="right"] {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

[data-reveal-section] [data-reveal="left"] {
    transform: translateX(-14px) translateY(12px);
}

[data-reveal-section] [data-reveal="right"] {
    transform: translateX(14px) translateY(12px);
}

.home-why-travel {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
        url("/assets/images/Hunza/DJI_0923.jpg") center / cover no-repeat;
    padding-top: 1.25rem;
}

.why-travel-header {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.why-travel-header h2 {
    margin: 0;
    text-transform: uppercase;
    color: var(--heading);
    font-size: clamp(1.2rem, 2.4vw, 1.7rem);
}

.why-travel-header p {
    margin: 0.65rem 0 0;
    color: var(--muted);
}

.why-travel-grid {
    margin-top: 1.25rem;
    display: grid;
    gap: 0.9rem;
}

.why-travel-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.95rem;
}

.why-travel-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #d2c4ad;
    background: #fff8ef;
    display: grid;
    place-items: center;
    color: #8e5a31;
}

.why-travel-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-travel-card h3 {
    margin: 0.6rem 0 0.25rem;
    color: #1d2c37;
    font-size: 1rem;
}

.why-travel-card p {
    margin: 0;
    color: #475a65;
    font-size: 0.92rem;
}

.why-travel-cta {
    margin-top: 1.2rem;
    text-align: center;
}

.grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem;
}

.contact-form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-flash {
    margin: 0 0 1rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.45;
}

.form-flash--success {
    background: #eef6ee;
    border: 1px solid #98c598;
    color: #1f3d22;
}

.form-flash--error {
    background: #fdeeee;
    border: 1px solid #e0a0a0;
    color: #4a1f1f;
}

.home-newsletter-flash {
    margin-top: 1rem;
}

.contact-form {
    display: grid;
    gap: 0.8rem;
    max-width: 640px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 0.4rem;
    background: #fffdf9;
    color: var(--text);
    border: 1px solid #cfc4b5;
    border-radius: 10px;
    padding: 0.7rem;
}

.destinations-hero {
    position: relative;
    min-height: 62vh;
    overflow: hidden;
}

.destinations-hero-video {
    width: 100%;
    height: 62vh;
    max-height: 720px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.destinations-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(10, 20, 31, 0.22), rgba(10, 20, 31, 0.7));
}

.destinations-hero h1 {
    margin: 0;
    color: #f5c77d;
    font-size: clamp(2rem, 4vw, 3rem);
}

.destinations-intro {
    padding-top: 1.3rem;
    padding-bottom: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.destinations-jump-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 1.35rem;
    row-gap: 0.65rem;
}

.destinations-jump-links a {
    color: #9b6a2d;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.02em;
}

/* Plain vertical rules — solid stroke only (no gradients/shadows = no muddy blur). */
.destinations-jump-links a:not(:first-child) {
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
}

.destinations-jump-links a:not(:first-child)::before {
    content: "";
    flex-shrink: 0;
    box-sizing: border-box;
    width: 0;
    height: 1em;
    border-left: 1px solid #9b6a2d;
}

.destinations-jump-links a:hover {
    color: #7a5224;
}

.destinations-jump-links a:hover:not(:first-child)::before {
    border-left-color: #7a5224;
}

.destinations-jump-links a:focus-visible {
    outline: 2px solid rgba(155, 106, 45, 0.55);
    outline-offset: 3px;
    border-radius: 3px;
}

.destination-region {
    padding-bottom: 1.3rem;
}

html.page-destinations {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html.page-destinations {
        scroll-behavior: auto;
    }
}

html.page-destinations .destination-region {
    scroll-margin-top: 5.5rem;
}

.destination-region h2 {
    color: #b68a4a;
    font-size: 1.35rem;
    margin-bottom: 0.7rem;
}

.destination-region-list {
    display: grid;
    gap: 0.75rem;
}

.destination-banner-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.destination-banner-card img {
    width: 100%;
    min-height: 178px;
    max-height: 220px;
    object-fit: cover;
    transform: scale(1);
    transition: transform 320ms ease;
}

.destination-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(10, 20, 31, 0.12), rgba(10, 20, 31, 0.72));
}

.destination-banner-copy h3 {
    margin: 0;
    color: #ffffff;
}

.destination-banner-copy p {
    margin: 0.2rem 0 0;
    color: #d9e2ea;
    font-size: 0.85rem;
}

.btn-destination {
    font-size: 0.8rem;
    white-space: nowrap;
}

.destination-banner-card:hover img,
.destination-banner-card:focus-within img {
    transform: scale(1.06);
}

html.page-tour-package {
    scroll-behavior: smooth;
}

/* —— Premium tour hero (glass filters, stats, meta bar) —— */
.tour-hero-premium {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    overflow-x: hidden;
}

.tour-hero-premium__backdrop {
    position: relative;
    z-index: 1;
    min-height: min(78vh, 760px);
    overflow: visible;
}

.tour-hero-premium__img-shell {
    overflow: hidden;
    height: min(78vh, 760px);
}

.tour-hero-premium__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    display: block;
}

.tour-hero-premium__tint {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: min(78vh, 760px);
    min-height: 0;
    background: linear-gradient(
        180deg,
        rgba(8, 14, 22, 0.42) 0%,
        rgba(8, 14, 22, 0.55) 45%,
        rgba(8, 14, 22, 0.82) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 3vw, 2rem) 0 clamp(4.5rem, 10vh, 6.5rem);
}

.tour-hero-premium__stack {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.tour-hero-premium__masthead {
    width: 100%;
    margin: 0 auto;
}

.tour-hero-premium__intro {
    width: 100%;
    margin: 0;
    transform: translateY(clamp(-1.25rem, -2vh, 0rem));
}

.tour-hero-premium__search-wrap {
    position: relative;
    z-index: 20;
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}

.tour-hero-premium__breadcrumb {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.55rem;
}

.tour-hero-premium__headline {
    margin: 0 auto 0.45rem;
    max-width: 20ch;
    font-size: clamp(1.85rem, 4.2vw, 3.15rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #fff;
}

.tour-hero-premium__sub {
    margin: 0 auto 1.1rem;
    max-width: 38ch;
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

/* Dark glass in-page search (replaces dropdown filters on K2) */
.tour-hero-glass-search {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: 0.45rem 0.5rem 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(12, 18, 24, 0.55);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.tour-hero-glass-search__icon {
    flex-shrink: 0;
    display: flex;
    color: rgba(255, 255, 255, 0.92);
}

.tour-hero-glass-search__icon .tour-hero-icon {
    width: 22px;
    height: 22px;
}

.tour-hero-glass-search__input {
    flex: 1 1 180px;
    min-width: 0;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.55rem 0.35rem;
    outline: none;
}

.tour-hero-glass-search__input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.tour-hero-glass-search__btn {
    flex-shrink: 0;
    border: none;
    border-radius: 999px;
    padding: 0.68rem 1.35rem;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    background: #fff;
    color: #142427;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tour-hero-glass-search__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.tour-hero-glass-search__btn:focus-visible {
    outline: 2px solid #f0c77a;
    outline-offset: 3px;
}

.tour-hero-glass-search__input:focus-visible {
    outline: 2px solid rgba(240, 199, 122, 0.65);
    outline-offset: 2px;
    border-radius: 8px;
}

.tour-hero-glass-search__results {
    position: absolute;
    top: calc(100% + 0.45rem);
    left: 0;
    right: 0;
    z-index: 25;
    max-height: min(52vh, 360px);
    overflow: auto;
    padding: 0.45rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(18, 26, 32, 0.96);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.tour-hero-glass-search__results-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tour-hero-glass-search__results-hit {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.55rem 0.65rem;
    margin: 0;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #f4f6f8;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
}

.tour-hero-glass-search__results-hit:hover,
.tour-hero-glass-search__results-hit:focus-visible {
    background: rgba(240, 199, 122, 0.12);
    outline: none;
}

.tour-hero-glass-search__empty {
    margin: 0;
    padding: 0.6rem 0.5rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
}

.tour-package-subblock {
    margin-top: 1rem;
}

.tour-package-subblock:first-of-type {
    margin-top: 0.5rem;
}

/* What to expect — ridgeline cairns + ledger (see tour-package-expect-field.php, tour-expect-field.js) */
.tour-expect-field-section {
    scroll-margin-top: 4rem;
}

.tour-expect-field__intro {
    margin: 0 0 1.15rem;
    max-width: 52ch;
    font-size: 0.98rem;
    color: var(--muted);
    line-height: 1.55;
}

.tour-expect-field {
    position: relative;
    margin-top: 0.25rem;
    padding: 1.35rem 1rem 1rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: linear-gradient(165deg, rgba(255, 253, 249, 0.98), rgba(242, 238, 230, 0.35));
    box-shadow: 0 10px 28px rgba(24, 40, 48, 0.06);
    overflow: hidden;
}

.tour-expect-field__skyline {
    position: absolute;
    inset: 0 0 auto 0;
    height: 42%;
    pointer-events: none;
    opacity: 0.55;
}

.tour-expect-field__skyline-layer {
    display: block;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(
            105deg,
            transparent 0,
            transparent 14px,
            rgba(43, 91, 113, 0.06) 14px,
            rgba(43, 91, 113, 0.06) 15px
        ),
        linear-gradient(
            12deg,
            transparent 55%,
            rgba(184, 111, 63, 0.07) 55%,
            rgba(184, 111, 63, 0.07) 56%,
            transparent 56%
        );
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
}

.tour-expect-field__markers {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 0.45rem 0.35rem;
    margin: 0 0 1.15rem;
    padding: 0 0.25rem;
}

.tour-expect-field__marker {
    position: relative;
    width: 2.35rem;
    height: 2.35rem;
    padding: 0;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    color: var(--accent-strong);
    background: radial-gradient(circle at 35% 30%, #fffefb, #ebe6dc);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.85),
        0 4px 12px rgba(20, 36, 39, 0.12);
    transition:
        transform 200ms ease,
        box-shadow 200ms ease,
        color 200ms ease;
}

.tour-expect-field__marker-ring {
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 2px solid transparent;
    transition: border-color 200ms ease;
    pointer-events: none;
}

.tour-expect-field__marker-num {
    position: relative;
    z-index: 1;
}

.tour-expect-field__marker:hover {
    transform: translateY(-2px);
    color: var(--heading);
}

.tour-expect-field__marker:focus {
    outline: none;
}

.tour-expect-field__marker:focus-visible .tour-expect-field__marker-ring {
    border-color: var(--accent);
}

.tour-expect-field__marker.is-active {
    color: var(--surface);
    background: linear-gradient(145deg, var(--accent), var(--accent-strong));
    box-shadow:
        0 6px 18px rgba(184, 111, 63, 0.35),
        inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}

.tour-expect-field__marker.is-active .tour-expect-field__marker-ring {
    border-color: rgba(184, 111, 63, 0.45);
}

@media (prefers-reduced-motion: reduce) {
    .tour-expect-field__marker {
        transition: none;
    }
}

.tour-expect-field__ledger {
    position: relative;
    z-index: 1;
    min-height: 8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tour-expect-field__ledger--split {
    display: grid;
    gap: 1rem 1.25rem;
    align-items: start;
}

@media (min-width: 768px) {
    .tour-expect-field__ledger--split {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
        min-height: 11rem;
    }

    .tour-expect-field--has-photo .tour-expect-field__photo-frame {
        position: sticky;
        top: 5.5rem;
    }
}

.tour-expect-field__panels-stack {
    min-width: 0;
}

.tour-expect-field__photo-frame {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(43, 91, 113, 0.18);
    box-shadow: 0 10px 26px rgba(24, 40, 48, 0.08);
    aspect-ratio: 16 / 10;
    background: var(--surface-soft);
}

.tour-expect-field__photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        opacity 240ms ease,
        transform 420ms ease;
}

.tour-expect-field__photo.is-swapping {
    opacity: 0.72;
    transform: scale(1.02);
}

@media (prefers-reduced-motion: reduce) {
    .tour-expect-field__photo {
        transition: opacity 120ms ease;
    }

    .tour-expect-field__photo.is-swapping {
        transform: none;
    }
}

.tour-expect-field__panel {
    padding: 1rem 1.05rem 1.05rem;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid rgba(43, 91, 113, 0.15);
    box-shadow: 0 6px 16px rgba(24, 40, 48, 0.05);
}

.tour-expect-field__panel[hidden] {
    display: none !important;
}

.tour-expect-field__panel-title {
    margin: 0 0 0.65rem;
    font-size: 1.02rem;
    color: var(--heading);
    line-height: 1.35;
}

.tour-expect-field__panel-list {
    margin: 0;
    padding-left: 1.15rem;
    color: var(--text);
    font-size: 0.94rem;
}

.tour-expect-field__panel-list li {
    margin-bottom: 0.45rem;
}

.tour-expect-field__panel-list li:last-child {
    margin-bottom: 0;
}

.tour-expect-field__hint {
    position: relative;
    z-index: 1;
    margin: 0.85rem 0 0;
    font-size: 0.82rem;
    font-style: italic;
    color: rgba(91, 106, 111, 0.85);
    text-align: center;
}

@media (max-width: 520px) {
    .tour-expect-field {
        padding: 1.1rem 0.65rem 0.85rem;
    }

    .tour-expect-field__markers {
        gap: 0.35rem 0.25rem;
    }

    .tour-expect-field__marker {
        width: 2.1rem;
        height: 2.1rem;
        font-size: 0.72rem;
    }

    .tour-expect-field__ledger--split {
        grid-template-columns: 1fr;
    }

    .tour-expect-field__photo-frame {
        aspect-ratio: 16 / 9;
        max-height: 220px;
    }

    .tour-expect-field__panel {
        padding: 0.85rem 0.8rem;
    }

    .tour-expect-field__panel-list {
        font-size: 0.9rem;
    }
}

/* Highlights summit viewport (tour-package-highlights-viewport.php + tour-highlights-viewport.js) */
.tour-highlights-viewport-section {
    scroll-margin-top: 4rem;
}

.tour-highlights-viewport__intro {
    margin: 0 0 1.15rem;
    max-width: 56ch;
    font-size: 0.98rem;
    color: var(--muted);
    line-height: 1.55;
}

.tour-highlights-viewport {
    margin-top: 0.35rem;
    outline: none;
}

.tour-highlights-viewport:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: 12px;
}

.tour-highlights-viewport__chrome {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: stretch;
    gap: 0.35rem;
    /* Locks arrow column height to the stage — arrows stay vertically centered in a stable band */
    --highlights-stage-height: clamp(380px, 42vh, 485px);
}

.tour-highlights-viewport__stage {
    position: relative;
    height: var(--highlights-stage-height);
    min-height: var(--highlights-stage-height);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 14px 36px rgba(24, 40, 48, 0.1);
    touch-action: pan-y pinch-zoom;
    display: grid;
    grid-template: 1fr / 1fr;
}

.tour-highlights-viewport__slide {
    grid-area: 1 / 1;
    min-height: 0;
    height: 100%;
}

.tour-highlights-viewport__slide[hidden] {
    display: none !important;
}

.tour-highlights-viewport__split {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    height: 100%;
    min-height: 0;
}

.tour-highlights-viewport__visual {
    position: relative;
    min-height: 0;
    height: 100%;
    background: var(--surface-soft);
}

.tour-highlights-viewport__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-highlights-viewport__visual--placeholder {
    background:
        radial-gradient(circle at 30% 20%, rgba(184, 111, 63, 0.12), transparent 45%),
        linear-gradient(165deg, #dfe8ea, #c5d0d4);
}

.tour-highlights-viewport__copy {
    padding: 1.15rem 1.2rem 1.25rem;
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.97), rgba(247, 243, 236, 0.92));
    border-left: 1px solid rgba(43, 91, 113, 0.12);
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.tour-highlights-viewport__copy:focus-visible {
    outline: 2px solid rgba(184, 111, 63, 0.45);
    outline-offset: -2px;
}

.tour-highlights-viewport__copy::-webkit-scrollbar {
    width: 6px;
}

.tour-highlights-viewport__copy::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(43, 91, 113, 0.28);
}

.tour-highlights-viewport__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1rem, 2vw, 1.12rem);
    color: var(--heading);
    line-height: 1.35;
}

.tour-highlights-viewport__list {
    margin: 0;
    padding-left: 1.2rem;
    font-size: 0.92rem;
    color: var(--text);
}

.tour-highlights-viewport__list li {
    margin-bottom: 0.4rem;
}

.tour-highlights-viewport__arrow {
    align-self: center;
    width: 2.65rem;
    height: 2.65rem;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: var(--accent-strong);
    font-size: 1.15rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(24, 40, 48, 0.07);
    transition:
        background 180ms ease,
        transform 180ms ease,
        border-color 180ms ease;
}

.tour-highlights-viewport__arrow:hover {
    background: rgba(184, 111, 63, 0.08);
    border-color: rgba(184, 111, 63, 0.35);
}

.tour-highlights-viewport__arrow:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.tour-highlights-viewport__filmstrip-wrap {
    margin-top: 1rem;
    margin-left: -0.25rem;
    margin-right: -0.25rem;
}

.tour-highlights-viewport__filmstrip {
    display: flex;
    gap: 0.5rem;
    padding: 0.35rem 0.25rem 0.65rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.tour-highlights-viewport__thumb {
    position: relative;
    flex: 0 0 4.75rem;
    height: 3.75rem;
    padding: 0;
    border: 3px solid transparent;
    border-radius: 11px;
    cursor: pointer;
    background-color: var(--surface-soft);
    background-size: cover;
    background-position: center;
    scroll-snap-align: center;
    box-shadow: 0 4px 12px rgba(24, 40, 48, 0.12);
    transition:
        transform 200ms ease,
        border-color 200ms ease,
        box-shadow 200ms ease;
}

.tour-highlights-viewport__thumb-num {
    position: absolute;
    bottom: 4px;
    right: 5px;
    min-width: 1.35rem;
    padding: 0.12rem 0.28rem;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--surface);
    background: rgba(20, 36, 39, 0.72);
    pointer-events: none;
}

.tour-highlights-viewport__thumb:hover {
    transform: translateY(-3px);
}

.tour-highlights-viewport__thumb.is-active {
    border-color: var(--accent);
    box-shadow: 0 8px 22px rgba(184, 111, 63, 0.28);
}

.tour-highlights-viewport__thumb:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.tour-highlights-viewport__hint {
    margin: 0.75rem 0 0;
    font-size: 0.8rem;
    font-style: italic;
    color: rgba(91, 106, 111, 0.82);
    text-align: center;
}

@media (prefers-reduced-motion: reduce) {
    .tour-highlights-viewport__thumb {
        transition: border-color 120ms ease, box-shadow 120ms ease;
    }

    .tour-highlights-viewport__thumb:hover {
        transform: none;
    }
}

@media (max-width: 820px) {
    .tour-highlights-viewport__chrome {
        grid-template-columns: 1fr;
        gap: 0.65rem;
        /* Stack layout: fixed visual band + scrollable copy keeps total height predictable */
        --highlights-stage-height: clamp(320px, 68vh, 520px);
    }

    .tour-highlights-viewport__arrow {
        display: none;
    }

    .tour-highlights-viewport__split {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(160px, 32vh) minmax(0, 1fr);
        height: 100%;
        min-height: 0;
    }

    .tour-highlights-viewport__visual {
        min-height: 0;
        height: 100%;
        max-height: none;
    }

    .tour-highlights-viewport__copy {
        border-left: none;
        border-top: 1px solid rgba(43, 91, 113, 0.12);
        overflow-y: auto;
    }

    .tour-highlights-viewport__stage {
        height: var(--highlights-stage-height);
        min-height: var(--highlights-stage-height);
    }
}

@media (max-width: 520px) {
    .tour-highlights-viewport__thumb {
        flex-basis: 4.25rem;
        height: 3.35rem;
    }

    .tour-highlights-viewport__list {
        font-size: 0.88rem;
    }
}

/* Tour expedition gallery — same blocks as homepage (.home-upcoming-gallery) */
.tour-expedition-gallery-section {
    scroll-margin-top: 4rem;
}

.tour-expedition-gallery-section.home-upcoming-gallery {
    padding-top: 0;
}

.tour-expedition-gallery-section .upcoming-gallery-hero img {
    min-height: 280px;
    max-height: min(520px, 62vh);
}

.js-tour-search-block.is-tour-search-muted {
    opacity: 0.48;
    transition: opacity 0.2s ease;
}

.js-tour-search-block.is-tour-search-flash {
    animation: tour-search-flash 1.2s ease;
}

@keyframes tour-search-flash {
    0%,
    100% {
        box-shadow: 0 0 0 0 transparent;
    }
    15%,
    35% {
        box-shadow: 0 0 0 3px rgba(182, 111, 63, 0.45);
    }
}

.tour-hero-glass-filters {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
    padding: 0.4rem 0.45rem 0.4rem 0.55rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    gap: 0;
}

.tour-hero-glass-filters__segment {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.tour-hero-glass-filters__segment:last-of-type {
    border-right: none;
}

.tour-hero-glass-filters__segment-inner {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.35rem 0.65rem 0.35rem 0.75rem;
    width: 100%;
    min-width: 0;
}

.tour-hero-glass-filters__icon {
    flex-shrink: 0;
    display: flex;
    color: #fff;
    opacity: 0.95;
}

.tour-hero-glass-filters__icon .tour-hero-icon {
    width: 22px;
    height: 22px;
}

.tour-hero-glass-filters__field {
    flex: 1;
    min-width: 0;
    text-align: left;
    position: relative;
}

.tour-hero-glass-filters__field-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0.08rem;
    cursor: pointer;
}

.tour-hero-glass-filters__select {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0 1.5rem 0 0;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.25;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.tour-hero-glass-filters__field::after {
    content: "";
    position: absolute;
    right: 0.15rem;
    bottom: 0.2rem;
    width: 0.45rem;
    height: 0.45rem;
    border-right: 2px solid rgba(255, 255, 255, 0.85);
    border-bottom: 2px solid rgba(255, 255, 255, 0.85);
    transform: rotate(45deg);
    pointer-events: none;
    opacity: 0.9;
}

.tour-hero-glass-filters__submit-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0.2rem 0.35rem 0.2rem 0.25rem;
}

.tour-hero-glass-filters__submit {
    border: none;
    border-radius: 999px;
    padding: 0.72rem 1.35rem;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    background: #fff;
    color: #142427;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tour-hero-glass-filters__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.tour-hero-glass-filters__submit:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.tour-hero-glass-filters__select:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.75);
    outline-offset: 2px;
    border-radius: 6px;
}

.tour-hero-premium__stats-outer {
    position: relative;
    z-index: 5;
    margin-top: -3.25rem;
    padding-bottom: 0.25rem;
}

.tour-hero-stats-cards {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .tour-hero-stats-cards {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1rem;
    }
}

.tour-hero-stats-cards__item {
    background: #fff;
    border-radius: 14px;
    padding: 1.15rem 0.9rem;
    text-align: center;
    box-shadow: 0 14px 36px rgba(20, 36, 39, 0.12);
    border: 1px solid rgba(222, 215, 203, 0.65);
}

.tour-hero-stats-cards__value {
    display: block;
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #142427;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.tour-hero-stats-cards__value--counter .tour-hero-stats-cards__counter {
    display: inline-block;
    font-variant-numeric: tabular-nums;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.tour-hero-stats-cards.is-tour-stats-counted .tour-hero-stats-cards__value--counter .tour-hero-stats-cards__counter {
    transform: translateY(-1px);
}

.tour-hero-stats-cards__counter--range {
    font-weight: 800;
}

.tour-hero-stats-cards__counter-sep {
    margin: 0 0.06em;
    opacity: 0.85;
}

.tour-hero-stats-cards__item--counter {
    transition: box-shadow 0.45s ease, border-color 0.45s ease;
}

.tour-hero-stats-cards.is-tour-stats-counted .tour-hero-stats-cards__item--counter {
    box-shadow: 0 16px 40px rgba(20, 36, 39, 0.14);
    border-color: rgba(182, 111, 63, 0.28);
}

.tour-hero-stats-cards__label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.8rem;
    color: #6f7a82;
    line-height: 1.35;
}

.tour-hero-stats-cards__item--cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 1.1rem 0.85rem;
    background: linear-gradient(165deg, #fffdf9 0%, #f2eee6 100%);
    border-color: rgba(182, 111, 63, 0.35);
}

.tour-hero-stats-cards__cta-line {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
    text-align: center;
    line-height: 1.35;
}

.tour-hero-stats-cards__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    background: var(--accent);
    color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: filter 0.15s ease, transform 0.15s ease;
}

.tour-hero-stats-cards__cta:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .tour-hero-glass-search {
        border-radius: 22px;
        padding: 0.55rem 0.65rem;
    }

    .tour-hero-glass-search__btn {
        width: 100%;
        justify-content: center;
    }

    .tour-hero-glass-filters {
        flex-direction: column;
        border-radius: 22px;
        padding: 0.5rem;
    }

    .tour-hero-glass-filters__segment {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    }

    .tour-hero-glass-filters__segment:last-of-type {
        border-bottom: none;
    }

    .tour-hero-glass-filters__submit-wrap {
        width: 100%;
        padding: 0.5rem 0.25rem 0.15rem;
    }

    .tour-hero-glass-filters__submit {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .tour-hero-premium__tint {
        padding: 1rem 0 clamp(4rem, 12vh, 5.5rem);
    }

    .tour-hero-premium__intro {
        transform: translateY(0);
    }

    .tour-hero-premium__stats-outer {
        margin-top: -2.5rem;
    }
}

.tour-package-content--after-premium {
    position: relative;
    z-index: 0;
    padding-top: 2rem;
}

.tour-package-hero {
    position: relative;
    min-height: 52vh;
    max-height: 560px;
    overflow: hidden;
}

.tour-package-hero img {
    width: 100%;
    height: 52vh;
    max-height: 560px;
    object-fit: cover;
    object-position: center 40%;
}

.tour-package-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding-bottom: 2rem;
    background: linear-gradient(180deg, rgba(10, 20, 31, 0.15), rgba(10, 20, 31, 0.78));
}

.tour-package-breadcrumb {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.88);
}

.tour-package-breadcrumb a {
    color: #f0c77a;
    text-decoration: none;
    font-weight: 600;
}

.tour-package-breadcrumb a:hover {
    text-decoration: underline;
}

.tour-package-breadcrumb span[aria-hidden="true"] {
    margin: 0 0.35rem;
    opacity: 0.7;
}

.tour-package-hero h1 {
    margin: 0;
    color: #f5c77d;
    font-size: clamp(1.65rem, 3.5vw, 2.6rem);
    line-height: 1.15;
    max-width: 18ch;
}

/*
 * Tour page layout: full container width (override .terms-content 920px cap),
 * comfortable sidebar column on the left, article fills the rest.
 */
.container.terms-content.tour-package-layout {
    max-width: min(var(--max-width), 92%);
}

.tour-package-layout {
    display: grid;
    grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
    gap: clamp(1.35rem, 2.8vw, 2.25rem);
    align-items: start;
}

.tour-package-layout--after-premium {
    padding-top: 0;
}

.tour-package-layout__main {
    min-width: 0;
}

.tour-package-layout__main [id^="tour-search"] {
    scroll-margin-top: 6.5rem;
}

.tour-page-nav {
    position: sticky;
    top: 6.85rem;
    z-index: 8;
    align-self: start;
    justify-self: stretch;
    width: 100%;
    min-width: 0;
    margin-top: 1rem;
    max-height: calc(100vh - 8rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 1.15rem 1.15rem 1.2rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    background:
        linear-gradient(165deg, rgba(255, 253, 249, 0.97) 0%, var(--surface-soft) 100%);
    box-shadow:
        0 0 0 1px rgba(255, 245, 230, 0.65) inset,
        0 10px 28px rgba(20, 36, 39, 0.07);
}

/* Minimal Google Earth link — matches nav panel, no faux-3D chrome */
.tour-page-nav__earth {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 1rem;
    padding: 0.55rem 0.6rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--heading);
    border: 1px solid var(--border);
    background: var(--surface);
    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        box-shadow 0.18s ease;
}

.tour-page-nav__earth:hover {
    border-color: rgba(184, 111, 63, 0.55);
    background: rgba(255, 253, 249, 0.98);
    box-shadow: 0 2px 10px rgba(20, 36, 39, 0.06);
}

.tour-page-nav__earth:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.tour-page-nav__earth-logo {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid var(--border);
}

.tour-page-nav__earth-body {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.tour-page-nav__earth-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--accent-strong);
    line-height: 1.25;
}

.tour-page-nav__earth-desc {
    font-size: 0.76rem;
    line-height: 1.45;
    color: var(--muted);
}

.tour-page-nav__earth-go {
    margin-top: 0.15rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-strong);
    letter-spacing: 0.02em;
}

.tour-page-nav__earth-go-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.tour-page-nav__earth:hover .tour-page-nav__earth-go-arrow {
    transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
    .tour-page-nav__earth:hover .tour-page-nav__earth-go-arrow {
        transform: none;
    }
}

.tour-page-nav__kicker {
    margin: 0 0 0.55rem;
    font-size: 0.72rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    font-weight: 800;
    color: #9b6a2d;
}

.tour-page-nav__scroll {
    margin: 0 -0.25rem;
    padding: 0 0.25rem;
}

.tour-page-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tour-page-nav__list li + li {
    margin-top: 0.15rem;
}

.tour-page-nav__link {
    display: block;
    padding: 0.42rem 0.55rem 0.42rem 0.7rem;
    border-radius: 8px;
    border-left: 3px solid transparent;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--heading);
    text-decoration: none;
    line-height: 1.35;
    transition:
        background 0.15s ease,
        border-color 0.15s ease,
        color 0.15s ease;
}

.tour-page-nav__link:hover {
    background: rgba(184, 111, 63, 0.1);
    color: var(--accent-strong);
}

.tour-page-nav__link:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.tour-page-nav__link.is-active {
    border-left-color: var(--accent);
    background: rgba(184, 111, 63, 0.12);
    color: var(--accent-strong);
}

@media (max-width: 1040px) {
    .tour-package-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .tour-page-nav {
        position: sticky;
        top: 5.75rem;
        margin-top: 0.65rem;
        max-height: none;
        overflow: visible;
        padding: 0.85rem 0.65rem;
    }

    .tour-page-nav__earth {
        margin-bottom: 0.85rem;
    }

    .tour-page-nav__scroll {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.35rem;
        margin: 0 -0.5rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
    }

    .tour-page-nav__list {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.35rem;
    }

    .tour-page-nav__list li {
        flex: 0 0 auto;
        margin-top: 0;
    }

    .tour-page-nav__link {
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 0.45rem 0.65rem;
        border-radius: 10px;
    }

    .tour-page-nav__link.is-active {
        border-left: none;
        border-bottom-color: var(--accent);
    }
}

@media (max-width: 768px) {
    .tour-page-nav {
        position: static;
        top: auto;
        margin-top: 0.75rem;
    }

    .tour-page-nav__scroll {
        overflow: visible;
        margin: 0;
        padding: 0;
        mask-image: none;
    }

    .tour-page-nav__list {
        display: block;
    }

    .tour-page-nav__list li {
        margin-top: 0;
    }

    .tour-page-nav__list li + li {
        margin-top: 0.25rem;
    }

    .tour-page-nav__link {
        white-space: normal;
        border-bottom: none;
        border-left: 3px solid transparent;
        padding: 0.42rem 0.55rem 0.42rem 0.7rem;
        border-radius: 8px;
    }

    .tour-page-nav__link.is-active {
        border-bottom: none;
        border-left-color: var(--accent);
    }
}

.tour-package-content {
    padding-bottom: 3rem;
}

.tour-package-section {
    margin-top: 0.25rem;
}

.tour-package-inquiry {
    margin-top: 1.5rem;
}

.tour-package-inquiry__shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.2rem;
    padding: 1.3rem;
    border: 1px solid rgba(181, 145, 93, 0.5);
    border-radius: 16px;
    background:
        radial-gradient(circle at top right, rgba(245, 199, 122, 0.14), transparent 48%),
        linear-gradient(180deg, #ffffff 0%, #fef9f2 100%);
    box-shadow:
        0 0 0 1px rgba(255, 245, 230, 0.7) inset,
        0 12px 34px rgba(20, 36, 39, 0.08);
}

.tour-package-inquiry__eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 800;
    color: #9b6a2d;
}

.tour-package-inquiry__intro h2 {
    margin: 0;
    color: #1d2c37;
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}

.tour-package-inquiry__intro > p {
    margin: 0.6rem 0 0;
}

.tour-package-inquiry__trust-points {
    margin: 0.8rem 0 0;
    padding-left: 1rem;
    color: #3f5660;
}

.tour-package-inquiry__trust-points li {
    margin-bottom: 0.35rem;
}

.tour-package-inquiry__form {
    display: grid;
    gap: 0.85rem;
}

.tour-package-inquiry__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.tour-package-inquiry__form label {
    display: grid;
    gap: 0.35rem;
    font-weight: 600;
    color: #1f3642;
    font-size: 0.94rem;
}

.tour-package-inquiry__form input,
.tour-package-inquiry__form select,
.tour-package-inquiry__form textarea {
    width: 100%;
    border: 1px solid #cdb694;
    border-radius: 10px;
    background: #fff;
    color: var(--text);
    padding: 0.68rem 0.75rem;
    font: inherit;
}

.tour-package-inquiry__phone-group {
    position: relative;
    z-index: 3;
}

.tour-package-inquiry__phone-group-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: stretch;
    gap: 0;
    border: 1px solid #cdb694;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
}

.tour-package-inquiry__phone-group-inner:focus-within {
    border-color: #b86f3f;
}

.tour-package-inquiry__country-picker {
    position: relative;
    width: fit-content;
    min-width: 0;
    border-right: 1px solid #d9c6ad;
}

.tour-package-inquiry__country-trigger {
    position: relative;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.28rem;
    width: auto;
    min-width: min-content;
    min-height: 2.75rem;
    margin: 0;
    padding: 0.35rem 1.1rem 0.35rem 0.4rem;
    border: 0;
    border-radius: 0;
    background-color: #f3f7fc;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1f3642;
    cursor: pointer;
    text-align: center;
}

.tour-package-inquiry__country-trigger:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(184, 111, 63, 0.32);
}

.tour-package-inquiry__country-trigger img {
    flex-shrink: 0;
    display: block;
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(20, 36, 39, 0.1);
}

.tour-package-inquiry__country-trigger-code {
    min-width: 0;
    flex: 0 1 auto;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.01em;
}

.tour-package-inquiry__country-trigger-chevron {
    position: absolute;
    right: 0.45rem;
    top: 50%;
    width: 0.45rem;
    height: 0.45rem;
    margin-top: -0.05rem;
    border-right: 2px solid #8b5727;
    border-bottom: 2px solid #8b5727;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
}

.tour-package-inquiry__country-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 50;
    border-radius: 10px;
    border: 1px solid #cdb694;
    background: #fffdf9;
    box-shadow: 0 14px 36px rgba(20, 36, 39, 0.14);
    overflow: hidden;
}

.tour-package-inquiry__country-search-wrap {
    display: block;
    padding: 0.5rem;
    border-bottom: 1px solid #e5dacb;
    background: #fff;
}

.tour-package-inquiry__country-search {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 0.5rem 0.65rem;
    border: 1px solid #cdb694;
    border-radius: 8px;
    font: inherit;
    font-size: 0.88rem;
}

.tour-package-inquiry__country-search:focus-visible {
    outline: 2px solid rgba(184, 111, 63, 0.35);
    outline-offset: 1px;
    border-color: #b86f3f;
}

.tour-package-inquiry__country-options {
    list-style: none;
    margin: 0;
    padding: 0.25rem 0;
    max-height: min(280px, 42vh);
    overflow-x: hidden;
    overflow-y: auto;
}

.tour-package-inquiry__country-option {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.45rem 0.65rem;
    border: none;
    background: transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
    color: #1f3642;
}

.tour-package-inquiry__country-option:hover,
.tour-package-inquiry__country-option:focus-visible {
    background: rgba(184, 111, 63, 0.1);
    outline: none;
}

.tour-package-inquiry__country-option img {
    flex-shrink: 0;
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(20, 36, 39, 0.08);
}

.tour-package-inquiry__country-option-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.tour-package-inquiry__country-option-name {
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.25;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.tour-package-inquiry__country-option-code {
    font-size: 0.78rem;
    font-weight: 700;
    color: #6a523c;
}

.tour-package-inquiry__country-empty {
    padding: 0.65rem 0.85rem;
    font-size: 0.84rem;
    color: #5c7480;
}

.tour-package-inquiry__phone-group-inner input[name="whatsapp"] {
    border: 0;
    border-radius: 0;
    padding-left: 0.7rem;
    padding-right: 0.7rem;
    background: #fff;
}

.tour-package-inquiry__phone-group-inner input[name="whatsapp"]:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(184, 111, 63, 0.28);
}

.tour-package-inquiry__select-field {
    position: relative;
}

.tour-package-inquiry__form select {
    padding-right: 2rem;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b5727' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 0.68rem auto;
}

.tour-package-inquiry__select-field select {
    padding-right: 2rem;
}

.tour-package-inquiry__form textarea {
    resize: vertical;
}

.tour-package-inquiry__form input:focus-visible,
.tour-package-inquiry__form select:focus-visible,
.tour-package-inquiry__form textarea:focus-visible {
    outline: 2px solid rgba(184, 111, 63, 0.35);
    outline-offset: 1px;
    border-color: #b86f3f;
}

/* Composite phone row: avoid double rings (outline + outer box-shadow clipping rounded corners). */
.tour-package-inquiry__phone-group-inner input:focus-visible {
    outline: none;
}

.tour-package-inquiry__phone-group .tour-package-inquiry__country-search:focus-visible {
    outline: 2px solid rgba(184, 111, 63, 0.35);
    outline-offset: 1px;
    border-color: #b86f3f;
}

.tour-package-inquiry__chips {
    margin: 0;
    padding: 0;
    border: 0;
}

.tour-package-inquiry__chips legend {
    font-weight: 700;
    margin-bottom: 0.42rem;
    color: #1f3642;
}

.tour-package-inquiry__chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.48rem;
}

.tour-package-inquiry__chip-list button {
    border: 1px solid #d7c4a7;
    background: #fff;
    color: #6f4b25;
    border-radius: 999px;
    padding: 0.36rem 0.7rem;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.tour-package-inquiry__chip-list button:hover,
.tour-package-inquiry__chip-list button.is-active {
    background: #9b6a2d;
    color: #fff;
    border-color: #9b6a2d;
}

.tour-package-inquiry__counter {
    margin: -0.4rem 0 0;
    text-align: right;
    color: #5c7480;
    font-size: 0.82rem;
}

.tour-package-inquiry__consent {
    display: grid;
    grid-template-columns: 1rem minmax(0, 1fr);
    align-items: start;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: #2f4350;
    line-height: 1.45;
}

.tour-package-inquiry__consent input {
    appearance: auto;
    -webkit-appearance: checkbox;
    width: 1rem;
    height: 1rem;
    margin: 0.16rem 0 0;
    padding: 0;
    border-radius: 3px;
    accent-color: #9b6a2d;
}

.tour-package-inquiry__consent span {
    display: inline-block;
}

.tour-package-inquiry__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.72rem;
}

.tour-package-inquiry__actions p {
    margin: 0;
    font-size: 0.82rem;
    color: #536b76;
}

@media (max-width: 900px) {
    .tour-package-inquiry__shell {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 640px) {
    .tour-package-inquiry__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.tour-package-itinerary {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    margin-top: 0.75rem;
}

.tour-package-itinerary-subheading {
    margin: 0.35rem 0 0;
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    font-weight: 600;
    color: var(--accent, #b86f3f);
    letter-spacing: 0.02em;
}

/* Full-width rows: base `.tour-package-itinerary` uses flex and loads after `.faq-grid`,
   so it was overriding `display: grid` — force a single full-width column here. */
.tour-package-itinerary.tour-package-itinerary--accordion {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 1rem;
}

.tour-package-itinerary--accordion .tour-itinerary-accordion-item {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.tour-package-itinerary--accordion .faq-item-icon {
    flex-shrink: 0;
    align-self: center;
}

.tour-itinerary-accordion-item summary {
    text-align: left;
    font-size: 0.98rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.tour-itinerary-accordion-item summary span:first-child {
    flex: 1;
    min-width: 0;
}

.tour-itinerary-accordion-body .tour-itinerary-accordion-lead {
    margin: 0.5rem 0 0;
    font-weight: 600;
    color: #1a3642;
}

.tour-itinerary-accordion-stats {
    margin-top: 0.45rem;
}

.tour-itinerary-accordion-note {
    margin-top: 0.85rem;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(26, 54, 66, 0.12);
    font-size: 0.92rem;
    color: #3d5560;
}

.tour-package-itinerary strong,
.tour-itinerary-accordion-body strong {
    color: #1a3642;
    font-weight: 700;
}

.tour-package-itinerary--accordion .tour-itinerary-accordion-body {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
}

@media (max-width: 600px) {
    .tour-package-itinerary--accordion .faq-item summary {
        padding: 0.75rem 0.7rem;
        gap: 0.6rem;
    }

    .tour-itinerary-accordion-item summary {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .tour-package-itinerary--accordion .faq-answer p,
    .tour-package-itinerary--accordion .tour-itinerary-accordion-body .tour-package-day__stats {
        font-size: 0.9rem;
    }
}

.tour-package-day {
    padding: 1rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
}

.tour-package-day__title {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    color: var(--heading);
}

.tour-package-day__stats {
    margin: 0 0 0.65rem;
    padding-left: 1.1rem;
    font-size: 0.9rem;
    color: var(--muted);
    list-style: disc;
}

.tour-package-day__stats li {
    margin-bottom: 0.2rem;
}

.tour-package-services {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

/* Tabbed inclusions (component: tour-package-services-tabs.php; JS: tour-services-tabs.js) */
.tour-services-tabs-heading {
    margin: 0 0 1rem;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    color: var(--heading);
}

.tour-services-tabs__chrome {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--surface);
    box-shadow: 0 8px 22px rgba(24, 40, 48, 0.06);
    overflow: hidden;
}

.tour-services-tabs__tablist {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    background: var(--surface-soft);
    border-bottom: 1px solid var(--border);
}

.tour-services-tabs__tab {
    flex: 1 1 0;
    min-width: 0;
    white-space: normal;
    text-wrap: balance;
    margin: 0;
    padding: 0.9rem 0.65rem;
    border: none;
    border-bottom: 3px solid transparent;
    font-family: inherit;
    font-size: clamp(0.82rem, 1.45vw, 0.95rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.01em;
    cursor: pointer;
    color: var(--accent);
    background: rgba(255, 253, 249, 0.55);
    transition:
        background 180ms ease,
        color 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.tour-services-tabs__tab:hover {
    color: var(--accent-strong);
    background: rgba(255, 253, 249, 0.85);
}

.tour-services-tabs__tab:focus {
    outline: none;
}

.tour-services-tabs__tab:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: -2px;
    z-index: 1;
}

.tour-services-tabs__tab.is-active {
    color: var(--heading);
    background: var(--surface);
    border-bottom-color: var(--surface);
    margin-bottom: -1px;
    padding-bottom: calc(0.9rem + 1px);
    box-shadow: 0 -2px 0 var(--surface) inset;
    position: relative;
    z-index: 2;
}

.tour-services-tabs__panels {
    padding: 0;
    background: var(--surface);
}

.tour-services-tabs__panel {
    padding: 1.1rem 1.15rem 1.25rem;
    scroll-margin-top: 5rem;
}

.tour-services-tabs__panel[hidden] {
    display: none !important;
}

.tour-services-tabs__list {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text);
    font-size: 0.95rem;
}

.tour-services-tabs__list li {
    margin-bottom: 0.45rem;
}

.tour-services-tabs__list li:last-child {
    margin-bottom: 0;
}

@media (max-width: 520px) {
    .tour-services-tabs__tab {
        padding: 0.75rem 0.45rem;
        font-size: 0.78rem;
        letter-spacing: 0;
    }

    .tour-services-tabs__panel {
        padding: 1rem 0.85rem 1.15rem;
    }

    .tour-services-tabs__list {
        font-size: 0.9rem;
        padding-left: 1.1rem;
    }
}

/* Google-style traveler reviews — light theme, matches site + readable contrast */
.tour-google-reviews {
    margin-top: 2.25rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border);
    scroll-margin-top: 4rem;
}

.tour-google-reviews__intro {
    margin-bottom: 1.25rem;
}

.tour-google-reviews__title {
    margin: 0 0 0.4rem;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 700;
    color: var(--accent-strong);
    letter-spacing: 0.02em;
}

.tour-google-reviews__sub {
    margin: 0;
    font-size: 0.94rem;
    color: var(--muted);
    line-height: 1.45;
}

.tour-google-reviews__summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    margin-bottom: 1.35rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: 0 8px 22px rgba(24, 40, 48, 0.06);
}

.tour-google-reviews__summary-brand {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.6rem;
}

.tour-google-reviews__g-logo {
    display: inline-flex;
    vertical-align: middle;
}

.tour-google-reviews__g-wordmark {
    font-size: 1.15rem;
    font-weight: 500;
    color: #5f6368;
    letter-spacing: -0.02em;
}

.tour-google-reviews__g-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--heading);
}

.tour-google-reviews__summary-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.tour-google-reviews__score {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--heading);
}

.tour-google-reviews__summary-stars {
    display: inline-flex;
    gap: 0.05rem;
    line-height: 1;
}

.tour-google-reviews__summary-star {
    font-size: 1rem;
    color: #f5b301;
}

.tour-google-reviews__count {
    font-size: 0.88rem;
    color: var(--muted);
}

.tour-google-reviews__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    padding: 0.55rem 1.1rem;
    background: #1a73e8;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.35);
    transition:
        background 0.18s ease,
        transform 0.15s ease,
        box-shadow 0.18s ease;
}

.tour-google-reviews__cta-btn:hover {
    background: #1765cc;
    color: #fff;
    transform: translateY(-1px);
}

.tour-google-reviews__cta-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.tour-google-reviews__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: stretch;
}

.tour-google-reviews__card {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.tour-google-reviews__bubble {
    position: relative;
    filter: drop-shadow(0 6px 16px rgba(20, 36, 39, 0.08));
}

.tour-google-reviews__bubble-inner {
    position: relative;
    padding: 1rem 1.05rem 1.05rem;
    border-radius: 12px;
    border: 1px solid #dadce0;
    background: #f8f9fa;
    color: var(--text);
}

.tour-google-reviews__bubble-inner::after {
    content: "";
    position: absolute;
    left: 1.85rem;
    bottom: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #f8f9fa;
    filter: drop-shadow(0 1px 0 #dadce0);
}

.tour-google-reviews__stars-row {
    display: flex;
    gap: 0.06rem;
    margin-bottom: 0.65rem;
    line-height: 1;
}

.tour-google-reviews__star {
    font-size: 1rem;
    color: #f5b301;
}

.tour-google-reviews__body-wrap {
    position: relative;
    overflow: hidden;
    transition: max-height 0.38s ease;
}

.tour-google-reviews__body-wrap.is-collapsible:not(.is-expanded) {
    -webkit-mask-image: linear-gradient(180deg, #000 58%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 58%, transparent 100%);
}

.tour-google-reviews__body-wrap.is-expanded {
    -webkit-mask-image: none;
    mask-image: none;
}

.tour-google-reviews__body {
    font-size: 0.93rem;
    line-height: 1.62;
    color: #202124;
}

.tour-google-reviews__body p {
    margin: 0 0 0.75rem;
}

.tour-google-reviews__body p:last-child {
    margin-bottom: 0;
}

.tour-google-reviews__read-more {
    align-self: flex-start;
    margin-top: 0.5rem;
    padding: 0.2rem 0;
    border: none;
    background: transparent;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a73e8;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.tour-google-reviews__read-more:hover {
    color: #1557b8;
}

.tour-google-reviews__read-more:focus-visible {
    outline: 2px solid #1a73e8;
    outline-offset: 2px;
    border-radius: 4px;
}

.tour-google-reviews__reviewer {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-top: 1rem;
    padding-left: 0.15rem;
}

.tour-google-reviews__avatar-wrap {
    position: relative;
    flex-shrink: 0;
}

.tour-google-reviews__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: hsl(var(--avatar-hue, 210) 46% 46%);
    box-shadow: 0 0 0 2px #fff;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.tour-google-reviews__avatar:hover {
    transform: scale(1.06);
    box-shadow: 0 0 0 3px rgba(184, 111, 63, 0.35);
}

.tour-google-reviews__avatar-letter {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

/* Official multicolor “G” on white — matches summary row logo */
.tour-google-reviews__avatar-g {
    position: absolute;
    right: -4px;
    bottom: -2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.tour-google-reviews__avatar-g-svg {
    display: block;
    width: 13px;
    height: 13px;
}

.tour-google-reviews__identity {
    flex: 1;
    min-width: 0;
}

.tour-google-reviews__name {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.3;
}

.tour-google-reviews__verified {
    display: inline-block;
    margin-left: 0.25rem;
    font-size: 0.75rem;
    color: #1a73e8;
    font-weight: 800;
    vertical-align: middle;
}

.tour-google-reviews__stats {
    margin: 0.15rem 0 0;
    font-size: 0.78rem;
    color: var(--muted);
}

.tour-google-reviews__time {
    margin: 0.2rem 0 0;
    font-size: 0.78rem;
    color: var(--muted);
}

.tour-google-reviews__actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: auto;
    padding-top: 0.85rem;
}

.tour-google-reviews__action-hint {
    font-size: 0.78rem;
    color: var(--muted);
}

.tour-google-reviews__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        transform 0.15s ease;
}

.tour-google-reviews__chip:hover {
    border-color: rgba(184, 111, 63, 0.45);
    background: var(--surface-soft);
}

.tour-google-reviews__chip:active {
    transform: scale(0.97);
}

.tour-google-reviews__chip.is-liked {
    color: #c5221f;
    border-color: rgba(197, 34, 31, 0.35);
    background: rgba(197, 34, 31, 0.06);
}

.tour-google-reviews__chip:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.tour-google-reviews__footnote {
    margin: 1.15rem 0 0;
    font-size: 0.78rem;
    color: var(--muted);
    font-style: italic;
}

@media (max-width: 720px) {
    .tour-google-reviews__summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .tour-google-reviews__cta-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .tour-google-reviews__grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    .tour-google-reviews__avatar,
    .tour-google-reviews__body-wrap,
    .tour-google-reviews__cta-btn {
        transition: none;
    }

    .tour-google-reviews__cta-btn:hover {
        transform: none;
    }

    .tour-google-reviews__avatar:hover {
        transform: none;
    }
}

/* K2 tour — masonry gallery + fullscreen lightbox */
.tour-k2-gallery {
    margin-top: 2.75rem;
    padding-top: 0.5rem;
    scroll-margin-top: 4rem;
}

.tour-k2-gallery__heading.tour-google-reviews__intro {
    margin-bottom: 1.35rem;
}

.tour-k2-gallery__wrap {
    padding-bottom: 0.35rem;
}

.tour-k2-gallery__masonry {
    column-count: 3;
    column-gap: 10px;
}

@media (max-width: 900px) {
    .tour-k2-gallery__masonry {
        column-count: 2;
    }
}

@media (max-width: 560px) {
    .tour-k2-gallery__masonry {
        column-count: 1;
    }
}

.tour-k2-gallery__thumb {
    break-inside: avoid;
    margin-bottom: 10px;
    width: 100%;
    padding: 0;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    cursor: zoom-in;
    display: block;
    background: var(--border);
    box-shadow: 0 6px 18px rgba(24, 40, 48, 0.08);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
}

.tour-k2-gallery__thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(24, 40, 48, 0.12);
}

.tour-k2-gallery__thumb:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.tour-k2-gallery__thumb img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: bottom;
}

[data-tour-masonry-gallery] .js-tour-masonry-gallery-item {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--k2-reveal-delay, 0ms);
}

[data-tour-masonry-gallery] .js-tour-masonry-gallery-item.is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Full-viewport lightbox (extends .gallery-lightbox) */
.tour-k2-gallery-lightbox.gallery-lightbox {
    width: 100vw;
    height: 100vh;
    max-width: 100%;
    max-height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #e8eef2;
}

.tour-k2-gallery-lightbox.gallery-lightbox::backdrop {
    background: rgba(4, 11, 15, 0.88);
}

.tour-k2-gallery-lightbox__pane {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.25rem clamp(2.75rem, 9vw, 5rem);
    box-sizing: border-box;
}

.tour-k2-gallery-lightbox__figure {
    margin: 0;
    position: relative;
    z-index: 1;
    max-width: min(1200px, 94vw);
}

.tour-k2-gallery-lightbox__img {
    width: auto;
    max-width: 100%;
    max-height: min(88vh, 900px);
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.tour-k2-gallery-lightbox__caption {
    margin: 0.8rem 0 0;
    text-align: center;
    color: #dce6ec;
    font-size: 0.94rem;
    line-height: 1.5;
    max-width: 40rem;
    margin-inline: auto;
}

.tour-k2-gallery-lightbox__close {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 6;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 1.65rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.18s ease;
}

.tour-k2-gallery-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.tour-k2-gallery-lightbox__nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 6;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background 0.18s ease;
}

.tour-k2-gallery-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.18);
}

.tour-k2-gallery-lightbox__nav--prev {
    left: max(0.5rem, env(safe-area-inset-left));
}

.tour-k2-gallery-lightbox__nav--next {
    right: max(0.5rem, env(safe-area-inset-right));
}

@media (max-width: 640px) {
    .tour-k2-gallery-lightbox__pane {
        padding: 3rem 2.5rem;
    }

    .tour-k2-gallery-lightbox__nav {
        width: 42px;
        height: 42px;
        font-size: 1.7rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .tour-k2-gallery__thumb {
        transition: none;
    }

    .tour-k2-gallery__thumb:hover {
        transform: none;
    }

    [data-tour-masonry-gallery] .js-tour-masonry-gallery-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.tour-package-footer-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2.25rem;
    padding-top: 1rem;
}

.contact-cta {
    padding: 2.2rem 0;
}

.contact-cta-grid {
    display: grid;
    gap: 1.2rem;
    align-items: center;
}

.contact-cta-kicker {
    margin: 0 0 0.4rem;
    color: #b68a4a;
    font-weight: 700;
}

.contact-cta-copy h2 {
    margin: 0;
    color: var(--heading);
}

.contact-cta-media img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    max-height: 280px;
}

.newsletter-block {
    background: linear-gradient(180deg, rgba(13, 31, 35, 0.7), rgba(13, 31, 35, 0.85)),
        url("/assets/images/Fairy%20Meadows/DSC07052.jpg") center / cover no-repeat;
    color: #ecf4f8;
    padding: 2.8rem 0;
    text-align: center;
}

.newsletter-block h3 {
    margin: 0;
}

.newsletter-form {
    margin-top: 1rem;
    display: grid;
    gap: 0.7rem;
    max-width: 460px;
    margin-inline: auto;
}

.newsletter-form input {
    border: 1px solid #8ea0ae;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.65rem;
    border-radius: 6px;
}

.newsletter-form .btn {
    max-width: 220px;
    width: 100%;
    margin-inline: auto;
    padding: 0.56rem 0.9rem;
    font-size: 0.86rem;
}

.site-footer {
    margin-top: 1.5rem;
}

.footer-main {
    background: #1c2029;
    color: #d7dee6;
    padding: 3rem 0 2.8rem;
}

.footer-grid {
    display: grid;
    gap: 1.3rem;
}

.footer-grid h4 {
    margin: 0 0 0.6rem;
    color: #f0bf71;
    font-size: 0.95rem;
}

.footer-grid ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.38rem;
}

.footer-grid a {
    color: #d7dee6;
    font-size: 0.9rem;
    transition: color 160ms ease;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
    color: #f0bf71;
}

.footer-socials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    max-width: 108px;
}

.footer-socials a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #f0bf71;
    color: #273038;
    border: 1px solid rgba(17, 31, 39, 0.2);
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.footer-socials a svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 1.2;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
    background: #ffd58a;
    color: #1e2a32;
    transform: translateY(-1px);
}

.footer-legal {
    background: #161a22;
    color: #9ca9b7;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.85rem 0 1.05rem;
    font-size: 0.83rem;
}

.footer-legal a {
    color: #c9d3de;
}

.trip-calendar-hero {
    position: relative;
    min-height: min(78vh, 760px);
    height: min(78vh, 760px);
    overflow: hidden;
    background: #141b24;
}

.trip-calendar-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: min(78vh, 760px);
    object-fit: cover;
    object-position: center 44%;
    filter: saturate(1.05) contrast(1.05) brightness(0.78);
    display: block;
}

.trip-calendar-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 17, 28, 0.28) 0%, rgba(8, 17, 28, 0.76) 100%);
}

.trip-calendar-hero__content {
    position: absolute;
    inset: auto 0 0.7rem;
    color: #f2f6fb;
    z-index: 2;
}

.trip-calendar-hero__content .container,
.trip-calendar-hero__content {
    backdrop-filter: blur(1.5px);
}

.trip-calendar-hero__content h1 {
    margin: 0;
    color: #ffd79b;
    font-size: clamp(1.35rem, 3.2vw, 2.1rem);
    line-height: 1.12;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.72);
}

.trip-calendar-hero__content p {
    margin: 0.45rem 0 0;
    max-width: 560px;
    color: #f4f8fc;
    font-size: clamp(0.86rem, 1.35vw, 1rem);
    line-height: 1.45;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
}

.trip-calendar-section {
    padding-top: 1.5rem;
}

.trip-calendar-section__header h2 {
    margin: 0;
    color: var(--heading);
}

.trip-calendar-section__header p {
    margin: 0.45rem 0 0;
    color: var(--muted);
}

.trip-calendar-spot-grid {
    margin-top: 1rem;
    display: grid;
    gap: 0.8rem;
}

.trip-spot-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 210px;
}

.trip-spot-card img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    object-fit: cover;
    display: block;
}

.trip-spot-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0.85rem;
    background: linear-gradient(180deg, rgba(11, 19, 26, 0.2), rgba(11, 19, 26, 0.84));
}

.trip-spot-card__overlay p {
    margin: 0;
    color: #f5c77d;
    font-size: 0.78rem;
}

.trip-spot-card__overlay h3 {
    margin: 0.28rem 0 0;
    color: #edf2f8;
    font-size: 1rem;
}

.trip-spot-card__meta {
    margin-top: 0.48rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.trip-spot-card__meta span {
    color: #d7e2ec;
    font-size: 0.82rem;
}

.trip-spot-card__meta a {
    color: #1b252f;
    background: #f0bf71;
    border-radius: 999px;
    padding: 0.35rem 0.72rem;
    font-size: 0.76rem;
    font-weight: 700;
}

.trip-departure-grid {
    margin-top: 1.1rem;
    display: grid;
    gap: 1rem;
    padding-bottom: 1.2rem;
}

.trip-departure-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 340px;
    box-shadow: 0 14px 34px rgba(30, 41, 50, 0.18);
}

.trip-departure-card img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
}

.trip-departure-card__top {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    right: 0.9rem;
    display: flex;
    justify-content: flex-start;
    gap: 0.7rem;
}

.trip-departure-card__top span {
    background: rgba(8, 18, 29, 0.65);
    color: #f2f6fa;
    border: 1px solid rgba(255, 255, 255, 0.32);
    padding: 0.34rem 0.62rem;
    border-radius: 999px;
    font-size: 0.85rem;
}

.trip-departure-card__bottom {
    position: absolute;
    left: 0.72rem;
    right: 0.72rem;
    bottom: 0.72rem;
    border-radius: 14px;
    padding: 0.7rem 0.82rem;
    background: rgba(19, 26, 34, 0.66);
    backdrop-filter: blur(6px);
}

.trip-departure-card__bottom p {
    margin: 0;
    color: #d3e2f1;
    font-size: 0.82rem;
}

.trip-departure-card__title-row {
    margin-top: 0.35rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.55rem;
}

.trip-departure-card__title-row h3 {
    margin: 0;
    color: #f3f7fc;
    font-size: 1.35rem;
    line-height: 1.15;
}

.trip-departure-card__title-row strong {
    color: #f7d18f;
    font-size: 1.65rem;
    line-height: 1;
}

.trip-departure-card__link {
    margin-top: 0.65rem;
    display: inline-block;
    color: #0f1a23;
    background: #f0bf71;
    border-radius: 999px;
    padding: 0.42rem 0.82rem;
    font-size: 0.79rem;
    font-weight: 700;
}

.trip-departure-grid--compact {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.75rem;
}

.trip-departure-grid--compact .trip-departure-card {
    min-height: 240px;
    border-radius: 14px;
}

.trip-departure-grid--compact .trip-departure-card img {
    min-height: 240px;
}

.trip-departure-grid--compact .trip-departure-card__top {
    top: 0.65rem;
    left: 0.65rem;
    right: 0.65rem;
}

.trip-departure-grid--compact .trip-departure-card__top span {
    font-size: 0.72rem;
    padding: 0.24rem 0.44rem;
}

.trip-departure-grid--compact .trip-departure-card__bottom {
    left: 0.55rem;
    right: 0.55rem;
    bottom: 0.55rem;
    border-radius: 12px;
    padding: 0.56rem 0.62rem;
}

.trip-departure-grid--compact .trip-departure-card__bottom p {
    font-size: 0.76rem;
}

.trip-departure-grid--compact .trip-departure-card__title-row h3 {
    font-size: 1rem;
}

.trip-departure-grid--compact .trip-departure-card__title-row strong {
    font-size: 1.25rem;
}

.trip-departure-grid--compact .trip-departure-card__link {
    margin-top: 0.42rem;
    font-size: 0.73rem;
    padding: 0.36rem 0.72rem;
}

@media (min-width: 680px) {
    .trip-calendar-spot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trip-departure-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trip-departure-grid--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .trip-calendar-spot-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .trip-departure-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .trip-departure-grid--compact {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.sitemap-page {
    padding-top: 1.6rem;
}

.sitemap-page h1 {
    margin-top: 0;
    color: var(--heading);
}

.sitemap-columns {
    display: grid;
    gap: 1.4rem;
}

.sitemap-block h2 {
    margin: 0;
    color: #b68a4a;
    font-size: 1.05rem;
}

.sitemap-block ul {
    margin: 0.55rem 0 0;
    padding-left: 1rem;
    display: grid;
    gap: 0.34rem;
}

.sitemap-block a {
    color: #243846;
}

.terms-hero {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.terms-hero img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 35%;
}

.terms-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 20, 30, 0.25), rgba(9, 20, 30, 0.72));
    display: flex;
    align-items: end;
    padding-bottom: 1.8rem;
}

.terms-hero h1 {
    margin: 0;
    color: #f0bf71;
}

.terms-content {
    padding-top: 1.4rem;
    max-width: 920px;
}

.terms-content h2 {
    color: #b68a4a;
    font-size: 1.15rem;
    margin-top: 1.4rem;
    margin-bottom: 0.5rem;
}

.terms-content h3 {
    color: #b68a4a;
    margin-top: 1rem;
    margin-bottom: 0.35rem;
    font-size: 1rem;
}

.terms-content p,
.terms-content li {
    color: #2b3a44;
    line-height: 1.65;
}

.terms-content ol,
.terms-content ul {
    padding-left: 1.2rem;
}

.whatsapp-fab {
    --whatsapp-fab-green: #25d366;
    --whatsapp-fab-green-deep: #157d4d;
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 40;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(
        155deg,
        #3cdd7a 0%,
        var(--whatsapp-fab-green) 42%,
        var(--whatsapp-fab-green-deep) 100%
    );
    color: #ffffff;
    box-shadow:
        0 0 0 1px rgba(20, 36, 39, 0.14),
        0 10px 28px rgba(20, 36, 39, 0.12),
        0 10px 28px rgba(21, 137, 75, 0.36);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
    animation: whatsapp-fab-pop 0.75s cubic-bezier(0.22, 1.3, 0.36, 1) both,
        whatsapp-fab-glow 2.8s ease-in-out 0.85s infinite;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
    transform: scale(1.06);
    box-shadow:
        0 0 0 1px rgba(20, 36, 39, 0.18),
        0 14px 36px rgba(20, 36, 39, 0.16),
        0 14px 36px rgba(21, 137, 75, 0.48);
    filter: brightness(1.04);
}

.whatsapp-fab__icon {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.whatsapp-fab__hint {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translate(6px, -50%);
    max-width: min(220px, calc(100vw - 5rem));
    padding: 0.5rem 0.7rem;
    border-radius: 10px;
    background: var(--heading);
    color: #f4f6f8;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.35;
    text-align: left;
    white-space: normal;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.whatsapp-fab:hover .whatsapp-fab__hint,
.whatsapp-fab:focus-visible .whatsapp-fab__hint {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
}

@keyframes whatsapp-fab-pop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    65% {
        transform: scale(1.12);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes whatsapp-fab-glow {
    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(20, 36, 39, 0.14),
            0 10px 28px rgba(20, 36, 39, 0.12),
            0 10px 28px rgba(21, 137, 75, 0.36);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(20, 36, 39, 0.12),
            0 12px 36px rgba(20, 36, 39, 0.1),
            0 12px 38px rgba(37, 211, 102, 0.5),
            0 0 22px rgba(37, 211, 102, 0.28);
    }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-fab {
        animation: none;
    }

    .whatsapp-fab:hover,
    .whatsapp-fab:focus-visible {
        transform: none;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
        column-gap: 1.1rem;
        row-gap: 1rem;
    }

    .work-with-us-inner {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
        gap: 1.6rem;
    }

    .custom-expeditions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .custom-faq-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .destinations-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trip-difference-grid {
        grid-template-columns: 0.95fr 1.35fr;
        align-items: start;
        gap: 1.35rem;
    }

    .trip-difference-intro {
        position: sticky;
        top: 95px;
    }

    .trip-difference-pillars {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .upcoming-gallery-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .adventure-story-grid {
        grid-template-columns: 1.25fr 1fr;
        align-items: stretch;
    }

    .why-travel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .adventure-story-trust {
        padding-top: 1.15rem;
    }

    .grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-cta-grid {
        grid-template-columns: 1.1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 0.9fr;
    }

    .sitemap-columns {
        grid-template-columns: 1.2fr 1.2fr 0.8fr;
    }
}

@media (min-width: 860px) {
    .destinations-showcase-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.95rem;
    }

    .upcoming-gallery-hero img {
        min-height: 320px;
    }

    .upcoming-gallery-rail {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .adventure-story-grid {
        grid-template-columns: 1.35fr 1fr;
        gap: 1.4rem;
    }

    .why-travel-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .brand-logo {
        width: 62px;
        height: 62px;
    }

    .nav-toggle {
        display: none;
    }

    .site-nav {
        display: block;
        position: static;
        background: transparent;
        border-top: 0;
    }

    .nav-list {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0;
    }

    .nav-list > .nav-item > a {
        padding: 0.35rem 0;
    }

    .dropdown-panel {
        position: absolute;
        top: calc(100% + 0.7rem);
        left: 0;
        min-width: 250px;
        background: var(--header-bg-solid);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 14px;
        padding: 0.85rem 1rem;
        box-shadow: 0 20px 40px rgba(5, 10, 14, 0.34);
        z-index: 50;
    }

    .fullwidth-trigger {
        position: static;
    }

    .fullwidth-trigger > .dropdown-panel {
        top: 100%;
    }

    .has-dropdown:hover > .dropdown-panel,
    .has-dropdown:focus-within > .dropdown-panel,
    .has-dropdown.dropdown-open > .dropdown-panel {
        display: block;
    }

    .has-dropdown:hover > a .nav-arrow,
    .has-dropdown:focus-within > a .nav-arrow,
    .has-dropdown.dropdown-open > a .nav-arrow {
        transform: rotate(180deg) translateY(1px);
    }

    .dropdown-list {
        width: 280px;
    }

    .header-edge-dropdown > .dropdown-panel {
        top: calc(100% + 1.7rem);
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .dropdown-align-right > .dropdown-panel {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .dropdown-fullwidth {
        left: 0;
        right: 0;
        width: auto;
        transform: none;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        padding: 1.45rem 0 1.55rem;
    }

    .dropdown-inner {
        width: min(1440px, 94vw);
        margin-inline: auto;
    }

    .dropdown-mega .dropdown-inner {
        min-height: 355px;
    }

    .destinations-layout {
        display: grid;
        grid-template-columns: 1fr 280px;
        gap: 2rem;
        align-items: stretch;
    }

    .destinations-groups {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.5rem 1.8rem;
    }

    .destination-group h4 {
        margin: 0 0 0.7rem;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: #f1bd6f;
    }

    .destination-group ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 0.55rem;
    }

    .destination-group a {
        font-size: 0.88rem;
        line-height: 1.4;
        color: #d6e1e7;
        padding: 0;
    }

    .destination-feature {
        display: flex;
        justify-content: flex-end;
    }

    .feature-card {
        position: relative;
        width: 240px;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .feature-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 245px;
    }

    .feature-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(8, 17, 24, 0.04) 30%, rgba(8, 17, 24, 0.82) 100%);
    }

    .feature-badge {
        position: absolute;
        top: 0.55rem;
        right: 0.55rem;
        z-index: 2;
        background: #efbf74;
        color: #1d2129;
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        padding: 0.32rem 0.58rem;
        border-radius: 999px;
        line-height: 1;
    }

    .feature-title {
        position: absolute;
        left: 0.8rem;
        right: auto;
        bottom: 0.75rem;
        z-index: 2;
        font-weight: 700;
        color: #ffffff;
        font-size: 1.02rem;
        line-height: 1.25;
        max-width: calc(100% - 1.6rem);
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
    }

    .blog-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .expedition-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: none;
    }

    .expedition-card {
        transition: none;
    }

    [data-reveal-section] [data-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .work-with-us-media-frame,
    .work-with-us-media-frame::after {
        transition: none;
    }

    .work-with-us-media-frame:hover,
    .work-with-us-media-frame:focus-visible {
        transform: none;
    }

    .work-with-us-media-frame:hover img,
    .work-with-us-media-frame:focus-visible img {
        transform: none;
    }
}

/* ——— Header search + full-screen search dialog ——— */
.header-tools {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
}

.site-search-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 10px;
    background: transparent;
    color: var(--header-link);
    cursor: pointer;
    transition:
        color 160ms ease,
        border-color 160ms ease,
        background 160ms ease;
}

.site-search-trigger:hover,
.site-search-trigger:focus-visible {
    color: #ffd9c4;
    border-color: rgba(255, 217, 196, 0.55);
    outline: none;
}

.site-search-icon {
    display: block;
}

@media (max-width: 859px) {
    .header-inner .brand {
        order: 1;
    }

    .header-tools {
        order: 2;
        margin-left: auto;
    }

    .header-inner .site-nav {
        order: 3;
        flex: 1 1 100%;
    }
}

@media (min-width: 860px) {
    /* Brand | centered nav | search pinned to the right edge of the container */
    .header-inner {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        gap: 0.75rem 1.25rem;
    }

    .header-inner .site-nav {
        margin-left: 0;
        min-width: 0;
        justify-self: stretch;
    }

    .header-inner .site-nav .nav-list {
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 0.35rem;
    }

    .header-tools {
        margin-left: 0;
        justify-self: end;
    }
}

.site-search-dialog {
    width: 100vw;
    max-width: none;
    height: 100vh;
    max-height: none;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #f4f7f2;
}

.site-search-dialog::backdrop {
    background: rgba(10, 18, 22, 0.78);
    backdrop-filter: blur(6px);
}

.site-search-dialog-inner {
    box-sizing: border-box;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(1.5rem, 5vw, 3rem);
}

.site-search-form {
    width: min(820px, 100%);
    position: relative;
}

.site-search-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-search-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    column-gap: 0.55rem;
    row-gap: 0.55rem;
    align-items: end;
}

.site-search-main {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    padding-top: 0.55rem;
    min-width: 0;
}

.site-search-placeholder {
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0.55rem;
    font-size: clamp(1.35rem, 4vw, 2.1rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(244, 247, 242, 0.45);
    transition:
        transform 200ms ease,
        font-size 200ms ease,
        color 200ms ease;
    transform-origin: left center;
}

.site-search-input:focus + .site-search-placeholder,
.site-search-input:not(:placeholder-shown) + .site-search-placeholder {
    transform: translateY(-2.1rem) scale(0.72);
    color: rgba(244, 247, 242, 0.65);
}

.site-search-input {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0.75rem 0 0.45rem 0;
    border: 0;
    background: transparent;
    color: #f4f7f2;
    font-size: clamp(1.35rem, 4vw, 2.1rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    outline: none;
}

.site-search-line {
    grid-column: 1 / -1;
    grid-row: 2;
    display: block;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(244, 247, 242, 0.08),
        rgba(244, 247, 242, 0.82) 35%,
        rgba(244, 247, 242, 0.82) 65%,
        rgba(244, 247, 242, 0.08)
    );
}

.site-search-actions {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    flex-shrink: 0;
    padding-bottom: 0.2rem;
}

.site-search-clear,
.site-search-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid transparent;
    background: transparent;
    color: rgba(244, 247, 242, 0.72);
    cursor: pointer;
    border-radius: 10px;
    transition:
        color 160ms ease,
        border-color 160ms ease,
        background 160ms ease;
}

.site-search-clear {
    width: 40px;
    height: 40px;
}

.site-search-close {
    width: 44px;
    height: 44px;
}

.site-search-clear:hover,
.site-search-clear:focus-visible,
.site-search-close:hover,
.site-search-close:focus-visible {
    color: #ffd9c4;
    border-color: rgba(255, 217, 196, 0.35);
    background: rgba(255, 255, 255, 0.06);
    outline: none;
}

.site-search-clear[hidden] {
    display: none;
}

/* Custom × icons — avoids duplicate native search-cancel + separate affordances */
.site-search-clear-icon,
.site-search-close-icon {
    position: relative;
    display: block;
}

.site-search-clear-icon {
    width: 14px;
    height: 14px;
}

.site-search-close-icon {
    width: 18px;
    height: 18px;
}

.site-search-clear-icon::before,
.site-search-clear-icon::after,
.site-search-close-icon::before,
.site-search-close-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 2px;
    border-radius: 1px;
    background: currentColor;
}

.site-search-clear-icon::before,
.site-search-close-icon::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.site-search-clear-icon::after,
.site-search-close-icon::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.site-search-suggestions {
    margin-top: 1.25rem;
    max-height: min(42vh, 320px);
    overflow-y: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(16, 28, 32, 0.92);
    box-shadow: 0 24px 48px rgba(5, 10, 14, 0.45);
}

.site-search-suggestion {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #f4f7f2;
    font-size: 0.95rem;
    transition: background 140ms ease;
}

.site-search-suggestion:last-child {
    border-bottom: 0;
}

.site-search-suggestion:hover,
.site-search-suggestion:focus-visible {
    background: rgba(255, 217, 196, 0.08);
    outline: none;
}

.site-search-suggestion-title {
    font-weight: 600;
    color: #fff;
}

.site-search-suggestion-type {
    flex-shrink: 0;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(244, 247, 242, 0.45);
}

@media (max-width: 639px) {
    /* Same centered placement as desktop; scroll if keyboard + results exceed the viewport */
    .site-search-dialog-inner {
        align-items: center;
        justify-content: center;
        padding-top: max(1.25rem, env(safe-area-inset-top, 0px));
        padding-right: max(0.85rem, env(safe-area-inset-right, 0px));
        padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
        padding-left: max(0.85rem, env(safe-area-inset-left, 0px));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .site-search-form {
        width: 100%;
    }

    .site-search-field {
        column-gap: 0.65rem;
        row-gap: 0.75rem;
    }

    .site-search-main {
        padding-top: 0.85rem;
    }

    .site-search-placeholder {
        top: 0.85rem;
        font-size: clamp(1.05rem, 4.5vw, 1.35rem);
        line-height: 1.35;
        right: 0;
    }

    .site-search-input:focus + .site-search-placeholder,
    .site-search-input:not(:placeholder-shown) + .site-search-placeholder {
        transform: translateY(-2.45rem) scale(0.78);
    }

    .site-search-input {
        padding: 0.95rem 0 0.55rem 0;
        font-size: clamp(1.1rem, 4.8vw, 1.5rem);
        line-height: 1.35;
    }

    .site-search-actions {
        gap: 0.45rem;
        padding-bottom: 0.35rem;
        align-self: end;
    }

    .site-search-clear {
        width: 44px;
        height: 44px;
    }

    .site-search-close {
        width: 46px;
        height: 46px;
    }

    .site-search-line {
        margin-top: 0.15rem;
    }

    .site-search-suggestions {
        margin-top: 1.5rem;
        width: 100%;
        max-height: min(52vh, 380px);
        border-radius: 14px;
        border-color: rgba(255, 255, 255, 0.18);
        background: rgba(12, 22, 26, 0.96);
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .site-search-suggestion {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0.4rem;
        padding: 1rem 1.05rem;
        font-size: 1rem;
        line-height: 1.4;
    }

    .site-search-suggestion-title {
        display: block;
        width: 100%;
        order: 1;
    }

    .site-search-suggestion-type {
        order: 2;
        font-size: 0.68rem;
        letter-spacing: 0.14em;
        color: rgba(244, 247, 242, 0.55);
        padding: 0.2rem 0.45rem;
        border-radius: 6px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-search-placeholder {
        transition: none;
    }
}

/* Search results page */
.search-results-hero {
    padding: 2.25rem 0 1.25rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.96), var(--surface));
}

.search-results-heading {
    margin: 0;
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--heading);
    letter-spacing: -0.02em;
}

.search-results-query {
    display: inline-block;
    margin-left: 0.35rem;
    color: var(--accent-strong);
}

.search-results-note {
    margin: 0.85rem 0 0;
    color: var(--muted);
    font-size: 0.98rem;
    max-width: 62ch;
}

.search-results-section {
    padding-top: 1.75rem;
    padding-bottom: 3rem;
}

.search-results-meta {
    margin: 0 0 1.25rem;
    font-size: 0.88rem;
    color: var(--muted);
}

.search-results-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
}

.search-result-card {
    margin: 0;
}

.search-result-card-link {
    display: block;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: 0 12px 28px rgba(20, 36, 39, 0.06);
    transition:
        transform 200ms ease,
        box-shadow 200ms ease;
}

.search-result-card-link:hover,
.search-result-card-link:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(20, 36, 39, 0.12);
    outline: none;
}

.search-result-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.search-result-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.5s ease;
    will-change: transform;
}

.search-result-card-link:hover .search-result-card-media img,
.search-result-card-link:focus-visible .search-result-card-media img {
    transform: scale(1.06);
}

.search-result-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 18, 22, 0.05) 25%, rgba(10, 18, 22, 0.82) 100%);
    pointer-events: none;
}

.search-result-card-overlay-text {
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
}

.search-result-card-kind {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    z-index: 2;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 253, 249, 0.85);
    padding: 0.28rem 0.5rem;
    border-radius: 6px;
    background: rgba(20, 36, 39, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.search-result-card-title {
    margin: 0;
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    font-weight: 700;
    color: #fffdf9;
    line-height: 1.3;
    text-shadow: 0 2px 14px rgba(5, 10, 14, 0.55);
}

.search-result-card-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--heading);
    background: linear-gradient(180deg, #f0c56c, #d9a545);
    border: 1px solid rgba(180, 130, 60, 0.35);
}

.search-result-card-excerpt {
    margin: 0;
    padding: 0.85rem 1rem 1.05rem;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--muted);
}

.search-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem 1rem;
    margin-top: 2.25rem;
}

.search-pagination-pages {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    align-items: center;
}

.search-pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-strong);
    border: 1px solid rgba(184, 111, 63, 0.35);
    background: var(--surface);
    transition:
        background 160ms ease,
        color 160ms ease;
}

.search-pagination-link:hover,
.search-pagination-link:focus-visible {
    background: rgba(184, 111, 63, 0.12);
    outline: none;
}

.search-pagination-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fffdf9;
    background: var(--header-bg-solid);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

@media (prefers-reduced-motion: reduce) {
    .search-result-card-link {
        transition: none;
    }

    .search-result-card-media img {
        transition: none;
    }

    .search-result-card-link:hover .search-result-card-media img,
    .search-result-card-link:focus-visible .search-result-card-media img {
        transform: none;
    }
}

/* ==========================================================================
   Kalash Valley Festivals page (route: /kalash-valley-festivals)
   Reuses .tour-services-tabs chrome with a --festivals modifier so the
   existing accessible tab JS (tour-services-tabs.js) drives the panels.
   ========================================================================== */

.kalash-hero {
    padding-top: 1.5rem;
}

.kalash-hero-grid {
    display: grid;
    gap: 1.4rem;
    align-items: center;
}

.kalash-hero-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--accent-strong);
}

.kalash-hero-copy h1 {
    margin: 0.5rem 0 0.6rem;
    color: var(--heading);
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    line-height: 1.12;
}

.kalash-hero-lead {
    margin: 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.5vw, 1.08rem);
    max-width: 56ch;
}

.kalash-hero-actions {
    margin-top: 1.1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.kalash-hero-media {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 22px 44px rgba(20, 36, 39, 0.18);
    aspect-ratio: 4 / 3;
    position: relative;
    background: var(--surface-soft);
}

.kalash-hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

/* About */
.kalash-about-grid {
    display: grid;
    gap: 1.2rem;
    align-items: start;
}

.kalash-about-copy h2 {
    margin: 0 0 0.6rem;
    color: var(--heading);
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
}

.kalash-about-copy p {
    margin: 0 0 0.7rem;
    color: var(--text);
}

.kalash-about-copy p:last-child {
    margin-bottom: 0;
}

.kalash-about-highlights {
    list-style: none;
    margin: 0;
    padding: 1rem;
    display: grid;
    gap: 0.6rem;
    background: linear-gradient(180deg, #fffdf9, #f6efe4);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 12px 24px rgba(24, 40, 48, 0.06);
}

.kalash-about-highlights li {
    display: grid;
    grid-template-columns: minmax(7rem, auto) 1fr;
    gap: 0.65rem;
    align-items: baseline;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(20, 36, 39, 0.12);
}

.kalash-about-highlights li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.kalash-highlight-label {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--muted);
}

.kalash-highlight-value {
    color: var(--heading);
    font-weight: 600;
}

/* Festivals section header */
.kalash-festivals-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 1.2rem;
}

.kalash-festivals-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--accent-strong);
}

.kalash-festivals-header h2 {
    margin: 0.4rem 0 0.5rem;
    color: var(--heading);
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
}

.kalash-festivals-intro {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
}

/* Tabs — festivals modifier (extends .tour-services-tabs) */
.tour-services-tabs--festivals .tour-services-tabs__tablist {
    flex-wrap: wrap;
}

.tour-services-tabs--festivals .kalash-tab {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    text-align: left;
    padding: 0.85rem 0.8rem;
    line-height: 1.2;
}

.kalash-tab-season {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    transition: color 180ms ease;
}

.kalash-tab.is-active .kalash-tab-season {
    color: var(--accent-strong);
}

.kalash-tab-name {
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    font-weight: 700;
    color: inherit;
}

/* Panels */
.tour-services-tabs--festivals .tour-services-tabs__panel {
    padding: 0;
}

.kalash-panel-grid {
    display: grid;
    gap: 0;
}

.kalash-panel-media {
    position: relative;
    margin: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--surface-soft);
}

.kalash-panel-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
}

.kalash-panel-meta {
    position: absolute;
    left: 0.85rem;
    bottom: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 253, 249, 0.92);
    box-shadow: 0 8px 20px rgba(20, 36, 39, 0.18);
    font-size: 0.78rem;
    font-weight: 700;
}

.kalash-panel-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.55rem;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fffdf9;
    background: var(--accent);
}

.kalash-panel-pill--spring {
    background: #5b8c54;
}

.kalash-panel-pill--summer {
    background: #c97a2c;
}

.kalash-panel-pill--autumn {
    background: #a64d2c;
}

.kalash-panel-pill--winter {
    background: #2f5d75;
}

.kalash-panel-month {
    color: var(--heading);
}

.kalash-panel-body {
    padding: 1.1rem 1.15rem 1.4rem;
}

.kalash-panel-subtitle {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--accent-strong);
}

.kalash-panel-title {
    margin: 0.3rem 0 0.85rem;
    color: var(--heading);
    font-size: clamp(1.25rem, 2.2vw, 1.55rem);
    line-height: 1.2;
}

.kalash-panel-section {
    margin-top: 1rem;
}

.kalash-panel-section:first-of-type {
    margin-top: 0;
}

.kalash-panel-section h4 {
    margin: 0 0 0.4rem;
    color: var(--heading);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.kalash-panel-section p {
    margin: 0 0 0.55rem;
    color: var(--text);
    line-height: 1.65;
}

.kalash-panel-section p:last-child {
    margin-bottom: 0;
}

/* CTA card */
.kalash-cta-card {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 1.6rem 1.25rem;
    border-radius: 18px;
    background: linear-gradient(180deg, #fffdf9, #f1e7d6);
    border: 1px solid var(--border);
    box-shadow: 0 14px 32px rgba(24, 40, 48, 0.08);
}

.kalash-cta-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--accent-strong);
}

.kalash-cta-card h2 {
    margin: 0.3rem 0 0.6rem;
    color: var(--heading);
    font-size: clamp(1.3rem, 2.3vw, 1.7rem);
}

.kalash-cta-card p {
    margin: 0 0 1rem;
    color: var(--text);
}

/* Responsive layouts */
@media (min-width: 720px) {
    .kalash-hero-grid {
        grid-template-columns: 1.05fr 1fr;
        gap: 2rem;
    }

    .kalash-about-grid {
        grid-template-columns: 1.4fr 1fr;
        gap: 1.6rem;
    }

    .kalash-panel-grid {
        grid-template-columns: 5fr 7fr;
    }

    .kalash-panel-media {
        aspect-ratio: auto;
        height: 100%;
        min-height: 320px;
    }

    .kalash-panel-body {
        padding: 1.4rem 1.6rem 1.6rem;
    }
}

@media (min-width: 960px) {
    .kalash-hero-copy h1 {
        font-size: clamp(2rem, 3vw, 2.8rem);
    }

    .kalash-panel-grid {
        grid-template-columns: 4fr 6fr;
    }

    .kalash-panel-media {
        min-height: 380px;
    }
}

@media (max-width: 520px) {
    .tour-services-tabs--festivals .kalash-tab {
        padding: 0.7rem 0.55rem;
    }

    .kalash-tab-season {
        font-size: 0.66rem;
    }

    .kalash-tab-name {
        font-size: 0.86rem;
    }

    .kalash-panel-body {
        padding: 1rem 0.95rem 1.2rem;
    }
}
