.v-hero {
    background:
        radial-gradient(1200px 540px at 8% 6%, rgba(212, 170, 82, 0.2), transparent 58%),
        radial-gradient(980px 460px at 92% 10%, rgba(79, 137, 184, 0.2), transparent 60%),
        linear-gradient(130deg, rgba(104, 120, 140, 0.26), rgba(151, 167, 189, 0.68)),
        url("../../img/content/hero-turkey.jpg") center / cover no-repeat;
    color: var(--v-color-white);
    padding-block: var(--v-space-8);
    box-shadow: inset 0 -120px 140px rgba(31, 39, 49, 0.14);
}

.v-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: var(--v-space-6);
    align-items: center;
}

.v-hero__content h1 {
    font-size: clamp(44px, 7vw, 72px);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
}

.v-hero__content p {
    max-width: 560px;
    font-size: 20px;
    line-height: 1.7;
    opacity: 0.96;
}

.v-hero__actions {
    margin-top: var(--v-space-4);
    display: flex;
    flex-wrap: wrap;
    gap: var(--v-space-2);
}

.v-hero__kicker {
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.9;
}

.v-hero__logo-card {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid var(--v-color-line-soft);
    border-radius: var(--v-radius-lg);
    padding: var(--v-space-4);
    display: grid;
    gap: 14px;
    box-shadow: var(--v-shadow-soft);
}

.v-hero__logo-frame {
    padding: 120px 20px;
    border-radius: var(--v-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.22);
    display: grid;
    place-items: center;
}

.v-hero__logo-frame img {
    width: 60%;
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.v-hero__logo-card p {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.v-home-search {
    margin-top: calc(var(--v-space-6) * -1);
    position: relative;
    z-index: 2;
}

.v-destination-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    background: var(--v-color-surface);
}

.v-destination-card::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(134, 149, 167, 0.22), transparent 70%);
}

.v-hotel-grid .v-card__meta,
.v-offer-grid .v-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.v-section--offers {
    background:
        linear-gradient(180deg, rgba(212, 170, 82, 0.08), transparent 40%),
        linear-gradient(180deg, rgba(79, 137, 184, 0.06), transparent 70%);
}

.v-about-block {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: var(--v-space-4);
    align-items: stretch;
}

.v-about-block__photo {
    min-height: 320px;
    border-radius: var(--v-radius-md);
    border: 1px solid var(--v-color-line);
    background:
        linear-gradient(0deg, rgba(134, 149, 167, 0.45), rgba(134, 149, 167, 0.45)),
        url("../../img/content/hotel-1.jpg") center/cover no-repeat;
}

.v-feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--v-space-3);
}

.v-feature-list li {
    background: var(--v-color-surface);
    border: 1px solid var(--v-color-line);
    border-radius: var(--v-radius-md);
    padding: var(--v-space-3);
}

.v-feature-list strong {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.v-feature-list p {
    color: var(--v-color-muted);
    font-size: 14px;
}

.v-review {
    background: var(--v-color-surface);
    border: 1px solid var(--v-color-line);
    border-radius: var(--v-radius-md);
    padding: var(--v-space-4);
    display: grid;
    gap: 12px;
}

.v-review p {
    color: var(--v-color-muted);
}

.v-review cite {
    font-style: normal;
    font-weight: 600;
}

.v-cta {
    background:
        linear-gradient(130deg, rgba(134, 149, 167, 0.96), rgba(116, 131, 150, 0.96));
    color: var(--v-color-white);
    border-radius: var(--v-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: var(--v-space-6);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--v-space-4);
    align-items: center;
}

.v-cta h2 {
    font-size: clamp(30px, 4vw, 44px);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.v-cta p {
    max-width: 620px;
    opacity: 0.95;
}

@media (max-width: 1100px) {
    .v-hero__inner {
        grid-template-columns: 1fr;
    }

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

    .v-about-block {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .v-home-search {
        margin-top: calc(var(--v-space-4) * -1);
    }

    .v-hero__content p {
        font-size: 17px;
    }

    .v-feature-list {
        grid-template-columns: 1fr;
    }

    .v-cta {
        grid-template-columns: 1fr;
        padding: var(--v-space-4);
    }
}
