﻿
@font-face {
    font-family: "Helvetica Neue";
    src: url("../../fonts/HelveticaNeueLight.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Helvetica Neue Light";
    src: url("../../fonts/HelveticaNeueLight.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Helvetica Neue";
    src: url("../../fonts/HelveticaNeueBold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roslindale";
    src: url("../../fonts/Roslindale-DeckNarrowBold-Testing.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roslindale", "Helvetica Neue", system-ui, sans-serif;
    font-weight: 700;
}

body {
    font-family: "Helvetica Neue", system-ui, sans-serif;
    font-weight: 300;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-bottom: 6px solid #f8e341;
    box-shadow: none;
    transition: top 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1), border-color 320ms ease, background-color 320ms ease;
}

.site-header-stack {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.site-header-top {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.site-nav {
    background: #ffffff;
    box-shadow: none;
    flex: 0 0 auto;
    align-items: stretch;
    padding-top: 0;
    padding-bottom: 0;
    --site-logo-gutter: 5.25rem;
    padding-left: var(--site-logo-gutter);
    min-height: 3.25rem;
    transition: padding 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav-actions {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    align-items: stretch;
    justify-content: flex-end;
}

.site-nav-bar {
    min-width: 0;
}

.site-nav-desktop {
    min-width: 0;
}

@media (max-width: 1023px) {
    .site-nav {
        --site-logo-gutter: 6.25rem;
    }

    .site-header.is-compact .site-nav {
        --site-logo-gutter: 5rem;
    }
}

@media (max-width: 640px) {
    .site-nav {
        --site-logo-gutter: 5.25rem;
    }

    .site-header.is-compact .site-nav {
        --site-logo-gutter: 4.25rem;
    }
}

@media (min-width: 1024px) {
    .site-nav {
        --site-logo-gutter: 11.25rem;
        min-height: 3.75rem;
    }

    .site-header.is-compact .site-nav {
        --site-logo-gutter: 8.75rem;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    #site-header .site-nav-link[data-nav-item],
    #site-header .site-cta {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .site-nav {
        flex-wrap: nowrap;
    }

    .site-nav-desktop {
        row-gap: 0;
    }
}

#site-header .site-nav-link[data-nav-item],
#site-header .site-cta {
    border-radius: 0;
    border-left: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
}

/* Nav: yellow fill slides from top on hover; active keeps the same filled state */
#site-header .site-nav-link[data-nav-item] {
    overflow: hidden;
    isolation: isolate;
    z-index: 0;
}

    #site-header .site-nav-link[data-nav-item]::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: -1;
        background: #fae330;
        transform: scaleY(0);
        transform-origin: top center;
        transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
        pointer-events: none;
    }

    #site-header .site-nav-link[data-nav-item].is-nav-active::before {
        transform: scaleY(1);
    }

    #site-header .site-nav-link[data-nav-item]:not(.is-nav-active):hover::before,
    #site-header .site-nav-link[data-nav-item]:not(.is-nav-active):focus-visible::before {
        transform: scaleY(1);
    }

    #site-header .site-nav-link[data-nav-item].is-nav-active,
    #site-header .site-nav-link[data-nav-item]:not(.is-nav-active):hover,
    #site-header .site-nav-link[data-nav-item]:not(.is-nav-active):focus-visible {
        background-color: transparent;
        background-image: none;
        color: #000000;
    }

        #site-header .site-nav-link[data-nav-item].is-nav-active svg,
        #site-header .site-nav-link[data-nav-item]:not(.is-nav-active):hover svg,
        #site-header .site-nav-link[data-nav-item]:not(.is-nav-active):focus-visible svg {
            color: #000000;
        }

.site-nav-link {
    position: relative;
    border-radius: 0.45rem;
    transition: color 220ms ease, transform 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

    .site-nav-link:not([data-nav-item]):hover,
    .site-nav-link:not([data-nav-item]):focus-visible {
        color: #000000;
        background: #fae330;
        border-color: transparent;
        box-shadow: none;
        transform: none;
    }

.site-cta {
    transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

/* Contact CTA active = same as hover (primary fill, dark text, light shadow) */
#site-header .site-cta.is-cta-active {
    background-color: #fae330;
    color: #000000;
    border-color: #fae330;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.hero-swiper .swiper-slide {
    height: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--hero-content-cta-gap, 0.75rem);
}

.hero-slide-heading {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

.hero-slide-cta {
    flex-shrink: 0;
    margin-top: 0;
}

:root {
    --hero-content-cta-gap: 0.75rem;
    --hero-mobile-font-size: 2rem;
}

@media (min-width: 640px) {
    :root {
        --hero-content-cta-gap: 1rem;
    }

    .hero-slide-heading {
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    :root {
        --hero-content-cta-gap: 1.25rem;
    }
}

@media (max-width: 639px) {
    #home {
        justify-content: flex-end;
    }

    #home > .relative.z-10 {
        width: 100%;
    }

    #home .hero-swiper {
        overflow: visible;
    }

    #home .hero-swiper .swiper-wrapper,
    #home .hero-swiper .swiper-slide {
        height: auto !important;
    }

    #home .hero-slide-heading h1 {
        font-size: var(--hero-mobile-font-size, 2rem);
        line-height: 1.1;
        text-wrap: balance;
    }

    #home .hero-slide-heading h1 .hero-slide-subtitle {
        font-size: var(--hero-mobile-font-size, 2rem);
        line-height: 1.1;
        margin-top: 0.25rem;
    }
}

#hero-dots.swiper-pagination,
#hero-dots.hero-dots-pagination {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 1rem;
    width: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    pointer-events: auto;
}

@media (min-width: 640px) {
    #hero-dots.swiper-pagination,
    #hero-dots.hero-dots-pagination {
        bottom: 1.5rem;
    }
}

#hero-dots .swiper-pagination-bullet {
    margin: 0 !important;
    width: 0.75rem;
    height: 0.75rem;
    opacity: 1;
    background: rgba(250, 227, 48, 0.4);
    border: 2px solid transparent;
}

#hero-dots .swiper-pagination-bullet-active {
    background: #fae330;
    box-shadow: 0 0 0 2px rgba(250, 227, 48, 0.45);
    transform: scale(1.08);
}

.gs-swiper .swiper-slide {
    height: auto;
    box-sizing: border-box;
}

#gs-viewport .gs-caption {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
    -webkit-hyphens: none;
    text-wrap: balance;
}

#gs-dots.swiper-pagination,
#gs-dots.gs-dots-pagination {
    position: static;
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

#gs-dots .swiper-pagination-bullet {
    margin: 0 !important;
    width: 0.625rem;
    height: 0.625rem;
    opacity: 1;
    background: rgba(250, 227, 48, 0.4);
    border: 2px solid transparent;
}

#gs-dots .swiper-pagination-bullet-active {
    background: #fae330;
    box-shadow: 0 0 0 2px rgba(250, 227, 48, 0.45);
}

.site-logo-link {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    margin-right: 0;
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-logo-img {
    width: auto;
    height: 150px;
    max-width: min(42vw, 5.25rem);
    will-change: height, filter;
    transition: height 420ms ease-out, filter 420ms ease-out, max-width 420ms ease-out;
}

.site-header.is-compact .site-nav {
    padding-top: 0;
    padding-bottom: 0;
    --site-logo-gutter: 4.25rem;
}

.site-header.is-compact .site-logo-img {
    height: 110px;
    max-width: min(38vw, 4.25rem);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
}

@media (min-width: 1024px) {
    .site-logo-img {
        max-width: none;
    }

    .site-header.is-compact .site-logo-img {
        max-width: none;
    }
}

@media (max-width: 1023px) {
    .site-logo-img {
        height: 92px;
    }

    .site-header.is-compact .site-logo-img {
        height: 72px;
    }
}

@media (max-width: 640px) {
    .site-logo-img {
        height: 80px;
        max-width: min(46vw, 5rem);
    }

    .site-header.is-compact .site-logo-img {
        height: 62px;
        max-width: min(42vw, 4rem);
    }

    #site-header .site-nav {
        border-radius: 0;
    }

    .mobile-nav-toggle {
        z-index: 20;
    }
}

/* Mobile offcanvas navigation */
.mobile-nav-offcanvas {
    visibility: hidden;
    pointer-events: none;
}

.mobile-nav-offcanvas.mobile-nav-offcanvas--open {
    display: flex;
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav-offcanvas.mobile-nav-offcanvas--open .mobile-nav-backdrop {
    opacity: 1;
}

.mobile-nav-offcanvas.mobile-nav-offcanvas--open .mobile-nav-panel {
    transform: translate3d(0, 0, 0);
}

#mobile-nav-offcanvas .mobile-nav-link {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

#mobile-nav-offcanvas .mobile-nav-link::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #fae330;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

#mobile-nav-offcanvas .mobile-nav-link.is-nav-active::before,
#mobile-nav-offcanvas .mobile-nav-link:hover::before,
#mobile-nav-offcanvas .mobile-nav-link:focus-visible::before {
    transform: scaleX(1);
}

#mobile-nav-offcanvas .mobile-nav-link.is-nav-active,
#mobile-nav-offcanvas .mobile-nav-link:hover,
#mobile-nav-offcanvas .mobile-nav-link:focus-visible {
    color: #000000;
}

#mobile-nav-offcanvas .site-cta-mobile.is-cta-active {
    background-color: #fae330;
    color: #000000;
    border-color: #fae330;
}

@media (min-width: 641px) and (max-width: 1023px) {
    .mobile-nav-toggle {
        padding-top: 1.5rem;
        padding-bottom: 1rem;
    }
}

.grain {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

.tab-panel[hidden] {
    display: none;
}

#trusted-brands [role="tablist"] {
    flex-wrap: nowrap;
}

@media (max-width: 639px) {
    #trusted-brands [role="tablist"] [role="tab"] {
        flex: 1 1 0;
        min-width: 0;
        white-space: nowrap;
    }
}

#trusted-brands [aria-label*="brand logos"] li {
    transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

    #trusted-brands [aria-label*="brand logos"] li svg {
        transition: color 220ms ease, filter 220ms ease;
    }

    #trusted-brands [aria-label*="brand logos"] li:hover {
        background: #fae330;
        border-color: rgba(0, 0, 0, 0.35);
        box-shadow: 0 8px 18px rgba(250, 227, 48, 0.3);
        transform: translateY(-1px);
    }

        #trusted-brands [aria-label*="brand logos"] li:hover svg {
            color: #ffffff;
            filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
        }

.about-accent {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 0.9rem;
    width: 100%;
}

.about-accent-dot-lg,
.about-accent-dot-sm {
    border-radius: 9999px;
    background: radial-gradient(circle, #fff7b8 0%, #fae330 45%, #f3cf00 100%);
    border: 1px solid rgba(255, 247, 184, 0.9);
    box-shadow: 0 0 10px rgba(255, 247, 184, 0.95), 0 0 24px rgba(250, 227, 48, 0.95), 0 0 42px rgba(250, 227, 48, 0.75);
}

.about-accent-dot-lg {
    width: 0.9rem;
    height: 0.9rem;
}

.about-accent-dot-sm {
    width: 0.56rem;
    height: 0.56rem;
}

.about-accent-line {
    height: 1px;
    border-radius: 9999px;
    background: linear-gradient(90deg, #fae330 0%, #fff18f 45%, #fae330 100%);
    box-shadow: 0 0 10px rgba(250, 227, 48, 0.8), 0 0 20px rgba(250, 227, 48, 0.45);
}

.about-accent-line--long {
    width: 100%;
    min-width: 0;
    flex: 1;
}

.about-accent-line--short {
    width: min(5rem, 13vw);
}

.about-image-wrap {
    box-shadow:
        0 0 0 1px rgba(250, 227, 48, 0.18),
        0 0 12px rgba(250, 227, 48, 0.28),
        0 0 24px rgba(250, 227, 48, 0.16),
        0 10px 28px rgba(0, 0, 0, 0.12);
    transition: box-shadow 520ms cubic-bezier(0.22, 1, 0.36, 1), border-color 520ms ease;
}

.about-image-wrap::before {
    content: "";
    position: absolute;
    inset: -12%;
    z-index: 0;
    border-radius: inherit;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(250, 227, 48, 0.22) 0%, rgba(250, 227, 48, 0.06) 45%, transparent 70%);
    filter: blur(12px);
    opacity: 0.7;
}

.about-image-wrap img {
    z-index: 1;
}

.about-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 28px rgba(250, 227, 48, 0.1);
}

.about-image-wrap:hover {
    border-color: rgba(250, 227, 48, 0.32);
    box-shadow:
        0 0 0 1px rgba(250, 227, 48, 0.26),
        0 0 16px rgba(250, 227, 48, 0.36),
        0 0 32px rgba(250, 227, 48, 0.22),
        0 12px 32px rgba(0, 0, 0, 0.14);
}

.itinerary-card {
    cursor: pointer;
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1), border-color 320ms ease;
}

.itinerary-card:focus-visible {
    outline: 2px solid #fae330;
    outline-offset: 3px;
}

.itinerary-card:hover {
    transform: translateY(-4px);
    border-color: rgba(250, 227, 48, 0.45);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22), 0 0 28px rgba(250, 227, 48, 0.2);
}

.itinerary-card-bg {
    transform: scale(1.02);
}

.itinerary-heading-bubble {
    display: inline-flex;
    max-width: 100%;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    border-radius: 1.25rem;
    border-width: 2px;
    border-style: solid;
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.itinerary-card:hover .itinerary-heading-bubble {
    transform: translateY(-3px);
}

.itinerary-days-chip {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    border-radius: 9999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.itinerary-heading-bubble--gold {
    border-color: rgba(0, 0, 0, 0.18);
    background: linear-gradient(145deg, #fae330 0%, #fff7b8 52%, #f3cf00 100%);
    box-shadow:
        0 0 0 1px rgba(255, 247, 184, 0.8),
        0 0 22px rgba(250, 227, 48, 0.55),
        0 10px 24px rgba(0, 0, 0, 0.18);
}

.itinerary-heading-bubble--gold .itinerary-days-chip {
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: #000000;
    color: #fae330;
}

.itinerary-heading-bubble--dark {
    border-color: #fae330;
    background: linear-gradient(145deg, #1a1a1a 0%, #000000 100%);
    box-shadow:
        0 0 0 1px rgba(250, 227, 48, 0.35),
        0 0 20px rgba(250, 227, 48, 0.28),
        0 12px 28px rgba(0, 0, 0, 0.35);
}

.itinerary-heading-bubble--dark .itinerary-days-chip {
    border: 1px solid rgba(250, 227, 48, 0.45);
    background: #fae330;
    color: #000000;
}

.itinerary-heading-bubble--glow {
    border-color: rgba(250, 227, 48, 0.75);
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 100%);
    backdrop-filter: blur(8px);
    box-shadow:
        0 0 0 1px rgba(250, 227, 48, 0.4),
        0 0 28px rgba(250, 227, 48, 0.42),
        inset 0 0 24px rgba(250, 227, 48, 0.08),
        0 12px 30px rgba(0, 0, 0, 0.32);
}

.itinerary-heading-bubble--glow .itinerary-days-chip {
    border: 1px solid rgba(250, 227, 48, 0.55);
    background: rgba(250, 227, 48, 0.16);
    color: #fae330;
    box-shadow: 0 0 14px rgba(250, 227, 48, 0.35);
}

.itinerary-card:hover .itinerary-heading-bubble--gold {
    box-shadow:
        0 0 0 1px rgba(255, 247, 184, 0.95),
        0 0 32px rgba(250, 227, 48, 0.72),
        0 14px 30px rgba(0, 0, 0, 0.22);
}

.itinerary-card:hover .itinerary-heading-bubble--dark {
    box-shadow:
        0 0 0 1px rgba(250, 227, 48, 0.55),
        0 0 30px rgba(250, 227, 48, 0.45),
        0 16px 34px rgba(0, 0, 0, 0.4);
}

.itinerary-card:hover .itinerary-heading-bubble--glow {
    box-shadow:
        0 0 0 1px rgba(250, 227, 48, 0.65),
        0 0 38px rgba(250, 227, 48, 0.58),
        inset 0 0 28px rgba(250, 227, 48, 0.12),
        0 16px 36px rgba(0, 0, 0, 0.38);
}

@media (prefers-reduced-motion: reduce) {
    .itinerary-card:hover {
        transform: none;
    }

    .itinerary-card-bg,
    .group:hover .itinerary-card-bg {
        transform: none;
        transition: none;
    }

    .itinerary-toast,
    .itinerary-toast--show,
    .itinerary-toast--hide {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

.itinerary-toast-root {
    position: fixed;
    right: 1rem;
    bottom: 1.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
    width: min(22rem, calc(100vw - 2rem));
}

.itinerary-toast {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1rem 1.125rem;
    border-radius: 1rem;
    border: 2px solid #fae330;
    background: linear-gradient(145deg, #141414 0%, #000000 100%);
    box-shadow:
        0 0 0 1px rgba(250, 227, 48, 0.35),
        0 0 28px rgba(250, 227, 48, 0.42),
        0 16px 40px rgba(0, 0, 0, 0.38);
    opacity: 0;
    transform: translate3d(110%, 0, 0);
    transition:
        transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
        opacity 420ms ease;
}

.itinerary-toast--show {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.itinerary-toast--hide {
    opacity: 0;
    transform: translate3d(110%, 0, 0);
}

.itinerary-toast-icon {
    display: flex;
    height: 2.75rem;
    width: 2.75rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 2px solid rgba(0, 0, 0, 0.15);
    background: linear-gradient(145deg, #fae330 0%, #fff7b8 100%);
    color: #000000;
    box-shadow: 0 0 18px rgba(250, 227, 48, 0.55);
}

.itinerary-toast-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.itinerary-toast-body {
    min-width: 0;
    flex: 1;
    padding-top: 0.125rem;
}

.itinerary-toast-title {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fae330;
}

.itinerary-toast-message {
    margin: 0.25rem 0 0;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.35;
    color: #ffffff;
}

@media (max-width: 640px) {
    .itinerary-toast-root {
        right: 0.75rem;
        left: 0.75rem;
        width: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-image-wrap:hover {
        box-shadow:
            0 0 0 1px rgba(250, 227, 48, 0.18),
            0 0 12px rgba(250, 227, 48, 0.28),
            0 0 24px rgba(250, 227, 48, 0.16),
            0 10px 28px rgba(0, 0, 0, 0.12);
    }
}

@keyframes travelCardFloat {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes travelIconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(250, 227, 48, 0.45), 0 10px 22px rgba(0, 0, 0, 0.12);
    }

    50% {
        transform: scale(1.07);
        box-shadow: 0 0 0 10px rgba(250, 227, 48, 0), 0 14px 28px rgba(0, 0, 0, 0.16);
    }
}

@keyframes travelShimmer {
    0% {
        transform: translateX(-130%) skewX(-18deg);
    }

    100% {
        transform: translateX(220%) skewX(-18deg);
    }
}

.travel-card {
    position: relative;
    overflow: visible;
    border: 2px solid rgba(0, 0, 0, 0.75);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16), 0 0 2px rgba(250, 227, 48, 0.03), 0 0 4px rgba(250, 227, 48, 0.015), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1), border-color 320ms ease;
}

    .travel-card::after {
        content: "";
        position: absolute;
        inset: -10px;
        border-radius: 1.35rem;
        background: radial-gradient(circle, rgba(250, 227, 48, 0.025) 0%, rgba(250, 227, 48, 0.008) 45%, rgba(250, 227, 48, 0) 75%);
        filter: blur(0.5px);
        pointer-events: none;
        z-index: -1;
    }

    .travel-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.6) 50%, transparent 70%);
        opacity: 0;
        pointer-events: none;
        transition: opacity 360ms ease;
    }

    .travel-card:hover {
        transform: translateY(-8px) scale(1.015);
        border-color: rgba(0, 0, 0, 1);
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24), 0 0 0 2px rgba(250, 227, 48, 0.06), 0 0 4px rgba(250, 227, 48, 0.04), 0 0 6px rgba(250, 227, 48, 0.02);
    }

.travel-card-main {
    border: 2px solid rgba(0, 0, 0, 0.75);
    border-radius: 1.5rem;
    background: #ffffff;
    animation: none !important;
    transform: scale(0.97);
    overflow: visible !important;
    isolation: isolate;
    z-index: 1;
}

    .travel-card-main:hover {
        transform: translateY(-1px) scale(0.975);
        border-color: rgba(0, 0, 0, 0.75);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(250, 227, 48, 0.24), 0 0 14px rgba(250, 227, 48, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
        z-index: 12;
    }

    .travel-card-main::after {
        content: "";
        position: absolute;
        inset: -1px;
        border-radius: 1.7rem;
        background: linear-gradient(135deg, #fae330 0%, #fff18f 50%, #f3cf00 100%);
        transform: rotate(11deg);
        transform-origin: center;
        pointer-events: none;
        z-index: 0;
        box-shadow: 0 0 0 1px rgba(250, 227, 48, 0.28);
        transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
    }

    .travel-card-main:hover::after {
        transform: rotate(-11deg) scale(1.001);
        box-shadow: 0 0 0 1px rgba(250, 227, 48, 0.38), 0 0 3px rgba(250, 227, 48, 0.1);
    }

    .travel-card-main::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 1.5rem;
        background: #ffffff;
        pointer-events: none;
        z-index: 1;
    }

    .travel-card-main > * {
        position: relative;
        z-index: 2;
    }

.travel-card:hover::before {
    opacity: 0.45;
}

.travel-card-icon {
    background: radial-gradient(circle at 35% 30%, #fff8bd 0%, #fae330 55%, #f0ca00 100%);
    border: 2px solid rgba(0, 0, 0, 0.8);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12), 0 0 22px rgba(250, 227, 48, 0.55);
    animation: travelIconPulse 3.3s ease-in-out infinite;
}

.travel-card:hover .travel-card-icon {
    animation-duration: 1.4s;
}

.travel-card-icon svg {
    transition: transform 240ms ease;
}

.travel-card:hover .travel-card-icon svg {
    transform: scale(1.12) rotate(-4deg);
}

.travel-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    margin-bottom: 0.8rem;
}

.travel-card-title {
    margin: 0;
    line-height: 1.1;
    letter-spacing: 0.01em;
    flex: 1;
    margin-left: auto;
    text-align: right;
}

.travel-item {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    border-radius: 0.7rem;
    background: transparent;
    padding: 0.35rem 0.55rem;
}

.travel-item-icon {
    margin-top: 0.06rem;
    display: flex;
    height: 1rem;
    width: 1rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.85);
    color: #fae330;
    box-shadow: 0 0 8px rgba(250, 227, 48, 0.55);
}

    .travel-item-icon svg {
        height: 0.6rem;
        width: 0.6rem;
    }

.travel-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-top: 0.25rem;
    border-radius: 0.7rem;
    background: transparent;
    padding: 0.45rem 0.55rem;
}

    .travel-detail-row p {
        margin: 0;
    }

@media (min-width: 1024px) {
    .travel-card:nth-child(odd) {
        animation: travelCardFloat 6s ease-in-out infinite;
    }

    .travel-card:nth-child(even) {
        animation: travelCardFloat 6s ease-in-out infinite reverse;
    }
}

@media (prefers-reduced-motion: reduce) {
    .travel-card,
    .travel-card::before,
    .travel-card-icon {
        animation: none !important;
        transition: none !important;
    }
}

/* Scroll to top: theme primary/secondary, fades in when lower on page */
#scroll-to-top {
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.375rem);
    transition: opacity 240ms cubic-bezier(0.22, 1, 0.36, 1), transform 240ms cubic-bezier(0.22, 1, 0.36, 1), visibility 240ms step-end;
}

    #scroll-to-top.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: opacity 240ms cubic-bezier(0.22, 1, 0.36, 1), transform 240ms cubic-bezier(0.22, 1, 0.36, 1), visibility 240ms step-start;
    }

    #scroll-to-top:focus-visible {
        outline: 2px solid #fae330;
        outline-offset: 3px;
    }

/* Scroll-triggered section fade */
:root {
    --ease-smooth-out: cubic-bezier(0.16, 1, 0.3, 1);
    --duration-reveal: 1150ms;
}

@media (prefers-reduced-motion: no-preference) {
    html:not(.has-ui-anim) .hero-enter {
        opacity: 1;
        transform: none;
        filter: none;
        animation: none;
    }

    html:not(.has-ui-anim) [data-ui-reveal] {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .hero-enter {
        opacity: 0;
        transform: translate3d(0, 36px, 0) scale(0.985);
        filter: blur(10px);
        animation: heroEnter 1200ms var(--ease-smooth-out) forwards;
        animation-delay: var(--hero-enter-delay, 0ms);
    }

    @keyframes heroEnter {
        to {
            opacity: 1;
            transform: translate3d(0, 0, 0) scale(1);
            filter: blur(0);
        }
    }

    [data-ui-reveal] {
        opacity: 0;
        transform: translate3d(0, 52px, 0) scale(0.985);
        filter: blur(12px);
        transition:
            opacity var(--duration-reveal) var(--ease-smooth-out),
            transform var(--duration-reveal) var(--ease-smooth-out),
            filter var(--duration-reveal) var(--ease-smooth-out);
        transition-delay: var(--ui-reveal-delay, 0ms);
        will-change: opacity, transform, filter;
    }

    [data-ui-reveal="left"] {
        transform: translate3d(-48px, 0, 0) scale(0.985);
    }

    [data-ui-reveal="right"] {
        transform: translate3d(48px, 0, 0) scale(0.985);
    }

    [data-ui-reveal="scale"] {
        transform: scale(0.94);
    }

    [data-ui-reveal].is-revealed {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        filter: blur(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-enter,
    [data-ui-reveal] {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
        animation: none !important;
    }
}
