:root {
    --ink: #090c0a;
    --ink-soft: #171c18;
    --green: #83b735;
    --green-dark: #628c23;
    --green-pale: #edf5df;
    --forest: #1d482d;
    --forest-deep: #12301f;
    --sage-surface: #f0f5ea;
    --sage-line: #d7e3cd;
    --cream: #f5f3ec;
    --white: #ffffff;
    --muted: #667069;
    --line: #dfe3de;
    --shadow: 0 24px 70px rgba(9, 12, 10, 0.12);
    --radius: 22px;
}

/* Searchable tour catalogue */
.destination-search-panel {
    display: grid;
    margin-bottom: 52px;
    padding: 22px;
    background: #fff;
    border: 1px solid #dde2da;
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(10, 16, 11, 0.08);
    grid-template-columns: minmax(190px, 0.8fr) minmax(240px, 1.25fr) minmax(210px, 0.85fr) auto auto;
    align-items: center;
    gap: 12px;
}

.destination-search-copy {
    display: flex;
    padding: 0 12px;
    flex-direction: column;
}

.destination-search-copy .eyebrow {
    margin-bottom: 3px;
}

.destination-search-copy strong {
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 800;
}

.destination-search-control {
    display: flex;
    min-height: 56px;
    padding: 0 17px;
    align-items: center;
    gap: 12px;
    background: #f4f6f1;
    border: 1px solid transparent;
    border-radius: 9px;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.destination-search-control:focus-within {
    background: #fff;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(143, 205, 65, 0.14);
}

.destination-search-control > i {
    color: var(--green-dark);
}

.destination-search-control input,
.destination-search-control select {
    width: 100%;
    min-width: 0;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 0;
    outline: 0;
    font: 700 0.82rem "Manrope", sans-serif;
}

.destination-search-control select {
    cursor: pointer;
}

.destination-search-panel > .btn {
    min-height: 56px;
    white-space: nowrap;
}

.destination-search-clear {
    display: grid;
    width: 42px;
    height: 42px;
    color: var(--muted);
    border: 1px solid #d9ded7;
    border-radius: 50%;
    place-items: center;
    transition: color 0.2s ease, background 0.2s ease;
}

.destination-search-clear:hover {
    color: #fff;
    background: var(--ink);
}

.destination-result-copy {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.destination-result-copy strong {
    color: var(--green-dark);
}

.destination-no-results {
    padding: 70px 24px;
    text-align: center;
    background: #fff;
    border: 1px solid #dde2da;
    border-radius: 14px;
}

.destination-no-results > i {
    display: grid;
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    color: var(--ink);
    background: var(--green);
    border-radius: 50%;
    place-items: center;
    font-size: 1.4rem;
}

.destination-no-results h3 {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.destination-no-results p {
    color: var(--muted);
}

.tour-footer .tour-price small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
}

.album-sample-note {
    display: inline-flex;
    margin: 2px 0 18px;
    padding: 6px 9px;
    color: #4d5c50;
    background: var(--green-pale);
    border-radius: 5px;
    font-size: 0.66rem;
    font-weight: 700;
}

/* Tour detail */
.tour-detail-hero {
    position: relative;
    display: flex;
    min-height: 700px;
    color: #fff;
    background-position: center;
    background-size: cover;
    align-items: flex-end;
}

.tour-detail-hero .page-hero-overlay {
    background: linear-gradient(90deg, rgba(3, 7, 4, 0.94), rgba(3, 7, 4, 0.43) 65%, rgba(3, 7, 4, 0.18));
}

.tour-detail-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 190px;
    padding-bottom: 90px;
}

.tour-detail-back {
    display: inline-flex;
    margin-bottom: 48px;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.78rem;
    font-weight: 800;
}

.tour-detail-back:hover {
    color: var(--green);
}

.tour-detail-hero h1 {
    max-width: 980px;
    margin: 10px 0 20px;
    font-size: clamp(3rem, 6vw, 6.3rem);
    font-weight: 700;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.tour-detail-hero-content > p {
    max-width: 750px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.08rem;
    line-height: 1.7;
}

.tour-detail-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.tour-detail-pills span {
    display: inline-flex;
    padding: 10px 14px;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(8px);
    font-size: 0.73rem;
    font-weight: 700;
}

.tour-detail-pills i {
    color: var(--green);
}

.tour-detail-main {
    background: var(--cream);
}

.tour-content-block {
    margin-bottom: 52px;
}

.tour-content-block h2,
.tour-list-card h2 {
    margin: 7px 0 24px;
    font-size: clamp(2rem, 3.5vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -0.05em;
}

.tour-section-intro {
    max-width: 760px;
    margin: -10px 0 28px;
    color: var(--muted);
    line-height: 1.75;
}

.tour-highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.tour-highlight {
    display: flex;
    min-height: 70px;
    padding: 15px 18px;
    align-items: center;
    gap: 15px;
    background: #fff;
    border: 1px solid #e0e4dd;
    border-radius: 9px;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.tour-highlight:hover {
    border-color: var(--green);
    box-shadow: 0 12px 28px rgba(12, 19, 13, 0.07);
    transform: translateY(-3px);
}

.tour-highlight span {
    display: grid;
    width: 35px;
    height: 35px;
    color: var(--green-dark);
    background: var(--green-pale);
    border-radius: 50%;
    place-items: center;
    flex: 0 0 auto;
    font-size: 0.66rem;
    font-weight: 800;
}

.tour-highlight strong {
    font-family: "Manrope", sans-serif;
    font-size: 0.82rem;
}

.tour-pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.tour-pricing-card {
    position: relative;
    padding: 25px;
    background: #fff;
    border: 1px solid #dce1da;
    border-radius: 11px;
    overflow: hidden;
}

.tour-pricing-card.is-featured {
    border-color: var(--green-dark);
    box-shadow: 0 14px 35px rgba(49, 91, 25, 0.1);
}

.tour-pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 7px 11px;
    color: var(--ink);
    background: var(--green);
    border-radius: 0 0 0 8px;
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.tour-pricing-card h3 {
    max-width: 75%;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.4;
}

.tour-pricing-row {
    display: flex;
    padding: 11px 0;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid #e8ebe6;
}

.tour-pricing-row span {
    color: var(--muted);
    font-size: 0.72rem;
}

.tour-pricing-row strong {
    font-family: "Manrope", sans-serif;
    font-size: 0.86rem;
}

.tour-price-disclaimer {
    display: flex;
    margin: 17px 0 0;
    align-items: flex-start;
    gap: 9px;
    color: var(--muted);
    font-size: 0.73rem;
    line-height: 1.6;
}

.tour-price-disclaimer i {
    margin-top: 4px;
    color: var(--green-dark);
}

.tour-list-card {
    height: 100%;
    padding: 30px;
    background: #fff;
    border: 1px solid #dee2dc;
    border-radius: 12px;
}

.tour-list-card h2 {
    margin: 14px 0 23px;
    font-size: 1.65rem;
}

.tour-list-icon {
    display: grid;
    width: 43px;
    height: 43px;
    color: var(--ink);
    background: var(--green);
    border-radius: 50%;
    place-items: center;
}

.tour-list-card-excluded .tour-list-icon {
    color: #fff;
    background: var(--ink);
}

.tour-list-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tour-list-card li {
    display: flex;
    padding: 11px 0;
    align-items: flex-start;
    gap: 10px;
    color: #566058;
    border-top: 1px solid #edf0eb;
    font-size: 0.77rem;
    line-height: 1.55;
}

.tour-list-card li i {
    margin-top: 5px;
    color: var(--green-dark);
    font-size: 0.62rem;
}

.tour-list-card-excluded li i {
    color: #8b332f;
}

.tour-travel-note {
    display: flex;
    margin-top: 52px;
    margin-bottom: 0;
    padding: 34px;
    align-items: flex-start;
    gap: 22px;
    color: #fff;
    background: var(--ink);
    border-radius: 12px;
}

.tour-note-icon {
    display: grid;
    width: 54px;
    height: 54px;
    color: var(--ink);
    background: var(--green);
    border-radius: 50%;
    place-items: center;
    flex: 0 0 auto;
}

.tour-travel-note h2 {
    margin: 4px 0 10px;
    font-size: 1.7rem;
}

.tour-travel-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    line-height: 1.7;
}

.tour-booking-card {
    position: sticky;
    top: 125px;
    padding: 34px;
    background: #fff;
    border: 1px solid #dce1da;
    border-radius: 14px;
    box-shadow: 0 20px 55px rgba(8, 14, 9, 0.1);
}

.tour-booking-label,
.tour-booking-basis {
    display: block;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
}

.tour-booking-price {
    display: block;
    margin: 4px 0 0;
    font-family: "Manrope", sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1.05;
}

.tour-couple-price {
    display: flex;
    margin: 25px 0 5px;
    padding: 15px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--green-pale);
    border-radius: 8px;
}

.tour-couple-price span {
    font-size: 0.72rem;
    font-weight: 700;
}

.tour-couple-price strong {
    font-family: "Manrope", sans-serif;
    font-size: 0.87rem;
}

.tour-booking-facts {
    margin: 22px 0;
}

.tour-booking-facts > div {
    display: flex;
    padding: 15px 0;
    align-items: flex-start;
    gap: 13px;
    border-bottom: 1px solid #e7eae5;
}

.tour-booking-facts > div > i {
    width: 18px;
    margin-top: 4px;
    color: var(--green-dark);
    text-align: center;
}

.tour-booking-facts span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.tour-booking-facts small {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 0.63rem;
    text-transform: uppercase;
}

.tour-booking-facts strong {
    font-size: 0.75rem;
    line-height: 1.5;
}

.tour-whatsapp-link {
    display: flex;
    min-height: 51px;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #fff;
    background: #128c4b;
    border-radius: 7px;
    font-size: 0.76rem;
    font-weight: 800;
    transition: background 0.2s ease, transform 0.2s ease;
}

.tour-whatsapp-link:hover {
    color: #fff;
    background: #0c713b;
    transform: translateY(-2px);
}

.tour-booking-card > p {
    margin: 17px 0 0;
    color: var(--muted);
    font-size: 0.67rem;
    line-height: 1.55;
    text-align: center;
}

.not-found-section {
    min-height: 70vh;
    padding-top: 220px;
    background: var(--cream);
}

.not-found-section h1 {
    margin: 8px 0 16px;
    font-size: clamp(2.6rem, 5vw, 5rem);
}

.not-found-section p {
    margin-bottom: 26px;
    color: var(--muted);
}

@media (max-width: 1199.98px) {
    .destination-search-panel {
        grid-template-columns: 1fr 1fr;
    }

    .destination-search-copy {
        grid-column: 1 / 3;
    }

    .destination-search-panel > .btn {
        grid-column: 1 / 3;
    }

    .destination-search-clear {
        position: absolute;
        right: 32px;
        margin-top: -144px;
    }

    .tour-booking-card {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .destination-search-panel {
        padding: 18px;
        grid-template-columns: 1fr;
    }

    .destination-search-copy,
    .destination-search-panel > .btn {
        grid-column: auto;
    }

    .destination-search-clear {
        position: static;
        width: 100%;
        height: 40px;
        margin: 0;
        border-radius: 7px;
    }

    .tour-detail-hero {
        min-height: 650px;
    }

    .tour-detail-hero-content {
        padding-top: 175px;
        padding-bottom: 60px;
    }

    .tour-detail-back {
        margin-bottom: 32px;
    }

    .tour-detail-hero h1 {
        font-size: clamp(2.65rem, 13vw, 4.4rem);
    }

    .tour-highlight-grid,
    .tour-pricing-grid {
        grid-template-columns: 1fr;
    }

    .tour-content-block h2 {
        font-size: 2.25rem;
    }

    .tour-travel-note {
        padding: 26px;
        flex-direction: column;
    }

    .tour-booking-card {
        padding: 25px;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "DM Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.lightbox-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar,
.btn {
    font-family: "Manrope", sans-serif;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

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

img {
    max-width: 100%;
}

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

::selection {
    color: var(--ink);
    background: var(--green);
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--ink);
    background: var(--white);
    border-radius: 6px;
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    max-width: 1240px;
}

.section-pad {
    padding: 110px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--green-dark);
    font-family: "Manrope", sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 2px;
    content: "";
    background: currentColor;
}

.eyebrow-light {
    color: #c8ee8d;
}

.display-title,
.section-heading h2,
.about-intro h2,
.story-section h2,
.destinations-section h2,
.gallery-section h2,
.contact-section h2 {
    font-size: clamp(2.35rem, 5vw, 4.7rem);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 1.04;
}

.display-title em,
.page-hero h1 em {
    color: var(--green);
    font-family: Georgia, serif;
    font-weight: 400;
}

.lead-copy {
    color: #3e4841;
    font-size: 1.25rem;
    line-height: 1.7;
}

.btn {
    min-height: 50px;
    padding: 13px 22px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn i {
    margin-left: 8px;
    transition: transform 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-brand {
    color: var(--ink);
    background: var(--green);
    border-color: var(--green);
    box-shadow: 0 10px 28px rgba(131, 183, 53, 0.2);
}

.btn-brand:hover,
.btn-brand:focus {
    color: var(--white);
    background: var(--green-dark);
    border-color: var(--green-dark);
    box-shadow: 0 14px 32px rgba(98, 140, 35, 0.3);
}

.btn-outline-light:hover {
    color: var(--ink);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
}

.text-link i {
    transition: transform 0.25s ease;
}

.text-link:hover i {
    transform: translateX(5px);
}

/* Header */
.topbar {
    position: relative;
    z-index: 1031;
    padding: 9px 0;
    color: rgba(255, 255, 255, 0.75);
    background: #050706;
    font-size: 0.73rem;
}

.topbar p {
    letter-spacing: 0.02em;
}

.pulse-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(131, 183, 53, 0.8);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    70% { box-shadow: 0 0 0 8px rgba(131, 183, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(131, 183, 53, 0); }
}

.topbar-links {
    align-items: center;
    gap: 24px;
}

.topbar-links a {
    transition: color 0.2s ease;
}

.topbar-links a:hover {
    color: var(--green);
}

.topbar-links i {
    margin-right: 6px;
}

.site-header {
    position: absolute;
    z-index: 1030;
    top: 36px;
    right: 0;
    left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.site-header.is-scrolled {
    position: fixed;
    top: 0;
    background: rgba(8, 11, 9, 0.97);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
}

.site-header .navbar {
    min-height: 86px;
    padding: 0;
}

.brand-lockup {
    display: block;
    width: 175px;
    height: auto;
    margin: 0;
    padding: 0;
}

.brand-logo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.navbar-nav {
    gap: 6px;
}

.site-header .nav-link {
    position: relative;
    padding: 31px 13px !important;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    font-weight: 700;
}

.site-header .nav-link::after {
    position: absolute;
    right: 13px;
    bottom: 22px;
    left: 13px;
    height: 2px;
    content: "";
    background: var(--green);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--white);
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.mega-dropdown {
    position: static;
}

.mega-trigger > i {
    margin-left: 5px;
    font-size: 0.62rem;
    transition: transform 0.25s ease;
}

.mega-menu {
    position: absolute;
    z-index: 1050;
    top: calc(100% - 1px);
    right: 0;
    left: 0;
    visibility: hidden;
    padding: 30px 0;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.99);
    border-top: 3px solid var(--green);
    box-shadow: 0 30px 65px rgba(4, 8, 5, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
    backdrop-filter: blur(18px);
}

.mega-menu::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 16px;
    content: "";
}

.mega-dropdown:hover .mega-menu,
.mega-dropdown:focus-within .mega-menu,
.mega-dropdown.is-open .mega-menu,
.mega-menu:hover {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mega-dropdown:hover .mega-trigger > i,
.mega-dropdown:focus-within .mega-trigger > i,
.mega-dropdown.is-open .mega-trigger > i {
    transform: rotate(180deg);
}

.mega-menu-grid {
    display: grid;
    min-height: 276px;
    grid-template-columns: 1.55fr 0.72fr 0.85fr;
    gap: 34px;
}

.mega-column {
    padding: 5px 0;
}

.mega-column + .mega-column {
    padding-left: 30px;
    border-left: 1px solid var(--line);
}

.mega-label {
    display: block;
    margin-bottom: 18px;
    color: #7b857d;
    font-family: "Manrope", sans-serif;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.mega-destination-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 20px;
}

.mega-destination-list a {
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.mega-destination-list a:first-child {
    grid-column: 1 / 3;
    background: var(--green-pale);
}

.mega-destination-list a:hover,
.mega-destination-list a:focus-visible {
    color: var(--green-dark);
    background: #f3f6ef;
    transform: translateX(3px);
}

.mega-destination-list a > i {
    display: grid;
    width: 40px;
    height: 40px;
    color: var(--ink);
    background: var(--green);
    border-radius: 50%;
    flex: 0 0 auto;
    place-items: center;
    font-size: 0.9rem;
}

.mega-destination-list a > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.mega-destination-list strong {
    font-family: "Manrope", sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
}

.mega-destination-list small {
    overflow: hidden;
    color: #7a847d;
    font-size: 0.68rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mega-text-link {
    display: flex;
    padding: 11px 0;
    align-items: center;
    justify-content: space-between;
    color: #2f3832;
    border-bottom: 1px solid #ebeee9;
    font-family: "Manrope", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    transition: color 0.2s ease, padding 0.2s ease;
}

.mega-text-link i {
    color: var(--green-dark);
    font-size: 0.7rem;
}

.mega-text-link:hover,
.mega-text-link:focus-visible {
    padding-left: 5px;
    color: var(--green-dark);
}

.mega-all-link {
    display: inline-flex;
    margin-top: 18px;
    padding-bottom: 4px;
    align-items: center;
    gap: 8px;
    color: var(--green-dark);
    border-bottom: 1px solid var(--green-dark);
    font-family: "Manrope", sans-serif;
    font-size: 0.74rem;
    font-weight: 800;
}

.mega-feature {
    position: relative;
    display: block;
    min-height: 276px;
    overflow: hidden;
    color: var(--white);
    border-radius: 10px;
}

.mega-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mega-feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 3, 0.9), rgba(2, 6, 3, 0.06) 68%);
}

.mega-feature-copy {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 20px;
    left: 22px;
    display: flex;
    flex-direction: column;
}

.mega-feature-copy small {
    margin-bottom: 5px;
    color: #d7f5aa;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.mega-feature-copy strong {
    font-family: "Manrope", sans-serif;
    font-size: 1.25rem;
    line-height: 1.2;
}

.mega-feature-copy em {
    margin-top: 13px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 700;
}

.mega-feature-copy em i {
    margin-left: 5px;
    transition: transform 0.25s ease;
}

.mega-feature:hover img {
    transform: scale(1.06);
}

.mega-feature:hover .mega-feature-copy em i {
    transform: translateX(4px);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.4);
}

/* Hero */
.hero-section {
    position: relative;
    padding-bottom: 86px;
    background: var(--cream);
}

.hero-slide {
    position: relative;
    min-height: 790px;
    background-position: center;
    background-size: cover;
}

.hero-overlay,
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 7, 4, 0.82) 0%, rgba(4, 8, 5, 0.43) 52%, rgba(4, 8, 5, 0.1) 100%),
        linear-gradient(0deg, rgba(3, 7, 4, 0.42), transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 790px;
    padding-top: 150px;
    padding-bottom: 145px;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: #d7f6a9;
    font-family: "Manrope", sans-serif;
    font-size: 0.83rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-kicker::before {
    width: 42px;
    height: 2px;
    content: "";
    background: var(--green);
}

.hero-content h1,
.hero-content h2 {
    max-width: 900px;
    margin-bottom: 24px;
    font-size: clamp(3.7rem, 8vw, 7.5rem);
    font-weight: 700;
    letter-spacing: -0.07em;
    line-height: 0.9;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.hero-content p {
    max-width: 590px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.2rem;
    line-height: 1.65;
}

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

.hero-control {
    top: auto;
    bottom: 122px;
    width: 52px;
    height: 52px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    opacity: 1;
}

.carousel-control-prev.hero-control {
    right: 96px;
    left: auto;
}

.carousel-control-next.hero-control {
    right: 32px;
}

.hero-control:hover {
    color: var(--ink);
    background: var(--white);
}

.hero-section .carousel-indicators {
    right: auto;
    bottom: 52px;
    left: 50%;
    z-index: 4;
    margin: 0;
    transform: translateX(-50%);
}

.hero-section .carousel-indicators [data-bs-target] {
    width: 44px;
    height: 3px;
    margin: 0 5px;
    border: 0;
}

.trip-finder-wrap {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 0;
    left: 0;
}

.trip-finder {
    position: relative;
    z-index: 20;
    display: grid;
    padding: 14px;
    overflow: visible;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 16px;
    box-shadow: var(--shadow);
    grid-template-columns: 0.78fr 1.1fr 1.1fr 1.1fr auto;
    gap: 10px;
    backdrop-filter: blur(18px);
}

.finder-heading {
    display: flex;
    padding: 11px 18px;
    flex-direction: column;
    justify-content: center;
    background: var(--green-pale);
    border-radius: 10px;
    font-family: "Manrope", sans-serif;
    font-size: 0.95rem;
}

.finder-heading span {
    color: #66725e;
    font-size: 0.72rem;
}

.finder-heading strong {
    font-size: 1.22rem;
}

.finder-field {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 10px 13px;
    overflow: visible;
    align-items: center;
    gap: 11px;
    background: #f8faf6;
    border: 1px solid #dce2d8;
    border-radius: 10px;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.finder-field:hover {
    background: var(--white);
    border-color: #b9c5b2;
    transform: translateY(-1px);
}

.finder-field:focus-within {
    background: var(--white);
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(131, 183, 53, 0.13);
}

.finder-field-icon {
    display: grid;
    width: 38px;
    height: 38px;
    color: var(--ink);
    background: var(--green);
    border-radius: 9px;
    flex: 0 0 auto;
    place-items: center;
    font-size: 0.9rem;
}

.finder-field-content {
    min-width: 0;
    overflow: visible;
    flex: 1;
}

.finder-field label {
    display: block;
    margin: 0 0 1px;
    color: #7a857c;
    font-family: "Manrope", sans-serif;
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.finder-select-wrap {
    position: relative;
    overflow: visible;
}

.finder-select-wrap > i {
    position: absolute;
    top: 50%;
    right: 2px;
    color: #566159;
    font-size: 0.62rem;
    pointer-events: none;
    transform: translateY(-50%);
    transition: color 0.2s ease, transform 0.2s ease;
}

.finder-field:focus-within .finder-select-wrap > i {
    color: var(--green-dark);
    transform: translateY(-50%) rotate(180deg);
}

.finder-field select {
    width: 100%;
    max-width: 100%;
    padding: 2px 23px 2px 0;
    overflow: hidden;
    color: var(--ink);
    background: transparent;
    border: 0;
    outline: 0;
    appearance: none;
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.finder-select-wrap .choices {
    margin: 0;
    overflow: visible;
    color: var(--ink);
    font-size: 0.84rem;
}

.finder-select-wrap .choices__inner {
    min-height: 0;
    padding: 0 !important;
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: inherit;
    font-weight: 700;
}

.finder-select-wrap .choices__list--single {
    padding: 2px 23px 2px 0;
}

.finder-select-wrap .choices__list--single .choices__item {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.finder-select-wrap .choices[data-type*="select-one"]::after {
    display: none;
}

.finder-select-wrap .choices__list--dropdown,
.finder-select-wrap .choices__list[aria-expanded] {
    top: calc(100% + 14px);
    bottom: auto;
    left: -51px;
    z-index: 1100;
    width: calc(100% + 64px);
    min-width: 245px;
    margin: 0;
    padding: 8px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid #dce3d9;
    border-radius: 12px;
    box-shadow: 0 22px 50px rgba(13, 31, 21, 0.2);
    opacity: 0;
    transform: translateY(8px);
    visibility: hidden;
    word-break: normal;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.finder-select-wrap .choices.is-open .choices__list--dropdown,
.finder-select-wrap .choices.is-open .choices__list[aria-expanded] {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.finder-select-wrap .choices__list--dropdown .choices__list,
.finder-select-wrap .choices__list[aria-expanded] .choices__list {
    max-height: 280px;
}

.finder-select-wrap .choices__list--dropdown .choices__item,
.finder-select-wrap .choices__list[aria-expanded] .choices__item {
    position: relative;
    padding: 11px 36px 11px 12px;
    color: #263129;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.18s ease, background 0.18s ease;
}

.finder-select-wrap .choices__list--dropdown .choices__item--selectable.is-highlighted,
.finder-select-wrap .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
    color: var(--green-dark);
    background: var(--green-pale);
}

.finder-select-wrap .choices__list--dropdown .choices__item--selectable.is-selected::after,
.finder-select-wrap .choices__list[aria-expanded] .choices__item--selectable.is-selected::after {
    position: absolute;
    top: 50%;
    right: 13px;
    color: var(--green-dark);
    content: "\2713";
    font-size: 0.82rem;
    font-weight: 800;
    opacity: 1;
    transform: translateY(-50%);
}

.finder-select-wrap .choices__list--dropdown .choices__placeholder,
.finder-select-wrap .choices__list[aria-expanded] .choices__placeholder {
    color: #7a857c;
    opacity: 1;
}

.finder-select-wrap .choices.is-open + i {
    color: var(--green-dark);
    transform: translateY(-50%) rotate(180deg);
}

.finder-button {
    align-self: center;
    height: 62px;
    min-width: 158px;
    margin: 0;
    border-radius: 10px;
}

/* Home sections */
.intro-section {
    background: var(--cream);
}

.intro-section .display-title {
    max-width: 840px;
}

.stats-grid {
    position: relative;
    isolation: isolate;
    display: grid;
    margin-top: 80px;
    padding: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #09130d 0%, #13291b 52%, #0d1d13 100%);
    border: 1px solid rgba(131, 183, 53, 0.22);
    border-radius: 18px;
    box-shadow: 0 28px 70px rgba(8, 25, 14, 0.18);
    grid-template-columns: repeat(4, 1fr);
}

.stats-grid::before {
    position: absolute;
    z-index: -1;
    top: -150px;
    right: -90px;
    width: 390px;
    height: 390px;
    background: radial-gradient(circle, rgba(131, 183, 53, 0.2), transparent 68%);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.stat-item {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 136px;
    padding: 24px 25px;
    color: var(--white);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    align-items: center;
    gap: 16px;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.stat-item.reveal {
    transition: opacity 0.75s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.75s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.stat-item:first-child {
    padding-left: 25px;
}

.stat-item:last-child {
    border: 0;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 0 0 1px rgba(131, 183, 53, 0.16);
    transform: translateY(-4px);
}

.stat-item.reveal.is-visible:hover {
    transform: translateY(-4px);
}

.stat-icon {
    display: grid;
    width: 48px;
    height: 48px;
    color: #18320f;
    background: linear-gradient(135deg, #a8dc5c, var(--green));
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(78, 137, 34, 0.22);
    flex: 0 0 48px;
    place-items: center;
    font-size: 1rem;
    transition: border-radius 0.3s ease, transform 0.3s ease;
}

.stat-item:hover .stat-icon {
    border-radius: 50%;
    transform: rotate(-5deg) scale(1.06);
}

.stat-content {
    min-width: 0;
}

.stat-content strong {
    display: block;
    margin-bottom: 5px;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.8rem, 2.6vw, 2.65rem);
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1;
}

.stat-content .stat-unit {
    color: var(--green);
    font-size: 0.52em;
    letter-spacing: -0.02em;
}

.stat-content > span {
    display: block;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.76rem;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.featured-section {
    background: var(--white);
}

.section-heading {
    display: flex;
    margin-bottom: 50px;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.tour-card {
    height: 100%;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.tour-card:hover {
    box-shadow: 0 24px 55px rgba(8, 12, 9, 0.14);
    transform: translateY(-8px);
}

.tour-image {
    position: relative;
    display: block;
    height: 285px;
    overflow: hidden;
    background: #dfe4dc;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.65, 0.28, 1);
}

.tour-card:hover .tour-image img {
    transform: scale(1.07);
}

.tour-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.24), transparent 48%);
}

.tour-tag {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;
    padding: 7px 11px;
    color: var(--ink);
    background: var(--green);
    border-radius: 4px;
    font-family: "Manrope", sans-serif;
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tour-arrow {
    position: absolute;
    z-index: 2;
    right: 18px;
    bottom: 18px;
    display: grid;
    width: 42px;
    height: 42px;
    color: var(--ink);
    background: var(--white);
    border-radius: 50%;
    opacity: 0;
    place-items: center;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tour-card:hover .tour-arrow {
    opacity: 1;
    transform: translateY(0);
}

.tour-body {
    padding: 26px;
}

.tour-region {
    margin-bottom: 10px;
    color: var(--green-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tour-region i {
    margin-right: 5px;
}

.tour-body h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.tour-body h3 a:hover {
    color: var(--green-dark);
}

.tour-body p {
    min-height: 52px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.tour-meta {
    display: flex;
    margin: 20px 0;
    padding: 14px 0;
    align-items: center;
    justify-content: space-between;
    color: #3f4741;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: 0.76rem;
    font-weight: 700;
}

.tour-meta i {
    margin-right: 5px;
    color: var(--green-dark);
}

.tour-price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.tour-price span {
    color: var(--muted);
    font-size: 0.72rem;
}

.tour-price strong {
    font-family: "Manrope", sans-serif;
    font-size: 1.16rem;
}

.difference-section {
    padding-top: 0;
}

.difference-card {
    overflow: hidden;
    background: var(--forest-deep);
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(24, 63, 38, 0.14);
}

.difference-image {
    position: relative;
    min-height: 720px;
}

.difference-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    right: 28px;
    bottom: 28px;
    display: flex;
    padding: 17px 20px;
    align-items: center;
    gap: 13px;
    color: var(--ink);
    background: var(--green);
    border-radius: 8px;
    transform: rotate(-2deg);
}

.floating-badge i {
    font-size: 1.65rem;
}

.floating-badge span {
    font-size: 0.78rem;
    line-height: 1.3;
}

.difference-content {
    position: relative;
    display: flex;
    padding: 76px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 10%, rgba(131, 183, 53, 0.16), transparent 34%),
        linear-gradient(145deg, var(--forest), var(--forest-deep));
    flex-direction: column;
    justify-content: center;
}

.difference-content h2 {
    margin-bottom: 22px;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 1.03;
}

.difference-content > p {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.05rem;
    line-height: 1.7;
}

.feature-list {
    margin: 22px 0 34px;
}

.feature-item {
    display: flex;
    padding: 22px 0;
    gap: 18px;
    border-bottom: 1px solid rgba(218, 239, 195, 0.18);
}

.feature-item > i {
    width: 42px;
    color: #a8d568;
    font-size: 1.35rem;
}

.feature-item h3 {
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 800;
}

.feature-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.84rem;
    line-height: 1.55;
}

.difference-content .btn {
    align-self: flex-start;
}

.reviews-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--sage-surface) 100%);
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 14px;
}

.rating-summary > strong {
    color: var(--forest);
    font-family: "Manrope", sans-serif;
    font-size: 2.7rem;
}

.rating-summary div {
    display: flex;
    flex-direction: column;
}

.stars,
.review-stars {
    color: var(--green-dark);
    letter-spacing: 0.1em;
}

.rating-summary small {
    color: var(--muted);
}

.review-card {
    display: flex;
    min-height: 370px;
    padding: 34px;
    background: var(--white);
    border: 1px solid var(--sage-line);
    border-radius: 12px;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    border-color: rgba(98, 140, 35, 0.34);
    box-shadow: 0 20px 45px rgba(41, 84, 49, 0.1);
    transform: translateY(-5px);
}

.review-stars {
    margin-bottom: 25px;
    font-size: 0.82rem;
}

.review-card blockquote {
    margin-bottom: 30px;
    color: #303933;
    font-family: Georgia, serif;
    font-size: 1.12rem;
    line-height: 1.7;
}

.review-author {
    display: flex;
    margin-top: auto;
    align-items: center;
    gap: 13px;
}

.review-author > span {
    display: grid;
    width: 48px;
    height: 48px;
    color: var(--forest);
    background: var(--green-pale);
    border: 1px solid rgba(98, 140, 35, 0.25);
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 800;
    place-items: center;
}

.review-author div {
    display: flex;
    flex-direction: column;
}

.review-author strong {
    font-family: "Manrope", sans-serif;
    font-size: 0.88rem;
}

.review-author small {
    color: var(--muted);
    font-size: 0.73rem;
}

.review-controls {
    display: flex;
    margin-top: 30px;
    padding-right: 64px;
    justify-content: flex-end;
    gap: 9px;
}

.review-controls button {
    display: grid;
    width: 48px;
    height: 48px;
    color: var(--white);
    background: var(--forest);
    border: 0;
    border-radius: 50%;
    place-items: center;
    transition: background 0.25s ease, transform 0.25s ease;
}

.review-controls button:hover {
    color: var(--white);
    background: var(--green);
    transform: translateY(-2px);
}

.gallery-preview {
    background: var(--white);
}

.preview-grid {
    display: grid;
    min-height: 650px;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 14px;
}

.preview-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.preview-item-1 {
    grid-row: 1 / 3;
}

.preview-item-4 {
    grid-column: 2 / 4;
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, filter 0.5s ease;
}

.preview-item::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.66), transparent 52%);
}

.preview-item span {
    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 18px;
    left: 20px;
    display: flex;
    color: var(--white);
    align-items: center;
    justify-content: space-between;
    font-family: "Manrope", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
}

.preview-item:hover img {
    filter: saturate(1.1);
    transform: scale(1.06);
}

/* Internal page hero */
.page-hero {
    position: relative;
    display: flex;
    min-height: 720px;
    background-position: center;
    background-size: cover;
    align-items: center;
}

.page-hero-compact {
    min-height: 620px;
}

.page-hero-contact {
    min-height: 600px;
    background-position: center 62%;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 130px;
    color: var(--white);
}

.page-hero h1 {
    max-width: 980px;
    margin-bottom: 24px;
    font-size: clamp(3.4rem, 7vw, 7rem);
    font-weight: 700;
    letter-spacing: -0.07em;
    line-height: 0.98;
}

.page-hero p {
    max-width: 610px;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.18rem;
    line-height: 1.65;
}

/* About */
.about-intro {
    background: var(--white);
}

.story-section {
    background: var(--cream);
}

.story-collage {
    position: relative;
    min-height: 650px;
}

.story-main {
    width: 84%;
    height: 590px;
    object-fit: cover;
    border-radius: 12px;
}

.story-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 44%;
    height: 265px;
    object-fit: cover;
    border: 10px solid var(--cream);
    border-radius: 8px;
}

.story-note {
    position: absolute;
    top: 32px;
    right: 0;
    display: flex;
    width: 168px;
    height: 168px;
    color: var(--ink);
    background: var(--green);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transform: rotate(7deg);
}

.story-note strong {
    font-family: "Manrope", sans-serif;
    font-size: 1.05rem;
}

.story-note span {
    font-size: 0.75rem;
}

.story-section h2 {
    margin-bottom: 26px;
}

.story-section p {
    color: #4f5952;
    font-size: 1.02rem;
    line-height: 1.75;
}

.check-list {
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    padding: 15px 0;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #d8dcd4;
    font-weight: 700;
}

.check-list i {
    display: grid;
    width: 27px;
    height: 27px;
    color: var(--white);
    background: var(--green-dark);
    border-radius: 50%;
    font-size: 0.68rem;
    place-items: center;
}

.values-section {
    background: var(--white);
}

.value-card {
    position: relative;
    height: 100%;
    min-height: 330px;
    padding: 34px;
    overflow: hidden;
    background: var(--cream);
    border-radius: 10px;
    transition: color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

.value-card > span {
    position: absolute;
    top: 22px;
    right: 24px;
    color: #aab1a9;
    font-family: "Manrope", sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
}

.value-card > i {
    margin: 34px 0 48px;
    color: var(--green-dark);
    font-size: 2.1rem;
}

.value-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
}

.value-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.value-card:hover {
    color: var(--white);
    background: var(--ink);
    transform: translateY(-8px);
}

.value-card:hover > i {
    color: var(--green);
}

.value-card:hover p {
    color: rgba(255, 255, 255, 0.62);
}

.team-section {
    color: var(--white);
    background: var(--ink);
}

.team-section h2 {
    margin-bottom: 20px;
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.05em;
}

.team-section p {
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.7;
}

.team-roles {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.team-role {
    display: flex;
    padding: 30px 0;
    align-items: flex-start;
    gap: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.team-role > i {
    display: grid;
    width: 58px;
    height: 58px;
    color: var(--ink);
    background: var(--green);
    border-radius: 50%;
    flex: 0 0 auto;
    place-items: center;
    font-size: 1.25rem;
}

.team-role h3 {
    margin-bottom: 5px;
    font-size: 1.18rem;
    font-weight: 800;
}

.team-role p {
    margin: 0;
}

/* Destinations */
.destinations-section {
    background: var(--cream);
}

.destination-toolbar,
.gallery-toolbar {
    display: flex;
    margin-bottom: 48px;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.destination-toolbar h2,
.gallery-toolbar h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.filter-btn {
    padding: 9px 15px;
    color: #465048;
    background: transparent;
    border: 1px solid #cbd0ca;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 800;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
}

.destination-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.destination-item.is-hidden,
.gallery-item.is-hidden {
    display: none;
}

.tour-card-detailed .tour-body p {
    min-height: 65px;
}

.tour-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tour-footer .tour-price {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.tour-footer > a {
    display: grid;
    width: 44px;
    height: 44px;
    color: var(--white);
    background: var(--ink);
    border-radius: 50%;
    place-items: center;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.tour-footer > a:hover {
    color: var(--ink);
    background: var(--green);
    transform: translateX(3px);
}

.custom-trip-banner {
    display: flex;
    margin-top: 80px;
    padding: 58px;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(6, 10, 7, 0.97), rgba(6, 10, 7, 0.68)),
        url("../images/rakaposhi.jpg") center/cover;
    border-radius: 14px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.custom-trip-banner h2 {
    margin-bottom: 12px;
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.custom-trip-banner p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.custom-trip-banner .btn {
    flex: 0 0 auto;
}

/* Gallery */
.gallery-page-hero {
    background-position: center 54%;
}

.album-section {
    background: var(--cream);
}

.album-heading,
.album-detail-heading {
    display: flex;
    margin-bottom: 52px;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.album-heading h2,
.album-detail-heading h2 {
    margin: 0;
    font-size: clamp(2.4rem, 4.5vw, 4.2rem);
    font-weight: 700;
    letter-spacing: -0.055em;
}

.album-total,
.album-detail-count {
    display: flex;
    align-items: center;
    gap: 12px;
}

.album-total strong,
.album-detail-count strong {
    font-family: "Manrope", sans-serif;
    font-size: 3.6rem;
    font-weight: 800;
    letter-spacing: -0.07em;
    line-height: 1;
}

.album-total span,
.album-detail-count span {
    color: var(--muted);
    font-size: 0.72rem;
    line-height: 1.25;
    text-transform: uppercase;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.album-card {
    display: block;
    overflow: hidden;
    background: var(--white);
    border: 1px solid #dfe3dd;
    border-radius: 14px;
    box-shadow: 0 14px 38px rgba(9, 12, 10, 0.06);
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.album-card:hover {
    box-shadow: 0 30px 65px rgba(9, 12, 10, 0.16);
    transform: translateY(-8px);
}

.album-collage {
    position: relative;
    display: grid;
    height: 380px;
    padding: 12px;
    overflow: hidden;
    background: #dfe4dc;
    grid-template-columns: 1.4fr 0.8fr;
    grid-template-rows: 1fr 1fr;
    gap: 7px;
}

.album-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    transition: filter 0.4s ease, transform 0.65s ease;
}

.album-cover-1 {
    grid-row: 1 / 3;
}

.album-card:hover .album-cover-1 {
    transform: scale(1.035);
}

.album-card:hover .album-cover-2,
.album-card:hover .album-cover-3 {
    filter: saturate(1.12);
}

.album-photo-count {
    position: absolute;
    bottom: 24px;
    left: 24px;
    padding: 8px 12px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.93);
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    font-size: 0.72rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
}

.album-photo-count i {
    margin-right: 6px;
    color: var(--green-dark);
}

.album-card-body {
    padding: 28px;
}

.album-card-body > span {
    color: var(--green-dark);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.album-card-body h2 {
    margin: 7px 0 10px;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.045em;
}

.album-card-body p {
    min-height: 68px;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.6;
}

.album-card-body > strong {
    display: inline-flex;
    padding-bottom: 4px;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: 0.76rem;
}

.album-card-body > strong i {
    transition: transform 0.25s ease;
}

.album-card:hover .album-card-body > strong i {
    transform: translateX(5px);
}

.album-detail-section {
    background: var(--white);
}

.album-detail-title {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.album-back {
    display: inline-flex;
    margin-bottom: 26px;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 800;
    transition: color 0.2s ease, transform 0.2s ease;
}

.album-back:hover {
    color: var(--green-dark);
    transform: translateX(-4px);
}

.album-photo-grid {
    display: grid;
    grid-auto-flow: dense;
    grid-auto-rows: 245px;
    grid-template-columns: repeat(12, 1fr);
    gap: 13px;
}

.album-photo {
    position: relative;
    grid-column: span 4;
    overflow: hidden;
    padding: 0;
    color: var(--white);
    background: #dfe4dc;
    border: 0;
    border-radius: 8px;
    text-align: left;
}

.album-photo:nth-child(7n + 1),
.album-photo:nth-child(7n + 5) {
    grid-column: span 8;
}

.album-photo:nth-child(9n + 3) {
    grid-row: span 2;
}

.album-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.4s ease, transform 0.65s ease;
}

.album-photo::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(0deg, rgba(2, 6, 3, 0.74), transparent 54%);
}

.album-photo > span {
    position: absolute;
    z-index: 2;
    right: 18px;
    bottom: 16px;
    left: 18px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
}

.album-photo > span small {
    color: #d7f5aa;
    font-size: 0.68rem;
    font-weight: 800;
}

.album-photo > span strong {
    font-family: "Manrope", sans-serif;
    font-size: 0.83rem;
    text-align: right;
}

.album-photo > i {
    position: absolute;
    z-index: 2;
    top: 16px;
    right: 16px;
    display: grid;
    width: 40px;
    height: 40px;
    color: var(--ink);
    background: var(--white);
    border-radius: 50%;
    opacity: 0;
    place-items: center;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.album-photo:hover img {
    filter: saturate(1.12);
    transform: scale(1.055);
}

.album-photo:hover > i,
.album-photo:focus-visible > i {
    opacity: 1;
    transform: scale(1);
}

.album-navigation {
    display: flex;
    margin-top: 54px;
    padding-top: 28px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
}

.album-navigation a {
    display: flex;
    align-items: center;
    gap: 13px;
    transition: color 0.2s ease;
}

.album-navigation a:hover {
    color: var(--green-dark);
}

.album-navigation a > i {
    display: grid;
    width: 44px;
    height: 44px;
    color: var(--ink);
    background: var(--green);
    border-radius: 50%;
    place-items: center;
}

.album-navigation a > span {
    display: flex;
    flex-direction: column;
}

.album-navigation small {
    color: var(--muted);
    font-size: 0.68rem;
}

.album-navigation strong {
    font-family: "Manrope", sans-serif;
    font-size: 0.85rem;
}

.gallery-section {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-auto-rows: 280px;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}

.gallery-item {
    position: relative;
    grid-column: span 4;
    overflow: hidden;
    padding: 0;
    color: var(--white);
    background: #dfe4dc;
    border: 0;
    border-radius: 8px;
    text-align: left;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
    grid-column: span 8;
}

.gallery-item:nth-child(3),
.gallery-item:nth-child(7) {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease, filter 0.45s ease;
}

.gallery-item::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 55%);
}

.gallery-item > span {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 20px;
    left: 22px;
    display: flex;
    flex-direction: column;
}

.gallery-item > span strong {
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
}

.gallery-item > span small {
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gallery-item > i {
    position: absolute;
    z-index: 2;
    top: 18px;
    right: 18px;
    display: grid;
    width: 42px;
    height: 42px;
    color: var(--ink);
    background: var(--white);
    border-radius: 50%;
    opacity: 0;
    place-items: center;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover img {
    filter: saturate(1.15);
    transform: scale(1.06);
}

.gallery-item:hover > i {
    opacity: 1;
    transform: scale(1);
}

.lightbox {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: grid;
    padding: 70px 5vw 35px;
    visibility: hidden;
    background: rgba(2, 4, 3, 0.94);
    opacity: 0;
    place-items: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-open {
    visibility: visible;
    opacity: 1;
}

.lightbox-inner {
    max-width: 1180px;
    text-align: center;
}

.lightbox-inner img {
    max-width: 100%;
    max-height: 78vh;
    border-radius: 6px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.lightbox-inner p {
    margin: 15px 0 0;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-weight: 700;
}

.lightbox-close {
    position: absolute;
    top: 22px;
    right: 28px;
    display: grid;
    width: 46px;
    height: 46px;
    color: var(--ink);
    background: var(--white);
    border: 0;
    border-radius: 50%;
    place-items: center;
}

/* Contact */
.contact-section {
    background: var(--cream);
}

.contact-section h2 {
    margin-bottom: 22px;
    font-size: clamp(2.3rem, 4vw, 3.7rem);
}

.contact-lead {
    color: var(--muted);
    line-height: 1.7;
}

.contact-details {
    margin: 35px 0;
    border-top: 1px solid #d8dcd4;
}

.contact-details > a,
.contact-details > div {
    display: flex;
    padding: 20px 0;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #d8dcd4;
}

.contact-details > a > i,
.contact-details > div > i {
    display: grid;
    width: 44px;
    height: 44px;
    min-width: 44px;
    color: var(--white);
    background: var(--ink);
    border-radius: 999px;
    flex: 0 0 44px;
    place-items: center;
}

.contact-details span {
    display: flex;
    flex-direction: column;
}

.contact-details small {
    color: var(--muted);
    font-size: 0.7rem;
}

.contact-details strong {
    font-family: "Manrope", sans-serif;
    font-size: 0.88rem;
}

.contact-number-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-number-list a {
    width: fit-content;
    transition: color 0.2s ease;
}

.contact-number-list a:hover {
    color: var(--green-dark);
}

.contact-details a:hover strong {
    color: var(--green-dark);
}

.response-note {
    display: flex;
    padding: 18px;
    align-items: center;
    gap: 13px;
    background: var(--green-pale);
    border-radius: 8px;
}

.response-note > i {
    color: var(--green-dark);
    font-size: 1.35rem;
}

.response-note span {
    display: flex;
    color: #506045;
    flex-direction: column;
    font-size: 0.8rem;
}

.response-note strong {
    color: var(--ink);
    font-family: "Manrope", sans-serif;
}

.contact-whatsapp-panel {
    margin-top: 20px;
    padding: 0 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-top: 3px solid #18864b;
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(13, 24, 16, 0.06);
}

.whatsapp-panel-heading {
    display: flex;
    min-height: 82px;
    align-items: center;
    gap: 11px;
    border-bottom: 1px solid var(--line);
}

.whatsapp-panel-icon {
    color: #18864b;
    flex: 0 0 auto;
    font-size: 1.45rem;
}

.whatsapp-panel-heading > span:nth-child(2) {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.whatsapp-panel-heading small {
    color: var(--muted);
    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.whatsapp-panel-heading strong {
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    font-size: 0.84rem;
    letter-spacing: -0.01em;
}

.whatsapp-availability {
    display: inline-flex;
    margin-left: auto;
    align-items: center;
    gap: 6px;
    color: #51705b;
    font-size: 0.56rem;
    font-weight: 800;
    text-transform: uppercase;
}

.whatsapp-availability i {
    width: 6px;
    height: 6px;
    background: #20a358;
    border-radius: 50%;
}

.contact-whatsapp-links {
    display: grid;
    grid-template-columns: 1fr;
}

.contact-whatsapp-links a {
    display: flex;
    min-width: 0;
    min-height: 72px;
    padding: 12px 0;
    color: var(--ink);
    background: transparent;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-family: "Manrope", sans-serif;
    box-shadow: none;
    transition: color 0.2s ease, padding 0.25s ease;
}

.contact-whatsapp-links a:last-child {
    border-bottom: 0;
}

.whatsapp-card-copy {
    display: flex;
    min-width: 0;
    flex: 1;
    flex-direction: column;
    line-height: 1.2;
}

.whatsapp-card-copy small {
    overflow: hidden;
    color: var(--muted);
    font-size: 0.54rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.whatsapp-card-copy strong {
    margin-top: 5px;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 800;
    white-space: nowrap;
}

.whatsapp-card-action {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #18864b;
    flex: 0 0 auto;
    font-size: 0.61rem;
    font-weight: 800;
    transition: gap 0.2s ease;
}

.contact-whatsapp-links a:hover {
    color: var(--ink);
    padding-right: 3px;
    padding-left: 3px;
}

.contact-whatsapp-links a:hover .whatsapp-card-action {
    gap: 10px;
}

.contact-map-section {
    padding-top: 85px;
    background: var(--white);
}

.contact-map-heading {
    display: flex;
    margin-bottom: 28px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.contact-map-heading h2 {
    margin: 4px 0 8px;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.contact-map-heading p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
}

.contact-map-frame {
    height: 500px;
    overflow: hidden;
    background: #e5e9e2;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: 0 25px 65px rgba(9, 12, 10, 0.1);
}

.contact-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form-card {
    min-height: 660px;
    padding: 50px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 25px 65px rgba(9, 12, 10, 0.1);
}

/* FAQ */
.faq-section {
    background: var(--cream);
}

.faq-intro {
    position: sticky;
    top: 140px;
}

.faq-intro h2 {
    margin: 8px 0 18px;
    font-size: clamp(2.25rem, 4vw, 3.7rem);
}

.faq-intro > p {
    margin-bottom: 26px;
    color: var(--muted);
    line-height: 1.75;
}

.faq-contact-card {
    display: flex;
    margin-top: 28px;
    padding: 20px;
    color: var(--white);
    background: var(--ink);
    border-radius: 10px;
    align-items: center;
    gap: 15px;
}

.faq-contact-card > i {
    color: var(--green);
    font-size: 1.8rem;
}

.faq-contact-card span {
    display: flex;
    flex-direction: column;
}

.faq-contact-card small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.faq-contact-card strong {
    font-family: "Manrope", sans-serif;
    font-size: 0.82rem;
}

.faq-contact-card strong a {
    display: inline-block;
    color: var(--white);
    transition: color 0.2s ease, transform 0.2s ease;
}

.faq-contact-card strong a:hover {
    color: var(--green);
    transform: translateX(3px);
}

.faq-group + .faq-group {
    margin-top: 58px;
}

.faq-group > h2 {
    margin: 5px 0 22px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.faq-accordion {
    display: grid;
    gap: 10px;
}

.faq-accordion .accordion-item {
    overflow: hidden;
    background: var(--white);
    border: 1px solid #dce2d8;
    border-radius: 10px;
}

.faq-accordion .accordion-button {
    padding: 22px 24px;
    color: var(--ink);
    background: var(--white);
    box-shadow: none;
    font-family: "Manrope", sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.4;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--green-dark);
    background: var(--green-pale);
}

.faq-accordion .accordion-button::after {
    width: 30px;
    height: 30px;
    margin-left: 18px;
    background-image: none;
    border: 1px solid #cbd5c6;
    border-radius: 50%;
    content: "+";
    display: grid;
    flex: 0 0 30px;
    place-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    color: var(--white);
    background: var(--green-dark);
    border-color: var(--green-dark);
    content: "−";
    transform: none;
}

.faq-accordion .accordion-body {
    padding: 5px 24px 24px;
    color: var(--muted);
    line-height: 1.75;
}

.faq-accordion .accordion-body a {
    color: var(--green-dark);
    border-bottom: 1px solid rgba(67, 112, 38, 0.4);
    font-weight: 800;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.faq-accordion .accordion-body a:hover {
    color: var(--ink);
    border-color: var(--ink);
}

.faq-accordion .accordion-body a i {
    margin-left: 3px;
    font-size: 0.65rem;
}

.form-heading {
    margin-bottom: 36px;
}

.form-heading h2 {
    margin-bottom: 8px;
    font-size: clamp(2rem, 4vw, 3.1rem);
}

.form-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.contact-form-card .form-label {
    margin-bottom: 8px;
    font-family: "Manrope", sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    min-height: 54px;
    padding: 12px 14px;
    background-color: #fafbf9;
    border-color: #d7dbd6;
    border-radius: 6px;
    font-size: 0.9rem;
}

.contact-form-card textarea.form-control {
    min-height: 145px;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--green-dark);
    box-shadow: 0 0 0 0.2rem rgba(131, 183, 53, 0.15);
}

.form-privacy {
    color: var(--muted);
}

.form-privacy a {
    color: var(--green-dark);
    text-decoration: underline;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.success-panel {
    display: flex;
    min-height: 560px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.success-panel > i {
    margin-bottom: 25px;
    color: var(--green-dark);
    font-size: 4rem;
}

.success-panel h2 {
    max-width: 650px;
}

.success-panel p {
    margin-bottom: 25px;
    color: var(--muted);
}

/* Legal */
.legal-hero {
    padding: 225px 0 80px;
    color: var(--white);
    background: var(--ink);
}

.legal-hero h1 {
    margin-bottom: 12px;
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    font-weight: 700;
    letter-spacing: -0.07em;
}

.legal-hero p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
}

.legal-section {
    background: var(--cream);
}

.legal-nav {
    position: sticky;
    top: 120px;
    display: flex;
    padding: 24px;
    background: var(--white);
    border-radius: 8px;
    flex-direction: column;
    gap: 13px;
}

.legal-nav strong {
    margin-bottom: 8px;
    font-family: "Manrope", sans-serif;
    font-size: 0.85rem;
}

.legal-nav a {
    color: var(--muted);
    font-size: 0.8rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.legal-nav a:hover {
    color: var(--green-dark);
    transform: translateX(3px);
}

.legal-content {
    padding: 55px;
    background: var(--white);
    border-radius: 10px;
}

.legal-intro {
    margin-bottom: 55px;
    padding: 28px;
    background: var(--green-pale);
    border-left: 4px solid var(--green);
}

.legal-intro h2 {
    font-size: 1.5rem;
}

.legal-intro p {
    margin: 0;
}

.legal-content section {
    position: relative;
    padding: 0 0 45px 68px;
}

.legal-content section:last-child {
    padding-bottom: 0;
}

.legal-content section > span {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    width: 42px;
    height: 42px;
    color: var(--ink);
    background: var(--green);
    border-radius: 50%;
    font-family: "Manrope", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    place-items: center;
}

.legal-content section h2 {
    margin-bottom: 15px;
    font-size: 1.55rem;
    font-weight: 800;
}

.legal-content section p,
.legal-intro p {
    color: #525c55;
    font-size: 0.95rem;
    line-height: 1.75;
}

.legal-content section a {
    color: var(--green-dark);
    text-decoration: underline;
}

/* Footer */
.footer-cta {
    padding: 70px 0;
    color: var(--white);
    background: var(--green-dark);
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.footer-cta h2 {
    max-width: 800px;
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 4.4rem);
    font-weight: 700;
    letter-spacing: -0.055em;
}

.site-footer {
    padding: 85px 0 24px;
    color: rgba(255, 255, 255, 0.68);
    background: #050706;
}

.footer-brand {
    display: block;
    width: 200px;
    margin-bottom: 18px;
}

.footer-logo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-intro {
    max-width: 360px;
    font-size: 0.88rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    margin-top: 24px;
    gap: 9px;
}

.social-links a {
    display: grid;
    width: 40px;
    height: 40px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    place-items: center;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.social-links a:hover {
    color: var(--ink);
    background: var(--green);
    transform: translateY(-3px);
}

.site-footer h3 {
    margin: 14px 0 22px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li {
    margin-bottom: 12px;
}

.site-footer li a {
    font-size: 0.83rem;
    transition: color 0.2s ease;
}

.site-footer li a:hover {
    color: var(--green);
}

.newsletter-copy {
    max-width: 370px;
    font-size: 0.84rem;
}

.newsletter-form {
    position: relative;
    margin-top: 20px;
}

.newsletter-form .form-control {
    height: 54px;
    padding: 12px 60px 12px 16px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.newsletter-form button {
    position: absolute;
    top: 6px;
    right: 6px;
    display: grid;
    width: 42px;
    height: 42px;
    color: var(--ink);
    background: var(--green);
    border: 0;
    border-radius: 4px;
    place-items: center;
}

.footer-contact {
    display: flex;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.5);
    flex-direction: column;
    gap: 5px;
    font-size: 0.78rem;
}

.footer-contact a:hover {
    color: var(--green);
}

.footer-bottom {
    display: flex;
    margin-top: 65px;
    padding-top: 24px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.73rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    gap: 22px;
}

.footer-bottom a:hover {
    color: var(--green);
}

.back-to-top {
    position: fixed;
    z-index: 1000;
    right: 22px;
    bottom: 22px;
    display: grid;
    width: 46px;
    height: 46px;
    visibility: hidden;
    color: var(--ink);
    background: var(--green);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    place-items: center;
    transform: translateY(12px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.back-to-top.is-visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

/* Motion */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Responsive */
@media (max-width: 1199.98px) {
    .site-header {
        background: rgba(8, 11, 9, 0.96);
    }

    .site-header .navbar {
        min-height: 76px;
    }

    .brand-lockup {
        width: 160px;
    }

    .navbar-collapse {
        padding: 16px 0 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .mega-dropdown {
        width: 100%;
    }

    .site-header .nav-link {
        padding: 12px 4px !important;
    }

    .site-header .nav-link::after {
        right: auto;
        bottom: 7px;
        left: 4px;
        width: 30px;
    }

    .mega-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mega-menu {
        position: static;
        display: none;
        visibility: visible;
        max-height: 62vh;
        margin: 4px 0 10px;
        padding: 18px;
        overflow-y: auto;
        background: #f7f8f5;
        border-top: 2px solid var(--green);
        border-radius: 8px;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        backdrop-filter: none;
    }

    .mega-menu::before {
        display: none;
    }

    .mega-dropdown:hover .mega-menu,
    .mega-dropdown:focus-within .mega-menu {
        display: none;
    }

    .mega-dropdown.is-open .mega-menu,
    .mega-dropdown.is-open:hover .mega-menu,
    .mega-dropdown.is-open:focus-within .mega-menu {
        display: block;
    }

    .mega-menu .container {
        max-width: none;
        padding: 0;
    }

    .mega-menu-grid {
        min-height: 0;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .mega-feature {
        min-height: 230px;
        grid-column: 1 / 3;
    }

    .mega-column + .mega-column {
        padding-left: 22px;
    }

    .hero-slide,
    .hero-content {
        min-height: 740px;
    }

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

    .finder-heading {
        display: none;
    }

    .finder-button {
        grid-column: 1 / 4;
        width: 100%;
        margin: 16px 0 0;
    }

    .album-collage {
        height: 330px;
    }

    .difference-content {
        padding: 58px;
    }

    .difference-image {
        min-height: 640px;
    }

    .gallery-grid {
        grid-auto-rows: 250px;
    }
}

@media (max-width: 991.98px) {
    .section-pad {
        padding: 82px 0;
    }

    .hero-section {
        padding-bottom: 210px;
    }

    .mega-menu-grid {
        grid-template-columns: 1fr;
    }

    .mega-column + .mega-column {
        padding: 12px 0 0;
        border-top: 1px solid var(--line);
        border-left: 0;
    }

    .mega-feature {
        min-height: 220px;
        grid-column: auto;
    }

    .hero-slide,
    .hero-content {
        min-height: 690px;
    }

    .hero-content {
        padding-top: 145px;
        padding-bottom: 100px;
    }

    .trip-finder {
        grid-template-columns: 1fr 1fr;
    }

    .finder-field:nth-of-type(3) {
        grid-column: 1 / 3;
        margin: 0;
        padding: 10px 13px;
        border: 1px solid #dce2d8;
    }

    .finder-button {
        grid-column: 1 / 3;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 0;
    }

    .stat-item:nth-child(2) {
        border-right: 0;
    }

    .stat-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .stat-item:nth-child(3) {
        padding-left: 25px;
    }

    .difference-image {
        min-height: 520px;
    }

    .review-card {
        min-height: auto;
        margin-bottom: 14px;
    }

    .preview-grid {
        min-height: 720px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 1fr);
    }

    .preview-item-1 {
        grid-row: 1 / 3;
    }

    .preview-item-4 {
        grid-column: 1 / 3;
    }

    .page-hero,
    .page-hero-compact {
        min-height: 600px;
    }

    .story-collage {
        margin-bottom: 25px;
    }

    .destination-toolbar,
    .gallery-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .filter-buttons {
        justify-content: flex-start;
    }

    .custom-trip-banner {
        padding: 44px;
        align-items: flex-start;
        flex-direction: column;
    }

    .gallery-item,
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        grid-column: span 6;
    }

    .gallery-item:nth-child(3),
    .gallery-item:nth-child(7) {
        grid-row: span 1;
    }

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

    .album-photo {
        grid-column: span 6;
    }

    .album-photo:nth-child(7n + 1),
    .album-photo:nth-child(7n + 5) {
        grid-column: span 6;
    }

    .album-photo:nth-child(9n + 3) {
        grid-row: span 1;
    }

    .contact-form-card {
        padding: 38px;
    }

    .faq-intro {
        position: static;
    }

    .footer-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
}

@media (max-width: 767.98px) {
    .topbar {
        font-size: 0.68rem;
    }

    .site-header {
        top: 34px;
    }

    .site-header.is-scrolled {
        top: 0;
    }

    .hero-section {
        padding-bottom: 292px;
    }

    .hero-slide,
    .hero-content {
        min-height: 650px;
    }

    .hero-content h1,
    .hero-content h2 {
        font-size: clamp(3.25rem, 15vw, 5.2rem);
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-control {
        display: none;
    }

    .trip-finder {
        padding: 18px;
        grid-template-columns: 1fr;
    }

    .finder-field,
    .finder-field:nth-of-type(3) {
        grid-column: auto;
        margin: 0;
        padding: 10px 13px;
        border: 1px solid #dce2d8;
    }

    .finder-button {
        grid-column: auto;
    }

    .contact-map-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-map-frame {
        height: 380px;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .stats-grid {
        margin-top: 50px;
    }

    .stat-item {
        min-height: 124px;
        padding: 22px 20px;
    }

    .difference-content {
        padding: 42px 28px;
    }

    .difference-image {
        min-height: 430px;
    }

    .preview-grid {
        min-height: 920px;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 1fr);
    }

    .preview-item-1,
    .preview-item-4 {
        grid-row: auto;
        grid-column: auto;
    }

    .page-hero,
    .page-hero-compact,
    .page-hero-contact {
        min-height: 560px;
    }

    .page-hero-content {
        padding-top: 125px;
    }

    .story-collage {
        min-height: 520px;
    }

    .story-main {
        width: 90%;
        height: 470px;
    }

    .story-small {
        height: 200px;
    }

    .story-note {
        width: 130px;
        height: 130px;
    }

    .custom-trip-banner {
        margin-top: 55px;
        padding: 34px 26px;
    }

    .gallery-grid {
        grid-auto-rows: 260px;
        grid-template-columns: 1fr;
    }

    .gallery-item,
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(6) {
        grid-column: auto;
    }

    .album-heading,
    .album-detail-heading {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .album-collage {
        height: 360px;
    }

    .album-photo-grid {
        grid-auto-rows: 260px;
        grid-template-columns: 1fr;
    }

    .album-photo,
    .album-photo:nth-child(7n + 1),
    .album-photo:nth-child(7n + 5) {
        grid-row: auto;
        grid-column: auto;
    }

    .album-navigation {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    .contact-form-card {
        min-height: 0;
        padding: 28px 20px;
    }

    .legal-hero {
        padding: 190px 0 65px;
    }

    .legal-content {
        padding: 28px 20px;
    }

    .legal-content section {
        padding-left: 0;
    }

    .legal-content section > span {
        position: static;
        margin-bottom: 14px;
    }

    .footer-cta {
        padding: 55px 0;
    }
}

@media (max-width: 575.98px) {
    .contact-whatsapp-links {
        grid-template-columns: 1fr;
    }

    .brand-lockup {
        width: 140px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .stats-grid {
        padding: 10px;
        grid-template-columns: 1fr;
    }

    .stat-item,
    .stat-item:nth-child(3) {
        min-height: 108px;
        padding: 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .stat-item:last-child {
        padding: 18px;
        border: 0;
    }

    .rating-summary {
        display: none;
    }

    .tour-image {
        height: 250px;
    }

    .footer-bottom div {
        flex-direction: column;
        gap: 8px;
    }
}

/* Shared enhanced selects */
.site-select-standard {
    position: relative;
    min-width: 0;
}

.site-select-standard .choices {
    width: 100%;
    margin: 0;
    overflow: visible;
    color: var(--ink);
    font-size: 0.88rem;
}

.site-select-standard .choices.is-open {
    z-index: 1200;
}

.site-select-standard .choices__inner {
    display: flex;
    min-height: 54px;
    padding: 8px 44px 8px 14px !important;
    align-items: center;
    overflow: hidden;
    background: #fafbf9;
    border: 1px solid #d7dbd6;
    border-radius: 8px;
    font-size: inherit;
    font-weight: 700;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.site-select-standard .choices.is-focused .choices__inner,
.site-select-standard .choices.is-open .choices__inner {
    background: #fff;
    border-color: var(--green-dark);
    box-shadow: 0 0 0 0.2rem rgba(131, 183, 53, 0.15);
}

.site-select-standard .choices__list--single {
    width: 100%;
    padding: 0;
}

.site-select-standard .choices__list--single .choices__item {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-select-standard .choices[data-type*="select-one"]::after {
    right: 18px;
    width: 8px;
    height: 8px;
    margin-top: -6px;
    border: solid var(--green-dark);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    transition: margin 0.2s ease, transform 0.2s ease;
}

.site-select-standard .choices[data-type*="select-one"].is-open::after {
    margin-top: -2px;
    border-color: var(--green-dark);
    transform: rotate(225deg);
}

.site-select-standard .choices__list--dropdown,
.site-select-standard .choices__list[aria-expanded] {
    top: calc(100% + 10px);
    bottom: auto;
    z-index: 1200;
    min-width: 100%;
    margin: 0;
    padding: 8px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dce3d9;
    border-radius: 12px;
    box-shadow: 0 22px 50px rgba(13, 31, 21, 0.2);
    opacity: 0;
    transform: translateY(8px);
    visibility: hidden;
    word-break: normal;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.site-select-standard .choices.is-open .choices__list--dropdown,
.site-select-standard .choices.is-open .choices__list[aria-expanded] {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.site-select-standard .choices__list--dropdown .choices__list,
.site-select-standard .choices__list[aria-expanded] .choices__list {
    max-height: 280px;
}

.site-select-standard .choices__list--dropdown .choices__item,
.site-select-standard .choices__list[aria-expanded] .choices__item {
    position: relative;
    padding: 11px 36px 11px 12px;
    color: #263129;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.35;
    transition: color 0.18s ease, background 0.18s ease;
}

.site-select-standard .choices__list--dropdown .choices__item--selectable.is-highlighted,
.site-select-standard .choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
    color: var(--green-dark);
    background: var(--green-pale);
}

.site-select-standard .choices__list--dropdown .choices__item--selectable.is-selected::after,
.site-select-standard .choices__list[aria-expanded] .choices__item--selectable.is-selected::after {
    position: absolute;
    top: 50%;
    right: 13px;
    color: var(--green-dark);
    content: "\2713";
    font-size: 0.82rem;
    font-weight: 800;
    opacity: 1;
    transform: translateY(-50%);
}

.site-select-standard .choices__list--dropdown .choices__placeholder,
.site-select-standard .choices__list[aria-expanded] .choices__placeholder {
    color: #7a857c;
    opacity: 1;
}

.site-select-standard .choices__input {
    width: calc(100% - 8px);
    margin: 4px 4px 8px;
    padding: 11px 12px;
    color: var(--ink);
    background: #f5f7f3;
    border: 1px solid #e0e5de;
    border-radius: 8px;
    font-size: 0.8rem;
}

.site-select-standard .choices__input:focus {
    background: #fff;
    border-color: var(--green);
}

.destination-search-control.site-select-standard {
    display: flex;
}

.destination-search-panel {
    position: relative;
    z-index: 20;
    overflow: visible;
}

.destination-search-control.site-select-standard > .choices {
    min-width: 0;
    flex: 1;
}

.destination-search-control.site-select-standard .choices__inner {
    min-height: 0;
    padding: 0 34px 0 0 !important;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 0.82rem;
}

.destination-search-control.site-select-standard .choices[data-type*="select-one"]::after {
    right: 4px;
}

@media (min-width: 576px) {
    .destination-search-control.site-select-standard .choices__list--dropdown,
    .destination-search-control.site-select-standard .choices__list[aria-expanded] {
        right: 0;
        left: auto;
        min-width: 320px;
    }
}

@media (max-width: 575.98px) {
    .site-select-standard .choices__list--dropdown,
    .site-select-standard .choices__list[aria-expanded] {
        min-width: 100%;
    }
}

/* Homepage travel journal */
.home-journal {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 82% 10%, rgba(131, 183, 53, 0.11), transparent 29%),
        #080b09;
}

.home-journal::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0.17;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.24) 0.7px, transparent 0.7px);
    background-size: 9px 9px;
    mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

.journal-wordmark {
    position: absolute;
    top: 7%;
    right: -1.5vw;
    color: transparent;
    border: 0;
    font-family: "Manrope", sans-serif;
    font-size: clamp(7rem, 17vw, 16rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.8;
    opacity: 0.055;
    pointer-events: none;
    text-transform: uppercase;
    -webkit-text-stroke: 1px #fff;
}

.journal-heading {
    position: relative;
    z-index: 2;
    display: flex;
    margin-bottom: 60px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
}

.journal-heading h2 {
    margin: 0;
    font-size: clamp(3.2rem, 7vw, 7.2rem);
    font-weight: 700;
    letter-spacing: -0.07em;
    line-height: 0.9;
}

.journal-heading h2 em {
    color: var(--green);
    font-family: Georgia, serif;
    font-weight: 400;
}

.journal-heading-copy {
    width: min(100%, 390px);
    padding-bottom: 7px;
}

.journal-heading-copy p {
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.93rem;
    line-height: 1.75;
}

.journal-heading-copy a {
    display: inline-flex;
    padding-bottom: 7px;
    align-items: center;
    gap: 10px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 0.76rem;
    font-weight: 800;
    transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}

.journal-heading-copy a:hover {
    gap: 15px;
    color: var(--green);
    border-color: var(--green);
}

.journal-grid {
    position: relative;
    z-index: 3;
    display: grid;
    min-height: 670px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.journal-card {
    --journal-x: 0px;
    --journal-y: 0px;
    --glow-x: 50%;
    --glow-y: 50%;
    position: relative;
    display: block;
    min-height: 0;
    overflow: hidden;
    color: #fff;
    background: #172019;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 13px;
    isolation: isolate;
    transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.journal-card::before {
    position: absolute;
    z-index: 2;
    inset: 0;
    content: "";
    opacity: 0;
    pointer-events: none;
    background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, 0.2), transparent 34%);
    transition: opacity 0.3s ease;
}

.journal-card-featured {
    grid-row: 1 / 3;
    grid-column: 1 / 7;
}

.journal-card-tall {
    grid-row: 1;
    grid-column: 7 / 10;
}

.journal-note-card {
    grid-row: 1;
    grid-column: 10 / 13;
}

.journal-card-wide {
    grid-row: 2;
    grid-column: 7 / 11;
}

.journal-card-square {
    grid-row: 2;
    grid-column: 11 / 13;
}

.journal-card > img {
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    margin: -10px;
    object-fit: cover;
    transform: translate3d(var(--journal-x), var(--journal-y), 0) scale(1.02);
    transition: filter 0.5s ease, transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.journal-card-wide > img {
    object-position: center 62%;
}

.journal-card-shade {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(3, 6, 4, 0.35), transparent 37%),
        linear-gradient(0deg, rgba(3, 6, 4, 0.94), rgba(3, 6, 4, 0.03) 64%);
}

.journal-card-number {
    position: absolute;
    z-index: 3;
    top: 22px;
    right: 22px;
    display: grid;
    width: 43px;
    height: 43px;
    color: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    place-items: center;
    font: 800 0.68rem "Manrope", sans-serif;
    backdrop-filter: blur(8px);
}

.journal-card-location {
    position: absolute;
    z-index: 3;
    top: 24px;
    left: 24px;
    display: inline-flex;
    padding: 8px 11px;
    align-items: center;
    gap: 7px;
    color: #fff;
    background: rgba(5, 9, 6, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(9px);
    font-size: 0.65rem;
    font-weight: 700;
}

.journal-card-location i {
    color: var(--green);
}

.journal-card-copy {
    position: absolute;
    z-index: 3;
    right: 26px;
    bottom: 25px;
    left: 26px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.journal-card-copy small {
    margin-bottom: 8px;
    color: #c8ee8d;
    font-size: 0.63rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.journal-card-copy strong {
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.45rem, 2.35vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.journal-card-featured .journal-card-copy {
    right: 38px;
    bottom: 38px;
    left: 38px;
}

.journal-card-featured .journal-card-copy strong {
    font-size: clamp(2.6rem, 4.2vw, 4.7rem);
    line-height: 0.95;
}

.journal-card-copy em {
    display: flex;
    max-height: 0;
    margin-top: 0;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    font-size: 0.7rem;
    font-style: normal;
    font-weight: 800;
    opacity: 0;
    transform: translateY(9px);
    transition: max-height 0.35s ease, margin 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.journal-card:hover {
    color: #fff;
    border-color: rgba(160, 218, 75, 0.7);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    transform: translateY(-5px);
}

.journal-card:hover::before {
    opacity: 1;
}

.journal-card:hover > img {
    filter: saturate(1.08) contrast(1.02);
    transform: translate3d(var(--journal-x), var(--journal-y), 0) scale(1.07);
}

.journal-card:hover .journal-card-copy em {
    max-height: 30px;
    margin-top: 16px;
    opacity: 1;
    transform: translateY(0);
}

.journal-card-square .journal-card-copy {
    right: 19px;
    bottom: 20px;
    left: 19px;
}

.journal-card-square .journal-card-copy strong {
    font-size: 1.35rem;
}

.journal-note-card {
    display: flex;
    padding: 28px;
    color: var(--ink);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent 45%),
        var(--green);
    border-radius: 13px;
    flex-direction: column;
    justify-content: flex-start;
}

.journal-note-card > i {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: auto;
    background: rgba(255, 255, 255, 0.36);
    border-radius: 50%;
    place-items: center;
}

.journal-note-card > span {
    margin-top: 20px;
    font: 800 0.62rem "Manrope", sans-serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.journal-note-card > strong {
    margin: 2px 0 -5px;
    font: 800 4.5rem "Manrope", sans-serif;
    letter-spacing: -0.08em;
    line-height: 1;
}

.journal-note-card > p {
    margin: 0 0 12px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.journal-note-card > div {
    color: rgba(9, 12, 10, 0.67);
    font-size: 0.71rem;
    line-height: 1.5;
}

.journal-note-card > div b {
    color: var(--ink);
}

.journal-note-card > a {
    display: flex;
    margin-top: 18px;
    padding-top: 12px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(9, 12, 10, 0.2);
    font-size: 0.7rem;
    font-weight: 800;
}

.journal-destinations {
    position: relative;
    z-index: 3;
    display: flex;
    margin-top: 42px;
    padding-top: 25px;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.journal-destinations > span {
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.journal-destinations a {
    padding: 8px 13px;
    color: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.journal-destinations a:hover {
    color: var(--ink);
    background: var(--green);
    border-color: var(--green);
}

.journal-destinations .journal-all-link {
    margin-left: auto;
    color: var(--green);
    border-color: rgba(131, 183, 53, 0.5);
}

@media (max-width: 1199.98px) {
    .journal-grid {
        min-height: 720px;
        grid-template-columns: repeat(10, minmax(0, 1fr));
    }

    .journal-card-featured {
        grid-column: 1 / 6;
    }

    .journal-card-tall {
        grid-column: 6 / 11;
    }

    .journal-note-card {
        grid-row: 2;
        grid-column: 6 / 9;
    }

    .journal-card-wide {
        grid-column: 9 / 11;
    }

    .journal-card-square {
        display: none;
    }

    .journal-card-wide .journal-card-copy strong {
        font-size: 1.4rem;
    }
}

@media (max-width: 991.98px) {
    .journal-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
    }

    .journal-heading-copy {
        width: min(100%, 620px);
    }

    .journal-grid {
        min-height: 880px;
        grid-template-columns: 1.35fr 1fr;
        grid-template-rows: 1.35fr 0.85fr 0.85fr;
    }

    .journal-card-featured {
        grid-row: 1 / 3;
        grid-column: 1;
    }

    .journal-card-tall {
        grid-row: 1;
        grid-column: 2;
    }

    .journal-note-card {
        grid-row: 2;
        grid-column: 2;
    }

    .journal-card-wide {
        grid-row: 3;
        grid-column: 1 / 3;
    }
}

@media (max-width: 767.98px) {
    .home-journal {
        padding-bottom: 75px;
    }

    .journal-wordmark {
        top: 4%;
    }

    .journal-heading {
        margin-bottom: 40px;
    }

    .journal-heading h2 {
        font-size: clamp(3.4rem, 17vw, 5.2rem);
    }

    .journal-grid {
        display: flex;
        min-height: 0;
        margin-right: calc(var(--bs-gutter-x) * -0.5);
        margin-left: calc(var(--bs-gutter-x) * -0.5);
        padding: 5px calc(var(--bs-gutter-x) * 0.5) 22px;
        overflow-x: auto;
        gap: 12px;
        scroll-padding-left: calc(var(--bs-gutter-x) * 0.5);
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .journal-grid::-webkit-scrollbar {
        display: none;
    }

    .journal-card,
    .journal-card-featured,
    .journal-card-tall,
    .journal-card-wide,
    .journal-card-square,
    .journal-note-card {
        display: flex;
        width: 82vw;
        height: 500px;
        min-width: 82vw;
        grid-row: auto;
        grid-column: auto;
        scroll-snap-align: start;
    }

    .journal-note-card {
        width: 72vw;
        min-width: 72vw;
    }

    .journal-card-copy,
    .journal-card-featured .journal-card-copy,
    .journal-card-square .journal-card-copy {
        right: 25px;
        bottom: 28px;
        left: 25px;
    }

    .journal-card-copy strong,
    .journal-card-featured .journal-card-copy strong,
    .journal-card-square .journal-card-copy strong {
        font-size: 2.4rem;
    }

    .journal-card-copy em {
        max-height: 30px;
        margin-top: 14px;
        opacity: 1;
        transform: none;
    }

    .journal-note-card > i {
        margin-bottom: 90px;
    }

    .journal-note-card > strong {
        font-size: 6.5rem;
    }

    .journal-destinations {
        margin-top: 25px;
    }

    .journal-destinations > span {
        width: 100%;
        margin-bottom: 5px;
    }

    .journal-destinations .journal-all-link {
        margin-left: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .journal-card,
    .journal-card > img,
    .journal-card-copy em {
        transition: none;
    }
}

/* Refined homepage gallery */
.home-gallery {
    overflow: hidden;
    background: var(--white);
}

.home-gallery-heading {
    display: flex;
    margin-bottom: 48px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.home-gallery-heading h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.6rem, 5vw, 4.8rem);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 1;
}

.home-gallery-intro {
    width: min(100%, 390px);
    padding-bottom: 7px;
}

.home-gallery-intro p {
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
}

.home-gallery-mosaic {
    display: grid;
    height: 620px;
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 1fr);
    gap: 14px;
}

.home-gallery-side {
    display: grid;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.home-gallery-card {
    position: relative;
    display: block;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    color: var(--white);
    background: #dfe4dc;
    border-radius: 12px;
    isolation: isolate;
}

.home-gallery-card::after {
    position: absolute;
    z-index: 3;
    inset: 0;
    content: "";
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: inherit;
}

.home-gallery-card img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.45s ease;
}

.home-gallery-overlay {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 8, 4, 0.05) 30%, rgba(3, 8, 4, 0.78) 100%);
    transition: background 0.35s ease;
}

.home-gallery-caption {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 20px;
    left: 22px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.home-gallery-caption small {
    margin-bottom: 4px;
    color: #d5f0ad;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-gallery-caption strong {
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.65rem);
    font-weight: 750;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.home-gallery-feature .home-gallery-caption {
    right: 34px;
    bottom: 32px;
    left: 34px;
}

.home-gallery-feature .home-gallery-caption small {
    margin-bottom: 7px;
}

.home-gallery-feature .home-gallery-caption strong {
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.home-gallery-feature .home-gallery-caption > span {
    display: inline-flex;
    margin-top: 14px;
    align-items: center;
    gap: 9px;
    font-size: 0.76rem;
    font-weight: 800;
}

.home-gallery-feature .home-gallery-caption > span i {
    transition: transform 0.3s ease;
}

.home-gallery-count {
    position: absolute;
    z-index: 2;
    top: 22px;
    left: 22px;
    display: inline-flex;
    padding: 9px 13px;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    backdrop-filter: blur(8px);
    font-size: 0.69rem;
    font-weight: 800;
}

.home-gallery-count i {
    color: var(--green-dark);
}

.home-gallery-arrow {
    position: absolute;
    z-index: 2;
    top: 16px;
    right: 16px;
    display: grid;
    width: 38px;
    height: 38px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    opacity: 0;
    place-items: center;
    transform: translateY(7px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.home-gallery-card:hover {
    color: var(--white);
}

.home-gallery-card:hover img {
    filter: saturate(1.06);
    transform: scale(1.045);
}

.home-gallery-card:hover .home-gallery-overlay {
    background: linear-gradient(180deg, rgba(3, 8, 4, 0.1) 25%, rgba(3, 8, 4, 0.84) 100%);
}

.home-gallery-card:hover .home-gallery-arrow {
    background: var(--green);
    opacity: 1;
    transform: translateY(0);
}

.home-gallery-feature:hover .home-gallery-caption > span i {
    transform: translateX(4px);
}

.home-gallery-footer {
    display: flex;
    margin-top: 24px;
    padding: 18px 0 0;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    font-size: 0.76rem;
    font-weight: 700;
}

.home-gallery-footer > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.home-gallery-footer > span i {
    color: var(--green-dark);
}

.home-gallery-footer > div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.home-gallery-footer a {
    padding: 7px 11px;
    color: #4f5952;
    background: var(--cream);
    border-radius: 50px;
    transition: color 0.2s ease, background 0.2s ease;
}

.home-gallery-footer a:hover {
    color: var(--ink);
    background: var(--green-pale);
}

.home-gallery-footer a:last-child {
    color: var(--ink);
    background: var(--green);
}

@media (max-width: 991.98px) {
    .home-gallery-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .home-gallery-intro {
        width: min(100%, 620px);
    }

    .home-gallery-mosaic {
        height: auto;
        grid-template-columns: 1fr;
    }

    .home-gallery-feature {
        height: 500px;
    }

    .home-gallery-side {
        height: 530px;
    }

    .home-gallery-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .home-gallery-heading {
        margin-bottom: 34px;
    }

    .home-gallery-heading h2 br {
        display: none;
    }

    .home-gallery-feature {
        height: 440px;
    }

    .home-gallery-feature .home-gallery-caption {
        right: 24px;
        bottom: 24px;
        left: 24px;
    }

    .home-gallery-feature .home-gallery-caption strong {
        font-size: 2.35rem;
    }

    .home-gallery-side {
        height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .home-gallery-side .home-gallery-card {
        height: 260px;
    }

    .home-gallery-arrow {
        opacity: 1;
        transform: none;
    }

    .home-gallery-footer > div {
        gap: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-gallery-card img,
    .home-gallery-arrow,
    .home-gallery-feature .home-gallery-caption > span i {
        transition: none;
    }
}
