

    /* ---- BUTTONS ---- */
    .btn {
        font-family: 'Unbounded', sans-serif;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        border-radius: var(--r-pill);
        text-decoration: none;
        border: none;
        cursor: pointer;
        letter-spacing: .04em;
        transition: background var(--t), transform var(--t), color var(--t)
    }

    .btn-orange {
        background: var(--orange);
        color: #fff;
        font-size: 11px;
        padding: 10px 22px
    }

    .btn-orange:hover {
        background: var(--orange-2);
        transform: translateY(-1px)
    }

    .btn-sea-lg {
        background: var(--sea);
        color: #fff;
        font-size: 14px;
        padding: 14px 32px;
        box-shadow: 0 8px 28px rgba(26, 107, 138, .25)
    }

    .btn-sea-lg:hover {
        background: var(--sea-light);
        transform: translateY(-2px)
    }

    .btn-ghost {
        background: transparent;
        color: var(--sea);
        border: 1.5px solid var(--sea);
        font-size: 13px;
        padding: 13px 28px
    }

    .btn-ghost:hover {
        background: var(--sea);
        color: #fff
    }

    .btn-white {
        background: #fff;
        color: var(--orange);
        font-size: 12px;
        padding: 8px 20px;
        font-family: 'Unbounded', sans-serif;
        font-weight: 800;
        border-radius: var(--r-pill);
        text-decoration: none;
        transition: background var(--t);
        display: inline-block
    }

    .btn-white:hover {
        background: #fff8f0
    }

    .card-btn {
        font-family: 'Unbounded', sans-serif;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: var(--orange);
        color: #fff;
        font-size: 10px;
        padding: 7px 14px;
        border-radius: var(--r-pill);
        text-decoration: none;
        transition: background var(--t)
    }

    .card-btn:hover {
        background: var(--orange-2)
    }

    /* ---- HERO ---- */
    .hero {
        background: linear-gradient(160deg, var(--sea-pale) 0%, var(--sand) 50%, #fff8f0 100%);
        padding: 56px 0 48px;
        position: relative;
        overflow: hidden
    }

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 600 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 300 Q150 250 300 280 Q450 310 600 260 L600 400 L0 400Z' fill='%231a6b8a' opacity='0.04'/%3E%3Cpath d='M0 350 Q200 300 400 330 Q500 345 600 310 L600 400 L0 400Z' fill='%231a6b8a' opacity='0.03'/%3E%3C/svg%3E");
        background-size: cover;
        background-position: bottom;
        pointer-events: none
    }

    .hero::after {
        content: '';
        position: absolute;
        right: -100px;
        top: -150px;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(26, 107, 138, .1) 0%, transparent 65%);
        pointer-events: none
    }

    .hero__inner {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 1
    }

    .hero__breadcrumb {
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: 'Unbounded', sans-serif;
        font-size: 11px;
        font-weight: 600;
        margin-bottom: 20px
    }

    .hero__breadcrumb a {
        color: var(--orange);
        text-decoration: none
    }

    .hero__breadcrumb a:hover {
        text-decoration: underline
    }

    .hero__breadcrumb span {
        color: var(--sand-3)
    }

    .hero__breadcrumb strong {
        color: var(--ink-3);
        font-weight: 600
    }

    .hero__eyebrow {
        font-family: 'Unbounded', sans-serif;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .18em;
        color: var(--sea);
        margin-bottom: 14px;
        display: block
    }

    .hero__title {
        font-family: 'Unbounded', sans-serif;
        font-size: clamp(1.8rem, 4.5vw, 3.2rem);
        font-weight: 900;
        line-height: 1.08;
        letter-spacing: -1.5px;
        color: var(--ink);
        margin-bottom: 16px
    }

    .hero__title span {
        color: var(--sea)
    }

    .hero__sub {
        color: var(--ink-2);
        font-size: 1rem;
        line-height: 1.7;
        max-width: 520px;
        margin-bottom: 28px
    }

    .hero__actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap
    }

    /* Морской баннер */
    .sea-banner {
        background: var(--sea);
        padding: 12px 0
    }

    .sea-banner__inner {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap
    }

    .sea-banner__text {
        font-family: 'Unbounded', sans-serif;
        font-size: 12px;
        font-weight: 700;
        color: #fff
    }

    .btn-white-sea {
        background: #fff;
        color: var(--sea);
        font-size: 12px;
        padding: 8px 20px;
        font-family: 'Unbounded', sans-serif;
        font-weight: 800;
        border-radius: var(--r-pill);
        text-decoration: none;
        transition: background var(--t);
        display: inline-block
    }

    .btn-white-sea:hover {
        background: var(--sea-pale)
    }

    /* ---- LAYOUT ---- */
    .container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px
    }

    .container--narrow {
        max-width: 720px
    }

    .section {
        padding: 56px 0
    }

    .section--alt {
        background: var(--sand-2);
        border-top: 1px solid var(--sand-3);
        border-bottom: 1px solid var(--sand-3)
    }

    .eyebrow {
        font-family: 'Unbounded', sans-serif;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .18em;
        color: var(--orange);
        margin-bottom: 8px;
        display: block
    }

    .eyebrow--sea {
        color: var(--sea)
    }

    .section-title {
        font-family: 'Unbounded', sans-serif;
        font-size: clamp(1.4rem, 3vw, 2rem);
        font-weight: 900;
        letter-spacing: -.5px;
        color: var(--ink);
        margin-bottom: 8px
    }

    .section-sub {
        font-size: 13px;
        color: var(--ink-3);
        margin-bottom: 28px
    }

    /* ---- ФИЛЬТРЫ ---- */
    .filters {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 24px
    }

    .filter-btn {
        font-family: 'Unbounded', sans-serif;
        font-size: 11px;
        font-weight: 600;
        padding: 8px 18px;
        border-radius: var(--r-pill);
        border: 1px solid var(--sand-3);
        background: #fff;
        color: var(--ink-3);
        cursor: pointer;
        transition: all var(--t)
    }

    .filter-btn:hover {
        border-color: var(--sea);
        color: var(--sea)
    }

    .filter-btn.active {
        background: var(--sea);
        border-color: var(--sea);
        color: #fff
    }

    /* ---- БЕЙДЖИ ТИПА ---- */
    .badge {
        font-family: 'Unbounded', sans-serif;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .04em;
        padding: 3px 10px;
        border-radius: var(--r-pill);
        display: inline-block
    }

    .badge-hotel {
        background: var(--sea-pale);
        color: var(--sea)
    }

    .badge-mini {
        background: rgba(26, 107, 138, .08);
        color: var(--sea-light)
    }

    .badge-guest {
        background: rgba(255, 107, 53, .08);
        color: var(--orange)
    }

    .badge-villa {
        background: rgba(96, 80, 200, .08);
        color: #6050c8
    }

    .badge-apart {
        background: rgba(15, 122, 107, .1);
        color: var(--teal)
    }

    .badge-sanator {
        background: rgba(42, 157, 92, .1);
        color: #1a7a46
    }

    /* ---- КАРТОЧКИ ОТЕЛЕЙ ---- */
    .hotel-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 16px
    }

    .hotel-card {
        background: #fff;
        border: 1px solid var(--sand-3);
        border-radius: var(--r-lg);
        padding: 22px;
        transition: transform var(--t), border-color var(--t), box-shadow var(--t);
        display: flex;
        flex-direction: column
    }

    .hotel-card:hover {
        transform: translateY(-3px);
        border-color: var(--sea-light);
        box-shadow: 0 8px 32px rgba(26, 107, 138, .1)
    }

    .hotel-card__head {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 14px;
        gap: 8px
    }

    .hotel-card__rating {
        display: flex;
        align-items: center;
        gap: 4px
    }

    .hotel-card__stars {
        color: var(--orange-2)
    }

    .hotel-card__score {
        font-family: 'Unbounded', sans-serif;
        font-size: 13px;
        font-weight: 700;
        color: var(--ink)
    }

    .hotel-card__reviews {
        font-size: 12px;
        color: var(--ink-3)
    }

    .hotel-card__name {
        font-family: 'Unbounded', sans-serif;
        font-size: 15px;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 8px;
        line-height: 1.3
    }

    .hotel-card__meta {
        font-size: 12px;
        color: var(--ink-3);
        display: flex;
        align-items: flex-start;
        gap: 5px;
        margin-bottom: 4px
    }

    .hotel-card__amenities {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 10px;
        margin-bottom: auto;
        padding-bottom: 16px
    }

    .amenity {
        font-size: 11px;
        color: var(--ink-3);
        background: var(--sand-2);
        border-radius: var(--r-sm);
        padding: 3px 9px
    }

    .hotel-card__footer {
        margin-top: auto;
        padding-top: 16px;
        border-top: 1px solid var(--sand-2)
    }

    /* ---- FAQ ---- */
    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 10px
    }

    .faq-item {
        background: #fff;
        border: 1px solid var(--sand-3);
        border-radius: var(--r-md);
        padding: 18px 20px;
        transition: border-color var(--t)
    }

    .faq-item[open] {
        border-color: var(--sea-light)
    }

    .faq-item summary {
        list-style: none;
        cursor: pointer;
        font-family: 'Unbounded', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: var(--ink);
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px
    }

    .faq-item summary::-webkit-details-marker {
        display: none
    }

    .faq-plus {
        color: var(--sea);
        font-size: 20px;
        line-height: 1;
        transition: transform .2s;
        flex-shrink: 0
    }

    .faq-item[open] .faq-plus {
        transform: rotate(45deg)
    }

    .faq-body {
        font-size: 13px;
        color: var(--ink-2);
        line-height: 1.75;
        margin-top: 12px
    }

    .faq-body a {
        color: var(--orange);
        font-weight: 600;
        text-decoration: none
    }

    .faq-body a:hover {
        text-decoration: underline
    }

    .faq-body strong {
        color: var(--ink)
    }

    /* ---- CTA ---- */
    .cta-sec {
        background: linear-gradient(135deg, var(--sea) 0%, #0d4a63 100%);
        padding: 72px 0;
        text-align: center
    }

    .cta-sec__eye {
        font-family: 'Unbounded', sans-serif;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .18em;
        color: rgba(255, 255, 255, .45);
        margin-bottom: 16px;
        display: block
    }

    .cta-sec__title {
        font-family: 'Unbounded', sans-serif;
        font-size: clamp(1.6rem, 3.5vw, 2.6rem);
        font-weight: 900;
        color: #fff;
        letter-spacing: -1px;
        margin-bottom: 14px
    }

    .cta-sec__sub {
        color: rgba(255, 255, 255, .65);
        font-size: 15px;
        margin-bottom: 28px;
        line-height: 1.6
    }

    /* ---- WAVE ---- */
    .wave {
        width: 100%;
        overflow: hidden;
        line-height: 0;
        margin-top: -1px
    }

    .wave svg {
        display: block;
        width: 100%
    }


    /* ---- STICKY ---- */
    .sticky-cta {
        display: none;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 100
    }

    .sticky-cta__btn {
        font-family: 'Unbounded', sans-serif;
        font-weight: 800;
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 107, 53, .96);
        color: #fff;
        font-size: 13px;
        padding: 14px 28px;
        border-radius: var(--r-pill);
        text-decoration: none;
        box-shadow: 0 8px 32px rgba(255, 107, 53, .35);
        white-space: nowrap
    }


    /* ---- RESPONSIVE ---- */
    @media(max-width:768px) {

        .header__nav,
        .header__phone {
            display: none
        }

        .sticky-cta {
            display: flex
        }

        .footer__grid {
            grid-template-columns: 1fr;
            gap: 24px
        }

        .sea-banner__inner {
            flex-direction: column;
            text-align: center
        }

        .hotel-grid {
            grid-template-columns: 1fr
        }

        .hero__actions {
            flex-direction: column
        }

        .hero__actions .btn {
            width: 100%;
            justify-content: center
        }

        .filters {
            gap: 6px
        }

        .filter-btn {
            font-size: 10px;
            padding: 7px 14px
        }
    }