/* ============================================================
   MEGARA VOYAGES
   HOME PAGE
   ============================================================ */


/* ============================================================
   GLOBAL HOME VARIABLES
   ============================================================ */

   :root {
    --mv-blue: #07539B;
    --mv-blue-2: #0A68B8;
    --mv-night: #061F38;
    --mv-night-2: #082945;
    --mv-surface: #0C2A47;

    --mv-gold: #F4B94F;
    --mv-gold-deep: #C68B25;
    --mv-gold-soft: #FFD98A;

    --mv-ivory: #F7F1E7;
    --mv-cream: #FBF8F3;
    --mv-white: #FFFFFF;

    --mv-muted: #6B8092;

    --mv-whatsapp: #18A85B;

    --mv-shadow-sm:
        0 10px 30px rgba(6, 31, 56, .08);

    --mv-shadow:
        0 20px 50px rgba(6, 31, 56, .12);

    --mv-shadow-lg:
        0 35px 80px rgba(6, 31, 56, .18);

    --mv-radius: 20px;
    --mv-radius-lg: 32px;

    --mv-ease:
        cubic-bezier(.22, .61, .36, 1);
}


/* ============================================================
   HOME GENERIC
   ============================================================ */

.mv-section {
    position: relative;

    padding:
        clamp(80px, 9vw, 135px)
        0;

    overflow: hidden;
}


.mv-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--mv-gold-deep);

    font-size: .74rem;
    font-weight: 800;

    letter-spacing: .16em;

    text-transform: uppercase;
}


.mv-section-kicker::before {
    content: '';

    width: 28px;
    height: 1px;

    background:
        currentColor;
}


.mv-section-kicker--light {
    color: var(--mv-gold);
}


.mv-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom:
        clamp(38px, 5vw, 65px);
}


.mv-section-heading > div {
    max-width: 700px;
}


.mv-section-heading h2,
.mv-search-zone__header h2,
.mv-story h2,
.mv-final-cta h2 {
    margin-top: 12px;

    color: var(--heading);

    font-family:
        var(--font-title);

    font-size:
        clamp(2.15rem, 4vw, 4rem);

    font-weight: 400;

    line-height: 1.05;

    letter-spacing: -.025em;
}


.mv-section-heading h2 em,
.mv-search-zone__header h2 em,
.mv-story h2 em,
.mv-final-cta h2 em {
    color: var(--mv-gold);

    font-weight: 400;
}


.mv-section-heading > p {
    max-width: 430px;

    color: var(--text-soft);

    font-size: .95rem;

    line-height: 1.8;
}


.mv-section-heading--center {
    display: block;

    max-width: 800px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


.mv-section-heading--center
.mv-section-kicker {
    justify-content: center;
}


.mv-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--mv-blue);

    font-size: .85rem;
    font-weight: 800;

    transition:
        gap .25s ease,
        color .25s ease;
}


.mv-text-link:hover {
    gap: 16px;
    color: var(--mv-gold-deep);
}


/* ============================================================
   BUTTONS
   ============================================================ */

.mv-btn {
    position: relative;

    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 0 25px;

    border-radius: 999px;

    font-size: .88rem;
    font-weight: 800;

    overflow: hidden;

    transition:
        transform .25s var(--mv-ease),
        box-shadow .25s var(--mv-ease),
        background .25s ease,
        color .25s ease;
}


.mv-btn:hover {
    transform:
        translateY(-3px);
}


.mv-btn span {
    transition:
        transform .25s ease;
}


.mv-btn:hover span {
    transform:
        translateX(4px);
}


.mv-btn--gold {
    background:
        linear-gradient(
            135deg,
            var(--mv-gold),
            #FFC85F
        );

    color: #2E2107;

    box-shadow:
        0 14px 35px
        rgba(244, 185, 79, .28);
}


.mv-btn--gold:hover {
    box-shadow:
        0 20px 44px
        rgba(244, 185, 79, .38);
}


.mv-btn--blue {
    background:
        var(--mv-blue);

    color: #fff;

    box-shadow:
        0 12px 30px
        rgba(7, 83, 155, .2);
}


.mv-btn--blue:hover {
    background:
        #064780;

    color: #fff;
}


.mv-btn--glass {
    color: #fff;

    background:
        rgba(255, 255, 255, .08);

    border:
        1px solid
        rgba(255, 255, 255, .18);

    backdrop-filter:
        blur(10px);
}


.mv-btn--glass:hover {
    background:
        rgba(255, 255, 255, .14);

    color: #fff;
}


.mv-btn--whatsapp {
    background:
        var(--mv-whatsapp);

    color: #fff;

    box-shadow:
        0 15px 35px
        rgba(24, 168, 91, .25);
}


/* ============================================================
   HERO
   ============================================================ */

.mv-hero {
    position: relative;

    min-height:
        calc(100vh - 78px);

    display: flex;
    align-items: center;

    isolation: isolate;

    overflow: hidden;

    background:
        var(--mv-night);
}


.mv-hero__visual {
    position: absolute;

    inset: 0;

    z-index: -5;

    background:
        linear-gradient(
            100deg,
            rgba(6,31,56,.98) 0%,
            rgba(6,31,56,.92) 35%,
            rgba(6,31,56,.55) 67%,
            rgba(6,31,56,.8) 100%
        ),
        radial-gradient(
            circle at 78% 42%,
            rgba(244,185,79,.28),
            transparent 25%
        ),
        url("../images/hero/hero.jpeg")
        center / cover
        no-repeat;
}


.mv-hero__overlay {
    position: absolute;

    inset: 0;

    z-index: -4;

    background:
        linear-gradient(
            to bottom,
            transparent 55%,
            rgba(6,31,56,.72)
        );
}


.mv-hero__sun {
    position: absolute;

    width: 460px;
    height: 460px;

    right: 8%;
    top: 50%;

    transform:
        translateY(-50%);

    border-radius: 50%;

    z-index: -3;

    background:
        radial-gradient(
            circle,
            rgba(244,185,79,.18),
            rgba(244,185,79,.05) 45%,
            transparent 68%
        );

    filter:
        blur(1px);

    animation:
        mvSunPulse
        7s ease-in-out
        infinite;
}


@keyframes mvSunPulse {
    0%,
    100% {
        transform:
            translateY(-50%)
            scale(1);

        opacity: .8;
    }

    50% {
        transform:
            translateY(-50%)
            scale(1.12);

        opacity: .5;
    }
}


.mv-hero__orbit {
    position: absolute;

    border:
        1px solid
        rgba(244, 185, 79, .15);

    border-radius: 50%;

    z-index: -2;

    pointer-events: none;
}


.mv-hero__orbit--one {
    width: 650px;
    height: 650px;

    right: -160px;
    top: -170px;
}


.mv-hero__orbit--two {
    width: 380px;
    height: 380px;

    right: 13%;
    bottom: -190px;
}


.mv-hero__container {
    width: 100%;

    min-height:
        calc(100vh - 78px);

    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(300px, .65fr);

    align-items: center;

    gap: 70px;

    padding-top: 75px;
    padding-bottom: 90px;
}


.mv-hero__content {
    max-width: 790px;
}


.mv-eyebrow {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

    color: var(--mv-gold-soft);

    font-size: .75rem;
    font-weight: 800;

    letter-spacing: .16em;

    text-transform: uppercase;

    animation:
        mvFadeUp
        .8s var(--mv-ease)
        both;
}


.mv-eyebrow span {
    width: 36px;
    height: 1px;

    background:
        var(--mv-gold);
}


.mv-hero__title {
    max-width: 800px;

    color:
        var(--mv-ivory);

    font-family:
        var(--font-title);

    font-size:
        clamp(
            4rem,
            7.2vw,
            7.4rem
        );

    line-height: .88;

    letter-spacing: -.045em;

    font-weight: 400;

    text-wrap: balance;

    animation:
        mvFadeUp
        .9s .08s
        var(--mv-ease)
        both;
}


.mv-hero__title em {
    display: block;

    margin-top: 12px;

    color:
        var(--mv-gold);

    font-weight: 400;
}


.mv-hero__lead {
    max-width: 670px;

    margin-top: 30px;

    color:
        rgba(247, 241, 231, .73);

    font-size:
        clamp(.95rem, 1.2vw, 1.12rem);

    line-height: 1.9;

    animation:
        mvFadeUp
        .9s .16s
        var(--mv-ease)
        both;
}


.mv-hero__actions {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    margin-top: 36px;

    animation:
        mvFadeUp
        .9s .24s
        var(--mv-ease)
        both;
}


.mv-hero__trust {
    display: flex;
    align-items: center;

    gap: 22px;

    margin-top: 48px;

    animation:
        mvFadeUp
        .9s .32s
        var(--mv-ease)
        both;
}


.mv-hero__trust-item strong {
    display: block;

    color: #fff;

    font-size: .78rem;

    letter-spacing: .04em;
}


.mv-hero__trust-item span {
    display: block;

    margin-top: 3px;

    color:
        rgba(247,241,231,.48);

    font-size: .7rem;
}


.mv-hero__trust-line {
    width: 1px;
    height: 34px;

    background:
        rgba(255,255,255,.13);
}


.mv-hero__art {
    position: relative;

    min-height: 500px;

    display: flex;
    justify-content: center;
    align-items: center;

    animation:
        mvFadeIn
        1.2s .25s
        ease both;
}


.mv-hero__badge {
    position: absolute;

    top: 15%;
    right: 5%;

    display: flex;
    align-items: center;
    gap: 9px;

    padding:
        10px 16px;

    border:
        1px solid
        rgba(255,255,255,.17);

    border-radius: 999px;

    color:
        rgba(255,255,255,.8);

    background:
        rgba(6,31,56,.35);

    backdrop-filter:
        blur(13px);

    font-size: .72rem;
}


.mv-hero__badge span {
    color: var(--mv-gold);
}


.mv-hero__passport {
    position: absolute;

    right: 7%;
    bottom: 16%;

    width: 260px;

    padding: 25px;

    background:
        rgba(6,31,56,.42);

    border:
        1px solid
        rgba(244,185,79,.21);

    border-radius: 22px;

    backdrop-filter:
        blur(16px);

    box-shadow:
        0 30px 60px
        rgba(0,0,0,.18);

    transform:
        rotate(-3deg);
}


.mv-hero__passport span {
    display: block;

    margin-bottom: 8px;

    color:
        var(--mv-gold);

    font-size: .65rem;

    letter-spacing: .12em;

    text-transform: uppercase;
}


.mv-hero__passport strong {
    display: block;

    color:
        var(--mv-ivory);

    font-family:
        var(--font-title);

    font-size: 1.35rem;

    line-height: 1.3;

    font-weight: 400;
}


.mv-hero__scroll {
    position: absolute;

    left: 50%;
    bottom: 24px;

    transform:
        translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 8px;

    color:
        rgba(255,255,255,.4);

    font-size: .62rem;

    letter-spacing: .15em;

    text-transform: uppercase;
}


.mv-hero__scroll span {
    display: block;

    width: 1px;
    height: 30px;

    background:
        linear-gradient(
            var(--mv-gold),
            transparent
        );
}


@keyframes mvFadeUp {
    from {
        opacity: 0;

        transform:
            translateY(25px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}


@keyframes mvFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* ============================================================
   SEARCH ZONE
   ============================================================ */

.mv-search-zone {
    position: relative;

    padding:
        65px 0 100px;

    background:
        var(--bg);

    z-index: 10;
}


.mv-search-zone::before {
    content: '';

    position: absolute;

    top: 0;
    left: 50%;

    width: min(90%, 1000px);
    height: 1px;

    transform:
        translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(244,185,79,.5),
            transparent
        );
}


.mv-search-zone__header {
    margin-bottom: 28px;

    text-align: center;
}


/* ============================================================
   SEARCH COMPONENT
   ============================================================ */

.home-search {
    position: relative;

    max-width: 1220px;

    margin: 0 auto;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--mv-radius-lg);

    background:
        var(--surface);

    box-shadow:
        var(--mv-shadow-lg);

    overflow: hidden;
}


.home-search__tabs {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    padding:
        9px;

    gap: 6px;

    background:
        var(--bg-alt);

    border-bottom:
        1px solid
        var(--border);
}


.home-search__tab {
    min-height: 58px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding:
        0 16px;

    border-radius: 15px;

    color:
        var(--text-soft);

    font-weight: 700;

    font-size: .83rem;

    transition:
        color .25s ease,
        background .25s ease,
        transform .25s ease;
}


.home-search__tab:hover {
    color:
        var(--mv-blue);

    background:
        rgba(7,83,155,.05);
}


.home-search__tab.is-active {
    color:
        #fff;

    background:
        var(--mv-blue);

    box-shadow:
        0 10px 25px
        rgba(7,83,155,.2);
}


.home-search__tab-icon {
    font-size: 1rem;
}


.home-search__panel {
    display: none;

    padding: 25px;
}


.home-search__panel.is-active {
    display: block;

    animation:
        mvSearchPanel
        .35s ease;
}


@keyframes mvSearchPanel {
    from {
        opacity: 0;

        transform:
            translateY(5px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}


.home-search__fields {
    display: grid;

    grid-template-columns:
        1.1fr
        auto
        1.1fr
        .9fr
        .9fr
        .7fr
        auto;

    align-items: stretch;

    gap: 10px;
}


.home-search__fields--hotel {
    grid-template-columns:
        1.3fr
        .9fr
        .9fr
        .65fr
        auto;
}


.home-search__fields--simple {
    grid-template-columns:
        1.5fr
        1fr
        auto;
}


.home-search__field {
    min-width: 0;
    min-height: 67px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding:
        10px 14px;

    border:
        1px solid
        var(--border);

    border-radius: 15px;

    background:
        var(--bg);

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}


.home-search__field:focus-within {
    border-color:
        var(--mv-gold);

    box-shadow:
        0 0 0 4px
        rgba(244,185,79,.12);

    transform:
        translateY(-1px);
}


.home-search__field-icon {
    flex: 0 0 auto;

    color:
        var(--mv-gold-deep);

    font-size: 1rem;
}


.home-search__field > div {
    width: 100%;
    min-width: 0;
}


.home-search__field label {
    display: block;

    margin-bottom: 3px;

    color:
        var(--text-soft);

    font-size: .62rem;
    font-weight: 800;

    letter-spacing: .06em;

    text-transform: uppercase;
}


.home-search__field input {
    width: 100%;

    padding: 0;

    border: 0;

    outline: 0;

    background: transparent;

    color:
        var(--text);

    font-size: .82rem;
    font-weight: 700;
}


.home-search__field input::placeholder {
    color:
        var(--text-soft);

    opacity: .7;
}


.home-search__swap {
    align-self: center;

    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border:
        1px solid
        var(--border);

    border-radius: 50%;

    color:
        var(--mv-blue);

    background:
        var(--surface);

    cursor: pointer;

    transition:
        transform .3s ease,
        background .2s ease,
        color .2s ease;
}


.home-search__swap:hover {
    background:
        var(--mv-blue);

    color: #fff;
}


.home-search__swap.is-spinning {
    transform:
        rotate(180deg);
}


.home-search__submit {
    min-height: 67px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding:
        0 22px;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            var(--mv-blue),
            #086ABF
        );

    color: #fff;

    font-size: .8rem;
    font-weight: 800;

    white-space: nowrap;

    box-shadow:
        0 12px 30px
        rgba(7,83,155,.18);

    transition:
        transform .22s ease,
        box-shadow .22s ease;
}


.home-search__submit:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 16px 35px
        rgba(7,83,155,.28);

    color: #fff;
}


.home-search__visa {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding:
        5px;
}


.home-search__visa > div {
    max-width: 680px;
}


.home-search__visa-kicker {
    display: block;

    margin-bottom: 8px;

    color:
        var(--mv-gold-deep);

    font-size: .67rem;
    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;
}


.home-search__visa strong {
    display: block;

    color:
        var(--heading);

    font-family:
        var(--font-title);

    font-size:
        clamp(1.25rem, 2vw, 1.7rem);

    font-weight: 400;
}


.home-search__visa p {
    margin-top: 6px;

    color:
        var(--text-soft);

    font-size: .83rem;
}


/* ============================================================
   DESTINATIONS
   ============================================================ */

.mv-destinations {
    background:
        var(--bg-alt);
}


.mv-destination-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;

    perspective:
        1200px;
}


.mv-destination-card {
    position: relative;

    aspect-ratio: 1 / 1.15;

    overflow: hidden;

    border-radius:
        24px;

    border:
        1px solid
        rgba(255,255,255,.15);

    box-shadow:
        var(--mv-shadow);

    transform-style:
        preserve-3d;

    transition:
        transform .3s var(--mv-ease),
        box-shadow .3s ease;

    will-change:
        transform;
}


.mv-destination-card:nth-child(2n) {
    margin-top: 28px;
}


.mv-destination-card:hover {
    box-shadow:
        var(--mv-shadow-lg);
}


.mv-destination-card__media {
    position: absolute;

    inset: 0;
}


.mv-destination-card__media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s var(--mv-ease);
}


.mv-destination-card:hover
.mv-destination-card__media img {
    transform:
        scale(1.09);
}


.mv-destination-card__shade {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(6,31,56,.9),
            rgba(6,31,56,.07) 60%
        );
}


.mv-destination-card__content {
    position: absolute;

    inset:
        auto 22px 22px;

    z-index: 2;

    color: #fff;

    transform:
        translateZ(30px);
}


.mv-destination-card__content > span {
    display: block;

    margin-bottom: 5px;

    color:
        var(--mv-gold-soft);

    font-size: .62rem;
    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;
}


.mv-destination-card__content h3 {
    color: #fff;

    font-size:
        clamp(1.45rem, 2vw, 2rem);

    margin: 0;
}


.mv-destination-card__content a {
    display: inline-flex;

    margin-top: 12px;

    color:
        rgba(255,255,255,.8);

    font-size: .75rem;
    font-weight: 700;

    transition:
        color .2s ease;
}


.mv-destination-card__content a:hover {
    color:
        var(--mv-gold);
}


/* ============================================================
   SERVICES
   ============================================================ */

.mv-services {
    background:
        var(--bg);
}


.mv-services::before {
    content: '';

    position: absolute;

    width: 420px;
    height: 420px;

    left: -250px;
    top: 10%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(7,83,155,.07),
            transparent 70%
        );
}


.mv-services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


.mv-service-card {
    position: relative;

    min-height: 330px;

    display: flex;
    flex-direction: column;

    padding:
        30px;

    border:
        1px solid
        var(--border);

    border-radius:
        22px;

    background:
        var(--surface);

    box-shadow:
        var(--mv-shadow-sm);

    overflow: hidden;

    transition:
        transform .3s var(--mv-ease),
        box-shadow .3s ease,
        border-color .3s ease;
}


.mv-service-card::before {
    content: '';

    position: absolute;

    width: 150px;
    height: 150px;

    right: -70px;
    top: -70px;

    border-radius: 50%;

    background:
        rgba(244,185,79,.08);

    transition:
        transform .4s ease;
}


.mv-service-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(244,185,79,.4);

    box-shadow:
        var(--mv-shadow);
}


.mv-service-card:hover::before {
    transform:
        scale(1.6);
}


.mv-service-card__icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    margin-bottom: 35px;

    border-radius: 16px;

    background:
        rgba(7,83,155,.08);

    color:
        var(--mv-blue);

    font-size: 1.25rem;
}


.mv-service-card__number {
    position: absolute;

    right: 25px;
    top: 28px;

    color:
        var(--text-soft);

    opacity: .4;

    font-family:
        var(--font-title);

    font-size: 1.2rem;
}


.mv-service-card h3 {
    margin-bottom: 12px;

    font-size: 1.55rem;
}


.mv-service-card p {
    color:
        var(--text-soft);

    font-size: .83rem;

    line-height: 1.75;
}


.mv-service-card__link {
    margin-top: auto;
    padding-top: 28px;

    color:
        var(--mv-gold-deep);

    font-size: .78rem;
    font-weight: 800;
}


/* ============================================================
   TRIPS
   ============================================================ */

.mv-trips {
    background:
        var(--bg-alt);
}


.mv-trip-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 26px;
}


.mv-trip-card {
    overflow: hidden;

    border:
        1px solid
        var(--border);

    border-radius:
        24px;

    background:
        var(--surface);

    box-shadow:
        var(--mv-shadow-sm);

    transition:
        transform .3s var(--mv-ease),
        box-shadow .3s ease;
}


.mv-trip-card:hover {
    transform:
        translateY(-7px);

    box-shadow:
        var(--mv-shadow);
}


.mv-trip-card__media {
    position: relative;

    display: block;

    aspect-ratio:
        1 / 1;

    overflow: hidden;
}


.mv-trip-card__media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .65s var(--mv-ease);
}


.mv-trip-card:hover
.mv-trip-card__media img {
    transform:
        scale(1.065);
}


.mv-trip-card__media::after {
    content: '';

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(6,31,56,.45),
            transparent 45%
        );
}


.mv-trip-card__destination,
.mv-trip-card__duration {
    position: absolute;

    z-index: 2;

    top: 18px;

    padding:
        8px 12px;

    border-radius:
        999px;

    font-size: .66rem;
    font-weight: 800;

    backdrop-filter:
        blur(10px);
}


.mv-trip-card__destination {
    left: 18px;

    color: #fff;

    background:
        rgba(6,31,56,.55);

    border:
        1px solid
        rgba(255,255,255,.18);
}


.mv-trip-card__duration {
    right: 18px;

    color: #3a2905;

    background:
        rgba(244,185,79,.92);
}


.mv-trip-card__body {
    padding:
        23px;
}


.mv-trip-card__body h3 {
    font-size:
        clamp(1.25rem, 1.8vw, 1.65rem);

    line-height: 1.25;
}


.mv-trip-card__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-top: 28px;

    padding-top: 20px;

    border-top:
        1px solid
        var(--border);
}


.mv-trip-card__bottom small {
    display: block;

    color:
        var(--text-soft);

    font-size: .66rem;
}


.mv-trip-card__bottom strong {
    display: block;

    margin-top: 2px;

    color:
        var(--mv-gold-deep);

    font-size: 1rem;
}


.mv-circle-link {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        var(--mv-blue);

    color: #fff;

    transition:
        transform .25s ease,
        background .25s ease;
}


.mv-circle-link:hover {
    transform:
        rotate(12deg);

    background:
        var(--mv-gold-deep);

    color: #fff;
}


/* ============================================================
   OFFERS
   ============================================================ */

.mv-offers {
    position: relative;

    background:
        var(--bg);
}


.mv-offer-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}


.mv-offer-card {
    position: relative;

    overflow: hidden;

    border:
        1px solid
        var(--border);

    border-radius:
        24px;

    background:
        var(--surface);

    box-shadow:
        var(--mv-shadow-sm);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.mv-offer-card:hover {
    transform:
        translateY(-7px);

    box-shadow:
        var(--mv-shadow);
}


.mv-offer-card__media {
    position: relative;

    aspect-ratio: 1 / 1;

    overflow: hidden;
}


.mv-offer-card__media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s ease;
}


.mv-offer-card:hover
.mv-offer-card__media img {
    transform:
        scale(1.06);
}


.mv-offer-card__badge {
    position: absolute;

    left: 17px;
    top: 17px;

    padding:
        8px 12px;

    border-radius:
        999px;

    color:
        #332405;

    background:
        var(--mv-gold);

    font-size: .65rem;
    font-weight: 800;
}


.mv-offer-card__body {
    padding:
        24px;
}


.mv-offer-card__destination {
    display: block;

    color:
        var(--mv-gold-deep);

    font-size: .67rem;
    font-weight: 800;

    letter-spacing: .09em;

    text-transform: uppercase;
}


.mv-offer-card h3 {
    margin-top: 7px;

    font-size: 1.55rem;
}


.mv-offer-card__price {
    display: flex;
    align-items: baseline;

    gap: 10px;

    margin:
        20px 0;
}


.mv-offer-card__price del {
    color:
        var(--text-soft);

    font-size: .8rem;
}


.mv-offer-card__price strong {
    color:
        var(--mv-gold-deep);

    font-size: 1.15rem;
}


/* ============================================================
   STORY
   ============================================================ */

.mv-story {
    position: relative;

    padding:
        clamp(90px, 10vw, 150px)
        0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            var(--mv-night),
            #082D50
        );
}


.mv-story::before {
    content: '';

    position: absolute;

    width: 600px;
    height: 600px;

    right: -180px;
    top: -250px;

    border:
        1px solid
        rgba(244,185,79,.1);

    border-radius: 50%;
}


.mv-story::after {
    content: '';

    position: absolute;

    width: 350px;
    height: 350px;

    left: -220px;
    bottom: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(244,185,79,.12),
            transparent 70%
        );
}


.mv-story__container {
    display: grid;

    grid-template-columns:
        1.2fr .7fr;

    align-items: center;

    gap: 80px;
}


.mv-story__content {
    position: relative;

    z-index: 2;

    max-width: 720px;
}


.mv-story h2 {
    color:
        var(--mv-ivory);

    margin-top: 14px;
}


.mv-story p {
    max-width: 650px;

    margin:
        24px 0 32px;

    color:
        rgba(247,241,231,.68);

    line-height: 1.9;

    font-size: .94rem;
}


.mv-story__mark {
    position: relative;

    min-height: 390px;

    display: grid;
    place-items: center;
}


.mv-story__mark-circle {
    position: relative;

    z-index: 2;

    width: 220px;
    height: 220px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,.96);

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.25);
}


.mv-story__mark-circle img {
    width: 185px;
    height: 185px;

    object-fit: contain;
}


.mv-story__orbit {
    position: absolute;

    width: 340px;
    height: 340px;

    border:
        1px solid
        rgba(244,185,79,.25);

    border-radius: 50%;

    animation:
        mvRotate
        18s linear infinite;
}


.mv-story__orbit::before {
    content: '';

    position: absolute;

    width: 10px;
    height: 10px;

    top: 35px;
    right: 55px;

    border-radius: 50%;

    background:
        var(--mv-gold);

    box-shadow:
        0 0 20px
        var(--mv-gold);
}


@keyframes mvRotate {
    to {
        transform:
            rotate(360deg);
    }
}


/* ============================================================
   BLOG
   ============================================================ */

.mv-blog {
    background:
        var(--bg-alt);
}


.mv-blog-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.mv-blog-card {
    overflow: hidden;

    border-radius:
        22px;

    border:
        1px solid
        var(--border);

    background:
        var(--surface);

    box-shadow:
        var(--mv-shadow-sm);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}


.mv-blog-card:hover {
    transform:
        translateY(-6px);

    box-shadow:
        var(--mv-shadow);
}


.mv-blog-card__media {
    display: block;

    aspect-ratio:
        1 / 1;

    overflow: hidden;
}


.mv-blog-card__media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .65s ease;
}


.mv-blog-card:hover
.mv-blog-card__media img {
    transform:
        scale(1.06);
}


.mv-blog-card__body {
    padding:
        23px;
}


.mv-blog-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 10px;

    margin-bottom: 13px;

    color:
        var(--text-soft);

    font-size: .66rem;

    text-transform: uppercase;

    letter-spacing: .08em;
}


.mv-blog-card__meta span {
    color:
        var(--mv-gold-deep);

    font-weight: 800;
}


.mv-blog-card h3 {
    font-size: 1.45rem;

    line-height: 1.3;
}


.mv-blog-card p {
    margin:
        12px 0 18px;

    color:
        var(--text-soft);

    font-size: .82rem;

    line-height: 1.7;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */

.mv-testimonials {
    background:
        var(--bg);
}


.mv-testimonial-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


.mv-testimonial {
    position: relative;

    min-height: 280px;

    display: flex;
    flex-direction: column;

    padding:
        30px;

    border:
        1px solid
        var(--border);

    border-radius:
        22px;

    background:
        var(--surface);

    box-shadow:
        var(--mv-shadow-sm);

    overflow: hidden;
}


.mv-testimonial__quote {
    position: absolute;

    right: 20px;
    top: -15px;

    color:
        rgba(244,185,79,.16);

    font-family:
        Georgia, serif;

    font-size: 8rem;

    line-height: 1;
}


.mv-testimonial > p {
    position: relative;

    z-index: 2;

    color:
        var(--text);

    font-family:
        var(--font-title);

    font-size: 1.12rem;

    line-height: 1.65;
}


.mv-testimonial__author {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: auto;
    padding-top: 25px;
}


.mv-testimonial__avatar {
    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        var(--mv-blue);

    color: #fff;

    font-weight: 800;
}


.mv-testimonial__author strong {
    display: block;

    color:
        var(--heading);

    font-size: .8rem;
}


.mv-testimonial__author span {
    display: block;

    margin-top: 2px;

    color:
        var(--text-soft);

    font-size: .68rem;
}


.mv-testimonial-empty {
    max-width: 900px;

    display: flex;
    align-items: center;

    gap: 30px;

    margin: 0 auto;

    padding:
        35px;

    border:
        1px solid
        var(--border);

    border-radius:
        22px;

    background:
        var(--surface);
}


.mv-testimonial-empty__symbol {
    flex: 0 0 auto;

    color:
        var(--mv-gold);

    font-family:
        Georgia, serif;

    font-size: 6rem;

    line-height: .7;
}


.mv-testimonial-empty h3 {
    font-size: 1.35rem;
}


.mv-testimonial-empty p {
    margin-top: 8px;

    color:
        var(--text-soft);

    font-size: .82rem;
}


/* ============================================================
   FINAL CTA
   ============================================================ */

.mv-final-cta {
    padding:
        60px 0 110px;

    background:
        var(--bg);
}


.mv-final-cta__card {
    position: relative;

    min-height: 310px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;

    padding:
        clamp(35px, 6vw, 70px);

    overflow: hidden;

    border-radius:
        32px;

    background:
        linear-gradient(
            120deg,
            var(--mv-night),
            #0B3E69
        );

    box-shadow:
        var(--mv-shadow-lg);
}


.mv-final-cta__glow {
    position: absolute;

    width: 400px;
    height: 400px;

    right: -80px;
    top: -150px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(244,185,79,.25),
            transparent 67%
        );
}


.mv-final-cta__content {
    position: relative;

    z-index: 2;

    max-width: 750px;
}


.mv-final-cta h2 {
    color:
        var(--mv-ivory);

    margin-top: 10px;
}


.mv-final-cta p {
    margin-top: 16px;

    color:
        rgba(247,241,231,.65);

    font-size: .9rem;
}


.mv-final-cta .mv-btn {
    position: relative;

    z-index: 3;

    flex: 0 0 auto;
}


/* ============================================================
   EMPTY
   ============================================================ */

.mv-empty {
    padding:
        60px 25px;

    text-align: center;

    border:
        1px dashed
        var(--border);

    border-radius:
        24px;

    background:
        var(--surface);
}


.mv-empty__icon {
    width: 60px;
    height: 60px;

    display: grid;
    place-items: center;

    margin:
        0 auto 18px;

    border-radius: 50%;

    background:
        rgba(7,83,155,.08);

    color:
        var(--mv-blue);

    font-size: 1.4rem;
}


.mv-empty p {
    max-width: 550px;

    margin:
        8px auto 0;

    color:
        var(--text-soft);
}


.mv-placeholder {
    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            135deg,
            #0A3E69,
            var(--mv-night)
        );

    color:
        var(--mv-gold);

    font-size: 3rem;
}


/* ============================================================
   REVEAL
   ============================================================ */

.mv-reveal {
    opacity: 0;

    transform:
        translateY(24px);

    transition:
        opacity .7s var(--mv-ease),
        transform .7s var(--mv-ease);
}


.mv-reveal.is-visible {
    opacity: 1;

    transform:
        translateY(0);
}


/* ============================================================
   DARK MODE
   ============================================================ */

html[data-theme="dark"]
.mv-destinations,
html[data-theme="dark"]
.mv-trips,
html[data-theme="dark"]
.mv-blog {
    background:
        #071E36;
}


html[data-theme="dark"]
.mv-search-zone,
html[data-theme="dark"]
.mv-services,
html[data-theme="dark"]
.mv-offers,
html[data-theme="dark"]
.mv-testimonials,
html[data-theme="dark"]
.mv-final-cta {
    background:
        var(--bg);
}


html[data-theme="dark"]
.home-search {
    box-shadow:
        0 28px 70px
        rgba(0,0,0,.3);
}


html[data-theme="dark"]
.mv-service-card,
html[data-theme="dark"]
.mv-trip-card,
html[data-theme="dark"]
.mv-offer-card,
html[data-theme="dark"]
.mv-blog-card,
html[data-theme="dark"]
.mv-testimonial {
    box-shadow:
        0 15px 40px
        rgba(0,0,0,.19);
}


/* ============================================================
   RESPONSIVE LARGE
   ============================================================ */

@media (max-width: 1200px) {

    .mv-hero__container {
        grid-template-columns:
            1fr .45fr;

        gap: 35px;
    }


    .home-search__fields {
        grid-template-columns:
            1fr 35px 1fr 1fr;
    }


    .home-search__fields
    .home-search__field:nth-of-type(4),
    .home-search__fields
    .home-search__field:nth-of-type(5) {
        grid-column:
            span 1;
    }


    .home-search__submit {
        grid-column:
            span 2;
    }


    .home-search__fields--hotel {
        grid-template-columns:
            repeat(4, 1fr);
    }


    .home-search__fields--hotel
    .home-search__submit {
        grid-column:
            1 / -1;
    }


    .mv-destination-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .mv-services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 900px) {

    .mv-section {
        padding:
            80px 0;
    }


    .mv-hero {
        min-height:
            auto;
    }


    .mv-hero__container {
        min-height:
            auto;

        grid-template-columns:
            1fr;

        padding-top:
            90px;

        padding-bottom:
            100px;
    }


    .mv-hero__title {
        font-size:
            clamp(3.6rem, 12vw, 6rem);
    }


    .mv-hero__art {
        display: none;
    }


    .mv-hero__visual {
        background:
            linear-gradient(
                100deg,
                rgba(6,31,56,.96),
                rgba(6,31,56,.75)
            ),
            url("../images/hero/hero.jpeg")
            center / cover
            no-repeat;
    }


    .mv-hero__trust {
        flex-wrap: wrap;
    }


    .mv-hero__scroll {
        display: none;
    }


    .mv-section-heading {
        align-items:
            flex-start;

        flex-direction:
            column;

        gap: 20px;
    }


    .home-search__tabs {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .home-search__fields,
    .home-search__fields--hotel,
    .home-search__fields--simple {
        grid-template-columns:
            1fr 1fr;
    }


    .home-search__swap {
        display: none;
    }


    .home-search__submit {
        grid-column:
            1 / -1;
    }


    .home-search__visa {
        align-items:
            flex-start;

        flex-direction:
            column;
    }


    .mv-destination-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .mv-destination-card:nth-child(2n) {
        margin-top: 0;
    }


    .mv-trip-grid,
    .mv-offer-grid,
    .mv-blog-grid,
    .mv-testimonial-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .mv-story__container {
        grid-template-columns:
            1fr;

        gap: 50px;
    }


    .mv-story__mark {
        min-height:
            320px;
    }


    .mv-final-cta__card {
        align-items:
            flex-start;

        flex-direction:
            column;
    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 640px) {

    .mv-section {
        padding:
            65px 0;
    }


    .mv-hero__container {
        padding-top:
            75px;

        padding-bottom:
            75px;
    }


    .mv-hero__title {
        font-size:
            clamp(3.25rem, 17vw, 4.8rem);
    }


    .mv-hero__lead {
        margin-top:
            22px;

        line-height:
            1.75;
    }


    .mv-hero__actions {
        flex-direction:
            column;
    }


    .mv-hero__actions
    .mv-btn {
        width: 100%;
    }


    .mv-hero__trust {
        gap: 14px;

        margin-top:
            35px;
    }


    .mv-hero__trust-line {
        display: none;
    }


    .mv-hero__trust-item {
        width:
            calc(50% - 8px);
    }


    .mv-search-zone {
        padding:
            50px 0 70px;
    }


    .home-search {
        border-radius:
            22px;
    }


    .home-search__tabs {
        padding: 6px;

        gap: 4px;
    }


    .home-search__tab {
        min-height:
            52px;

        padding:
            0 8px;

        font-size:
            .72rem;
    }


    .home-search__tab-icon {
        display: none;
    }


    .home-search__panel {
        padding:
            15px;
    }


    .home-search__fields,
    .home-search__fields--hotel,
    .home-search__fields--simple {
        grid-template-columns:
            1fr;
    }


    .home-search__submit {
        grid-column:
            auto;
    }


    .home-search__field {
        min-height:
            62px;
    }


    .mv-destination-grid {
        grid-template-columns:
            1fr;
    }


    .mv-destination-card {
        aspect-ratio:
            1 / .95;
    }


    .mv-services-grid,
    .mv-trip-grid,
    .mv-offer-grid,
    .mv-blog-grid,
    .mv-testimonial-grid {
        grid-template-columns:
            1fr;
    }


    .mv-service-card {
        min-height:
            280px;

        padding:
            25px;
    }


    .mv-story {
        padding:
            80px 0;
    }


    .mv-story__mark {
        min-height:
            260px;
    }


    .mv-story__mark-circle {
        width: 160px;
        height: 160px;
    }


    .mv-story__mark-circle img {
        width: 135px;
        height: 135px;
    }


    .mv-story__orbit {
        width: 230px;
        height: 230px;
    }


    .mv-testimonial-empty {
        align-items:
            flex-start;

        flex-direction:
            column;
    }


    .mv-final-cta {
        padding:
            35px 0 80px;
    }


    .mv-final-cta__card {
        border-radius:
            24px;

        padding:
            35px 25px;
    }


    .mv-final-cta
    .mv-btn {
        width: 100%;
    }

}


/* ============================================================
   REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .mv-hero__sun,
    .mv-story__orbit {
        animation: none;
    }


    .mv-reveal {
        opacity: 1;

        transform: none;
    }


    .mv-destination-card,
    .mv-trip-card,
    .mv-service-card,
    .mv-offer-card,
    .mv-blog-card {
        transition: none;
    }

}