/* ============================================================
   MEGARA VOYAGES — HOTELS
============================================================ */

:root {
    --ht-blue: #07539B;
    --ht-blue-light: #0C6FBE;
    --ht-night: #061F38;
    --ht-night-2: #0A3457;

    --ht-gold: #F4B94F;
    --ht-gold-deep: #C68B25;
    --ht-gold-soft: #FFD98A;

    --ht-ivory: #F7F1E7;
    --ht-whatsapp: #18A85B;

    --ht-shadow:
        0 24px 65px
        rgba(6,31,56,.12);

    --ht-shadow-large:
        0 35px 90px
        rgba(6,31,56,.18);

    --ht-ease:
        cubic-bezier(.22,.61,.36,1);
}


/* ============================================================
   SHARED
============================================================ */

.hotel-kicker {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color:
        var(--ht-gold-deep);

    font-size: .7rem;

    font-weight: 800;

    letter-spacing: .15em;

    text-transform: uppercase;
}


.hotel-kicker::before {
    content: '';

    width: 28px;
    height: 1px;

    background:
        currentColor;
}


.hotel-kicker--light {
    color:
        var(--ht-gold);
}


.hotel-btn {
    min-height: 54px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    padding:
        0 25px;

    border-radius:
        999px;

    font-size: .84rem;

    font-weight: 800;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


.hotel-btn:hover {
    transform:
        translateY(-3px);
}


.hotel-btn span {
    transition:
        transform .25s ease;
}


.hotel-btn:hover span {
    transform:
        translateX(4px);
}


.hotel-btn--gold {
    color:
        #382600;

    background:
        var(--ht-gold);

    box-shadow:
        0 15px 35px
        rgba(244,185,79,.3);
}


.hotel-btn--blue {
    color: #fff;

    background:
        var(--ht-blue);

    box-shadow:
        0 13px 30px
        rgba(7,83,155,.2);
}


.hotel-btn--blue:hover {
    color: #fff;

    background:
        #06477F;
}


.hotel-btn--glass {
    color: #fff;

    border:
        1px solid
        rgba(255,255,255,.18);

    background:
        rgba(255,255,255,.07);

    backdrop-filter:
        blur(10px);
}


.hotel-btn--glass:hover {
    color: #fff;

    background:
        rgba(255,255,255,.13);
}


.hotel-btn--whatsapp {
    color: #fff;

    background:
        var(--ht-whatsapp);

    box-shadow:
        0 15px 35px
        rgba(24,168,91,.28);
}


/* ============================================================
   HERO
============================================================ */

.hotel-hero {
    position: relative;

    min-height: 730px;

    display: flex;

    align-items: center;

    overflow: hidden;

    isolation: isolate;

    background:
        var(--ht-night);
}


.hotel-hero__background {
    position: absolute;

    inset: 0;

    z-index: -5;

    background:
        linear-gradient(
            100deg,
            rgba(6,31,56,.98) 0%,
            rgba(6,31,56,.91) 44%,
            rgba(6,31,56,.57) 76%,
            rgba(6,31,56,.8) 100%
        ),
        radial-gradient(
            circle at 78% 43%,
            rgba(244,185,79,.22),
            transparent 28%
        );
}


.hotel-hero__overlay {
    position: absolute;

    inset: 0;

    z-index: -4;

    background:
        linear-gradient(
            to bottom,
            transparent 50%,
            rgba(6,31,56,.38)
        );
}


.hotel-hero__glow {
    position: absolute;

    z-index: -3;

    width: 550px;
    height: 550px;

    right: 5%;
    top: 50%;

    transform:
        translateY(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(244,185,79,.15),
            transparent 68%
        );
}


.hotel-hero__line {
    position: absolute;

    z-index: -2;

    border:
        1px solid
        rgba(244,185,79,.12);

    border-radius: 50%;
}


.hotel-hero__line--one {
    width: 650px;
    height: 650px;

    right: -180px;
    top: -310px;
}


.hotel-hero__line--two {
    width: 360px;
    height: 360px;

    right: 15%;
    bottom: -220px;
}


.hotel-hero__inner {
    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0,1.05fr)
        minmax(400px,.75fr);

    align-items: center;

    gap: 80px;

    padding-top: 80px;
    padding-bottom: 80px;
}


.hotel-hero__content {
    max-width: 770px;
}


.hotel-eyebrow {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 25px;

    color:
        var(--ht-gold);

    font-size: .72rem;

    font-weight: 800;

    letter-spacing: .15em;

    text-transform: uppercase;
}


.hotel-eyebrow span {
    width: 35px;
    height: 1px;

    background:
        var(--ht-gold);
}


.hotel-hero h1 {
    color:
        var(--ht-ivory);

    font-family:
        var(--font-title);

    font-size:
        clamp(4.1rem,6.5vw,7rem);

    line-height: .9;

    letter-spacing: -.045em;

    font-weight: 400;
}


.hotel-hero h1 em {
    display: block;

    margin-top: 10px;

    color:
        var(--ht-gold);

    font-weight: 400;
}


.hotel-hero__content > p {
    max-width: 660px;

    margin-top: 28px;

    color:
        rgba(247,241,231,.7);

    line-height: 1.9;

    font-size: .96rem;
}


.hotel-hero__actions {
    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 35px;
}


.hotel-hero__trust {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

    margin-top: 48px;
}


.hotel-hero__trust strong {
    display: block;

    color:
        rgba(255,255,255,.85);

    font-size: .7rem;
}


.hotel-hero__trust span {
    display: block;

    margin-top: 3px;

    color:
        rgba(255,255,255,.4);

    font-size: .6rem;
}


.hotel-hero__trust-line {
    width: 1px;
    height: 33px;

    background:
        rgba(255,255,255,.13);
}


/* ============================================================
   HERO VISUAL
============================================================ */

.hotel-hero__visual {
    position: relative;

    min-height: 510px;
}


.hotel-hero__window {
    position: absolute;

    width: 340px;
    height: 440px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%,-50%);

    overflow: hidden;

    border:
        8px solid
        rgba(255,255,255,.11);

    border-radius:
        170px 170px 25px 25px;

    background:
        #F6D58B;

    box-shadow:
        0 30px 80px
        rgba(0,0,0,.23);
}


.hotel-hero__window-sky {
    position: absolute;

    inset: 0 0 43%;

    background:
        linear-gradient(
            #92CDEB,
            #F8D68A
        );
}


.hotel-hero__window-sun {
    position: absolute;

    width: 100px;
    height: 100px;

    right: 42px;
    top: 95px;

    border-radius: 50%;

    background:
        var(--ht-gold);

    box-shadow:
        0 0 60px
        rgba(244,185,79,.55);
}


.hotel-hero__window-sea {
    position: absolute;

    inset: 57% 0 0;

    background:
        linear-gradient(
            #2585B4,
            #07539B
        );
}


.hotel-hero__window-land {
    position: absolute;

    width: 420px;
    height: 160px;

    left: -100px;
    bottom: -70px;

    border-radius: 50%;

    transform:
        rotate(8deg);

    background:
        #C99742;
}


.hotel-hero__card {
    position: absolute;

    width: 275px;

    right: -5px;
    bottom: 8px;

    padding: 22px;

    border:
        1px solid
        rgba(255,255,255,.16);

    border-radius: 18px;

    color: #fff;

    background:
        rgba(6,31,56,.65);

    backdrop-filter:
        blur(14px);

    box-shadow:
        0 22px 50px
        rgba(0,0,0,.2);

    transform:
        rotate(-3deg);
}


.hotel-hero__card-kicker {
    display: block;

    margin-bottom: 8px;

    color:
        var(--ht-gold);

    font-size: .57rem;

    font-weight: 800;

    letter-spacing: .12em;

    text-transform: uppercase;
}


.hotel-hero__card strong {
    display: block;

    font-family:
        var(--font-title);

    font-size: 1.45rem;

    line-height: 1.25;

    font-weight: 400;
}


.hotel-hero__card-line {
    height: 1px;

    margin:
        18px 0 13px;

    background:
        rgba(255,255,255,.13);
}


.hotel-hero__card-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    color:
        rgba(255,255,255,.55);

    font-size: .58rem;
}


.hotel-hero__card-row b {
    color:
        var(--ht-gold);
}


.hotel-hero__mini {
    position: absolute;

    display: flex;

    align-items: center;

    gap: 9px;

    padding:
        10px 14px;

    border:
        1px solid
        rgba(255,255,255,.16);

    border-radius: 999px;

    color:
        rgba(255,255,255,.78);

    background:
        rgba(6,31,56,.45);

    backdrop-filter:
        blur(12px);

    font-size: .65rem;
}


.hotel-hero__mini span {
    color:
        var(--ht-gold);
}


.hotel-hero__mini--one {
    left: -10px;
    top: 18%;
}


.hotel-hero__mini--two {
    right: 0;
    top: 24%;
}


/* ============================================================
   HEADING
============================================================ */

.hotel-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 60px;

    margin-bottom: 45px;
}


.hotel-heading > div {
    max-width: 760px;
}


.hotel-heading h2,
.hotel-experience h2,
.hotel-final h2 {
    margin-top: 12px;

    color:
        var(--heading);

    font-family:
        var(--font-title);

    font-size:
        clamp(2.5rem,4vw,4.4rem);

    font-weight: 400;

    line-height: 1.03;

    letter-spacing: -.035em;
}


.hotel-heading h2 em,
.hotel-experience h2 em,
.hotel-final h2 em {
    color:
        var(--ht-gold);

    font-weight: 400;
}


.hotel-heading > p {
    max-width: 440px;

    color:
        var(--text-soft);

    font-size: .86rem;

    line-height: 1.8;
}


/* ============================================================
   REQUEST
============================================================ */

.hotel-request {
    position: relative;

    padding:
        110px 0 120px;

    background:
        var(--bg);
}


.hotel-alert {
    max-width: 1120px;

    display: flex;

    align-items: center;

    gap: 14px;

    margin:
        0 auto 25px;

    padding:
        14px 17px;

    border:
        1px solid
        #ffcaca;

    border-radius: 12px;

    color:
        #9B2828;

    background:
        #FFF0F0;
}


.hotel-alert > span {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color: #fff;

    background:
        #D94C4C;

    font-weight: 800;
}


.hotel-alert strong {
    display: block;

    font-size: .77rem;
}


.hotel-alert p {
    margin-top: 2px;

    font-size: .73rem;
}


/* ============================================================
   FORM CARD
============================================================ */

.hotel-form-card {
    max-width: 1160px;

    margin: 0 auto;

    overflow: hidden;

    border:
        1px solid
        var(--border);

    border-radius: 28px;

    background:
        var(--surface);

    box-shadow:
        var(--ht-shadow-large);
}


.hotel-form-card__top {
    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding:
        12px 25px;

    border-bottom:
        1px solid
        var(--border);

    background:
        var(--bg-alt);
}


.hotel-form-card__top > div {
    display: flex;

    align-items: center;

    gap: 11px;
}


.hotel-form-card__icon {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border-radius: 12px;

    color:
        var(--ht-blue);

    background:
        rgba(7,83,155,.08);
}


.hotel-form-card__top strong {
    display: block;

    color:
        var(--heading);

    font-size: .78rem;
}


.hotel-form-card__top small {
    display: block;

    margin-top: 2px;

    color:
        var(--text-soft);

    font-size: .6rem;
}


.hotel-form-card__badge {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding:
        8px 12px;

    border-radius: 999px;

    color:
        var(--text-soft);

    background:
        var(--surface);

    border:
        1px solid
        var(--border);

    font-size: .62rem;
}


/* ============================================================
   FORM SECTION
============================================================ */

.hotel-form-section {
    padding:
        35px;

    border-bottom:
        1px solid
        var(--border);
}


.hotel-form-section__head {
    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 26px;
}


.hotel-form-section__head > span {
    width: 35px;
    height: 35px;

    flex: 0 0 35px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color:
        var(--ht-gold-deep);

    background:
        rgba(244,185,79,.12);

    font-family:
        var(--font-title);

    font-size: .8rem;
}


.hotel-form-section__head h3 {
    color:
        var(--heading);

    font-size: 1.25rem;
}


.hotel-form-section__head p {
    margin-top: 3px;

    color:
        var(--text-soft);

    font-size: .73rem;
}


/* ============================================================
   FORM GRIDS
============================================================ */

.hotel-form-grid {
    display: grid;

    gap: 15px;
}


.hotel-form-grid--destination {
    grid-template-columns:
        1fr 1fr;
}


.hotel-form-grid--stay {
    grid-template-columns:
        1fr 1fr .75fr;
}


.hotel-form-grid--guests {
    grid-template-columns:
        .75fr .75fr 1.2fr;
}


.hotel-form-grid--contact {
    grid-template-columns:
        repeat(2,1fr);
}


/* ============================================================
   INPUT
============================================================ */

.hotel-field > label {
    display: block;

    margin-bottom: 7px;

    color:
        var(--text);

    font-size: .69rem;

    font-weight: 800;
}


.hotel-input {
    min-height: 63px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        10px 14px;

    border:
        1px solid
        var(--border);

    border-radius: 14px;

    background:
        var(--bg);

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}


.hotel-input:focus-within {
    border-color:
        var(--ht-gold);

    box-shadow:
        0 0 0 4px
        rgba(244,185,79,.11);

    transform:
        translateY(-1px);
}


.hotel-input > span {
    width: 30px;
    height: 30px;

    flex: 0 0 30px;

    display: grid;

    place-items: center;

    border-radius: 8px;

    color:
        var(--ht-blue);

    background:
        rgba(7,83,155,.07);

    font-size: .78rem;
}


.hotel-input > div {
    width: 100%;

    min-width: 0;
}


.hotel-input small {
    display: block;

    margin-bottom: 2px;

    color:
        var(--text-soft);

    font-size: .55rem;

    letter-spacing: .06em;

    text-transform: uppercase;
}


.hotel-input input {
    width: 100%;

    min-width: 0;

    padding: 0;

    border: 0;

    outline: none;

    color:
        var(--text);

    background:
        transparent;

    font-family:
        var(--font-body);

    font-size: .83rem;

    font-weight: 700;
}


.hotel-input input::placeholder {
    color:
        var(--text-soft);

    opacity: .6;
}


/* ============================================================
   COUNTER
============================================================ */

.hotel-counter {
    min-height: 63px;

    display: grid;

    grid-template-columns:
        44px 1fr 44px;

    align-items: center;

    overflow: hidden;

    border:
        1px solid
        var(--border);

    border-radius: 14px;

    background:
        var(--bg);
}


.hotel-counter button {
    height: 100%;

    color:
        var(--ht-blue);

    font-size: 1.1rem;

    font-weight: 700;

    transition:
        background .2s ease,
        color .2s ease;
}


.hotel-counter button:hover {
    color: #fff;

    background:
        var(--ht-blue);
}


.hotel-counter input {
    width: 100%;

    text-align: center;

    color:
        var(--text);

    font-weight: 800;
}


.hotel-counter input::-webkit-outer-spin-button,
.hotel-counter input::-webkit-inner-spin-button {
    -webkit-appearance: none;

    margin: 0;
}


/* ============================================================
   SUBMIT
============================================================ */

.hotel-form-submit {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding:
        28px 35px;

    background:
        var(--bg-alt);
}


.hotel-form-submit__text {
    max-width: 630px;

    display: flex;

    align-items: flex-start;

    gap: 10px;
}


.hotel-form-submit__text > span {
    width: 25px;
    height: 25px;

    flex: 0 0 25px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    color:
        var(--ht-blue);

    background:
        rgba(7,83,155,.08);

    font-family:
        var(--font-title);
}


.hotel-form-submit__text p {
    color:
        var(--text-soft);

    font-size: .68rem;

    line-height: 1.6;
}


.hotel-submit {
    min-width: 235px;

    min-height: 61px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding:
        9px 17px;

    border-radius: 15px;

    color: #fff;

    background:
        var(--ht-whatsapp);

    box-shadow:
        0 14px 35px
        rgba(24,168,91,.25);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.hotel-submit:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 18px 40px
        rgba(24,168,91,.35);
}


.hotel-submit__icon {
    width: 39px;
    height: 39px;

    flex: 0 0 39px;

    display: grid;

    place-items: center;

    border-radius: 11px;

    background:
        rgba(255,255,255,.15);
}


.hotel-submit > span:nth-child(2) {
    text-align: left;
}


.hotel-submit small {
    display: block;

    color:
        rgba(255,255,255,.68);

    font-size: .56rem;
}


.hotel-submit strong {
    display: block;

    margin-top: 1px;

    color: #fff;

    font-size: .88rem;
}


.hotel-submit i {
    margin-left: auto;

    font-style: normal;

    transition:
        transform .2s ease;
}


.hotel-submit:hover i {
    transform:
        translateX(4px);
}


.hotel-submit.is-loading {
    opacity: .75;

    pointer-events: none;
}


/* ============================================================
   CATALOG
============================================================ */

.hotel-catalog {
    position: relative;

    padding:
        110px 0;

    background:
        var(--bg-alt);
}


.hotel-filter {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-bottom: 35px;

    padding:
        12px;

    border:
        1px solid
        var(--border);

    border-radius: 16px;

    background:
        var(--surface);

    box-shadow:
        0 10px 30px
        rgba(6,31,56,.05);
}


.hotel-filter__search {
    flex: 1;

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        0 10px;
}


.hotel-filter__search > span {
    color:
        var(--ht-gold-deep);
}


.hotel-filter__search input {
    width: 100%;

    min-height: 42px;

    color:
        var(--text);

    font-size: .8rem;
}


.hotel-filter__search input::placeholder {
    color:
        var(--text-soft);
}


.hotel-filter__count {
    min-width: 100px;

    padding:
        9px 14px;

    text-align: center;

    border-left:
        1px solid
        var(--border);
}


.hotel-filter__count strong {
    color:
        var(--ht-blue);

    font-size: 1rem;
}


.hotel-filter__count span {
    margin-left: 4px;

    color:
        var(--text-soft);

    font-size: .65rem;
}


/* ============================================================
   HOTEL GRID
============================================================ */

.hotel-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 25px;
}


.hotel-card {
    overflow: hidden;

    border:
        1px solid
        var(--border);

    border-radius: 24px;

    background:
        var(--surface);

    box-shadow:
        0 14px 38px
        rgba(6,31,56,.07);

    transition:
        transform .3s var(--ht-ease),
        box-shadow .3s ease;
}


.hotel-card:hover {
    transform:
        translateY(-7px);

    box-shadow:
        var(--ht-shadow);
}


.hotel-card[hidden] {
    display: none;
}


/* MEDIA */

.hotel-card__media {
    position: relative;

    display: block;

    aspect-ratio: 1 / 1;

    overflow: hidden;

    background:
        var(--ht-night);
}


.hotel-card__media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .65s
        var(--ht-ease);
}


.hotel-card:hover
.hotel-card__media img {
    transform:
        scale(1.065);
}


.hotel-card__shade {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(6,31,56,.45),
            transparent 50%
        );
}


.hotel-card__category {
    position: absolute;

    left: 17px;
    top: 17px;

    z-index: 2;

    padding:
        8px 12px;

    border-radius: 999px;

    color:
        #342300;

    background:
        rgba(244,185,79,.94);

    font-size: .62rem;

    font-weight: 800;

    backdrop-filter:
        blur(8px);
}


.hotel-card__open {
    position: absolute;

    z-index: 2;

    right: 17px;
    bottom: 17px;

    width: 43px;
    height: 43px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(255,255,255,.25);

    border-radius: 50%;

    color: #fff;

    background:
        rgba(6,31,56,.48);

    backdrop-filter:
        blur(10px);

    transition:
        transform .25s ease,
        background .25s ease;
}


.hotel-card:hover
.hotel-card__open {
    transform:
        rotate(12deg);

    background:
        var(--ht-blue);
}


.hotel-card__placeholder {
    width: 100%;
    height: 100%;

    display: grid;

    place-items: center;

    color:
        var(--ht-gold);

    background:
        linear-gradient(
            135deg,
            #0A416B,
            var(--ht-night)
        );
}


.hotel-card__placeholder span {
    font-size: 4rem;
}


/* BODY */

.hotel-card__body {
    padding:
        23px;
}


.hotel-card__location {
    display: flex;

    align-items: center;

    gap: 7px;

    margin-bottom: 8px;

    color:
        var(--ht-gold-deep);

    font-size: .65rem;

    font-weight: 800;

    letter-spacing: .05em;

    text-transform: uppercase;
}


.hotel-card__location > span:first-child {
    font-size: .75rem;
}


.hotel-card h3 {
    font-size:
        clamp(1.3rem,1.8vw,1.65rem);

    line-height: 1.25;
}


.hotel-card__body > p {
    min-height: 45px;

    margin-top: 11px;

    color:
        var(--text-soft);

    font-size: .77rem;

    line-height: 1.65;
}


.hotel-card__bottom {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 15px;

    margin-top: 23px;

    padding-top: 19px;

    border-top:
        1px solid
        var(--border);
}


.hotel-card__price small {
    display: block;

    color:
        var(--text-soft);

    font-size: .58rem;

    text-transform: uppercase;
}


.hotel-card__price strong {
    display: block;

    margin-top: 2px;

    color:
        var(--ht-gold-deep);

    font-size: .92rem;
}


.hotel-card__button {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding:
        10px 14px;

    border-radius: 999px;

    color:
        var(--ht-blue);

    background:
        rgba(7,83,155,.07);

    font-size: .68rem;

    font-weight: 800;

    transition:
        color .2s ease,
        background .2s ease;
}


.hotel-card__button:hover {
    color: #fff;

    background:
        var(--ht-blue);
}


/* ============================================================
   EMPTY
============================================================ */

.hotel-empty,
.hotel-filter-empty {
    max-width: 900px;

    margin: 0 auto;

    padding:
        60px 30px;

    text-align: center;

    border:
        1px dashed
        var(--border);

    border-radius: 25px;

    background:
        var(--surface);
}


.hotel-empty__icon {
    width: 70px;
    height: 70px;

    display: grid;

    place-items: center;

    margin:
        0 auto 20px;

    border-radius: 50%;

    color:
        var(--ht-blue);

    background:
        rgba(7,83,155,.08);

    font-size: 1.6rem;
}


.hotel-empty h3,
.hotel-filter-empty h3 {
    max-width: 600px;

    margin:
        12px auto 0;

    color:
        var(--heading);

    font-family:
        var(--font-title);

    font-size: 1.65rem;
}


.hotel-empty p,
.hotel-filter-empty p {
    max-width: 620px;

    margin:
        12px auto 22px;

    color:
        var(--text-soft);

    font-size: .82rem;

    line-height: 1.7;
}


.hotel-filter-empty > span {
    display: block;

    margin-bottom: 12px;

    color:
        var(--ht-gold);

    font-size: 2rem;
}


.hotel-filter-empty a {
    color:
        var(--ht-blue);

    font-weight: 800;

    font-size: .75rem;
}


/* ============================================================
   EXPERIENCE
============================================================ */

.hotel-experience {
    position: relative;

    padding:
        115px 0;

    overflow: hidden;

    background:
        var(--ht-night);
}


.hotel-experience::before {
    content: '';

    position: absolute;

    width: 600px;
    height: 600px;

    right: -300px;
    top: -300px;

    border:
        1px solid
        rgba(244,185,79,.12);

    border-radius: 50%;
}


.hotel-experience__grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr .75fr;

    align-items: center;

    gap: 90px;
}


.hotel-experience h2 {
    color:
        var(--ht-ivory);
}


.hotel-experience__content > p {
    max-width: 650px;

    margin:
        24px 0 31px;

    color:
        rgba(247,241,231,.67);

    line-height: 1.9;
}


.hotel-experience__list {
    display: grid;

    gap: 12px;
}


.hotel-experience__item {
    display: grid;

    grid-template-columns:
        48px 1fr;

    gap: 15px;

    padding:
        20px;

    border:
        1px solid
        rgba(255,255,255,.11);

    border-radius: 17px;

    background:
        rgba(255,255,255,.045);
}


.hotel-experience__item > span {
    color:
        var(--ht-gold);

    font-family:
        var(--font-title);
}


.hotel-experience__item strong {
    color:
        var(--ht-ivory);

    font-size: .8rem;
}


.hotel-experience__item p {
    margin-top: 4px;

    color:
        rgba(255,255,255,.48);

    font-size: .69rem;
}


/* ============================================================
   FINAL
============================================================ */

.hotel-final {
    padding:
        65px 0 110px;

    background:
        var(--bg);
}


.hotel-final__card {
    min-height: 290px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding:
        clamp(35px,5vw,65px);

    overflow: hidden;

    border-radius: 30px;

    background:
        linear-gradient(
            120deg,
            #0A416D,
            var(--ht-night)
        );

    box-shadow:
        var(--ht-shadow);
}


.hotel-final__card > div {
    max-width: 740px;
}


.hotel-final h2 {
    color:
        var(--ht-ivory);
}


.hotel-final p {
    margin-top: 14px;

    color:
        rgba(247,241,231,.65);
}


/* ============================================================
   DARK
============================================================ */

html[data-theme="dark"]
.hotel-request,
html[data-theme="dark"]
.hotel-final {
    background:
        var(--bg);
}


html[data-theme="dark"]
.hotel-catalog {
    background:
        #071E36;
}


/* ============================================================
   RESPONSIVE 1100
============================================================ */

@media (max-width: 1100px) {

    .hotel-hero__inner {
        grid-template-columns:
            1fr .65fr;

        gap: 40px;
    }


    .hotel-hero__window {
        width: 290px;
        height: 390px;
    }


    .hotel-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

}


/* ============================================================
   RESPONSIVE TABLET
============================================================ */

@media (max-width: 900px) {

    .hotel-hero {
        min-height: auto;
    }


    .hotel-hero__inner {
        grid-template-columns:
            1fr;

        padding-top: 90px;
        padding-bottom: 100px;
    }


    .hotel-hero__visual {
        display: none;
    }


    .hotel-heading {
        flex-direction: column;

        align-items: flex-start;

        gap: 20px;
    }


    .hotel-form-grid--destination,
    .hotel-form-grid--contact {
        grid-template-columns:
            1fr;
    }


    .hotel-form-grid--stay,
    .hotel-form-grid--guests {
        grid-template-columns:
            1fr 1fr;
    }


    .hotel-form-grid--stay
    .hotel-field:last-child,
    .hotel-form-grid--guests
    .hotel-field:last-child {
        grid-column:
            1 / -1;
    }


    .hotel-experience__grid {
        grid-template-columns:
            1fr;

        gap: 50px;
    }


    .hotel-final__card {
        flex-direction: column;

        align-items: flex-start;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 640px) {

    .hotel-hero__inner {
        padding-top: 70px;
        padding-bottom: 80px;
    }


    .hotel-hero h1 {
        font-size:
            clamp(3.4rem,16vw,5rem);
    }


    .hotel-hero__actions {
        flex-direction: column;
    }


    .hotel-hero__actions
    .hotel-btn {
        width: 100%;
    }


    .hotel-hero__trust-line {
        display: none;
    }


    .hotel-request,
    .hotel-catalog {
        padding:
            75px 0;
    }


    .hotel-form-card {
        border-radius: 20px;
    }


    .hotel-form-card__top {
        align-items: flex-start;

        flex-direction: column;

        padding: 16px;
    }


    .hotel-form-section {
        padding:
            27px 18px;
    }


    .hotel-form-grid--stay,
    .hotel-form-grid--guests {
        grid-template-columns:
            1fr;
    }


    .hotel-form-grid--stay
    .hotel-field:last-child,
    .hotel-form-grid--guests
    .hotel-field:last-child {
        grid-column: auto;
    }


    .hotel-form-submit {
        flex-direction: column;

        align-items: stretch;

        padding:
            24px 18px;
    }


    .hotel-submit {
        width: 100%;
    }


    .hotel-filter {
        align-items: stretch;

        flex-direction: column;
    }


    .hotel-filter__count {
        border-left: 0;

        border-top:
            1px solid
            var(--border);
    }


    .hotel-grid {
        grid-template-columns:
            1fr;
    }


    .hotel-experience {
        padding:
            80px 0;
    }


    .hotel-final {
        padding:
            40px 0 80px;
    }


    .hotel-final__card {
        padding:
            32px 23px;

        border-radius: 23px;
    }


    .hotel-final
    .hotel-btn {
        width: 100%;
    }

}


@media (prefers-reduced-motion: reduce) {

    .hotel-btn,
    .hotel-card,
    .hotel-card__media img,
    .hotel-input,
    .hotel-submit {
        transition: none;
    }

}