/* Compact Enjoy Your Stay Section */
.enjoy-stay-section {
    background: #ffffff;
    padding: 24px 18px;
}

.enjoy-stay-shell {
    width: min(1280px, 100%);
    margin: 0 auto;
    border-radius: var(--enjoy-radius, 28px);
    background: var(--enjoy-bg, #6d2421);
    padding: var(--enjoy-py, 42px) var(--enjoy-px, 44px);
    box-sizing: border-box;
}

.enjoy-stay-grid {
    display: grid;
    grid-template-columns: 1.05fr 1.05fr 1.05fr 1fr;
    gap: 14px;
    align-items: stretch;
}

.enjoy-stay-section * {
    box-sizing: border-box;
}

.enjoy-left-stack,
.enjoy-middle-stack,
.enjoy-center-stack,
.enjoy-right-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
    height: 100%;
}

.enjoy-title {
    color: var(--enjoy-text, #ffffff);
    font-family: var(--lumana-header-font);
    font-size: clamp(30px, 3.2vw, 48px);
    line-height: 1.02;
    /*letter-spacing: -.045em;*/
    font-weight: 800;
    margin: 0;
    max-width: 310px;
}

.enjoy-card-image,
.enjoy-card-plain,
.enjoy-card-button {
    border-radius: 20px;
    overflow: hidden;
}
.enjoy-card-button{
    padding: 10px;
    flex: 0 0 auto;
}

.enjoy-card-image {
    background: rgba(255,255,255,.08);
    min-height: 90px;
}

.enjoy-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.enjoy-image-large {
    flex: 1 1 auto;
    min-height: 245px;
}

.enjoy-image-small {
    flex: 0 0 clamp(78px, 8vw, 92px);
    min-height: 78px;
    max-height: 92px;
}

.enjoy-image-medium {
    flex: 1 1 0;
    min-height: 155px;
    max-height: none;
}

.enjoy-image-tall {
    flex: 1 1 0;
    min-height: 340px;
    max-height: none;
    height: 100%;
}

.enjoy-card-plain {
    background: var(--enjoy-feature-bg, #f8f2df);
    color: var(--enjoy-feature-text, #292524);
    padding: 22px 20px;
    min-height: 164px;
    display: flex;
    align-items: center;
    flex: 1 1 auto;
}

.enjoy-card-plain ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    width: 100%;
}

.enjoy-card-plain li {
    position: relative;
    padding-left: 16px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(15px, 1.08vw, 19px);
    line-height: 1.2;
    font-weight: 500;
}

.enjoy-card-plain li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .55em;
    width: 7px;
    height: 14px;
    transform: translateY(-50%);
    border-radius: 99px;
    background: rgba(41,37,36,.78);
}

.enjoy-card-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    background: var(--enjoy-btn-bg, transparent);
    color: var(--enjoy-btn-text, #ffffff);
    border: 1px solid var(--enjoy-btn-border, rgba(255,255,255,.35));
    text-decoration: none;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(15px, 1.08vw, 18px);
    font-weight: 500;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

.enjoy-card-button a:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

@media (max-width: 1200px) {
    .enjoy-stay-shell {
        width: min(1040px, 100%);
    }

    .enjoy-stay-grid {
        grid-template-columns: 1fr 1fr;
    }

    .enjoy-image-tall {
        min-height: 300px;
        max-height: none;
    }
}

@media (max-width: 768px) {
    .enjoy-stay-section {
        padding: 16px 12px;
    }

    .enjoy-stay-shell {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .enjoy-stay-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .enjoy-left-stack,
    .enjoy-middle-stack,
    .enjoy-center-stack,
    .enjoy-right-stack {
        gap: 12px;
    }

    .enjoy-title {
        font-size: clamp(30px, 8vw, 42px);
        max-width: 100%;
    }

    .enjoy-image-large,
    .enjoy-image-tall,
    .enjoy-image-medium {
        min-height: 200px;
        max-height: none;
    }

    .enjoy-image-small {
        min-height: 90px;
        max-height: none;
    }

    .enjoy-card-plain {
        padding: 20px 18px;
        min-height: auto;
    }

    .enjoy-card-plain li {
        font-size: 16px;
    }

    .enjoy-card-button a {
        min-height: 50px;
        font-size: 16px;
    }
}
