.dining_banner {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: flex-end;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.dining_banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 17, 28, 0.42) 0%, rgba(10, 17, 28, 0.26) 34%, rgba(10, 17, 28, 0.62) 100%);
}

.dining_banner .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.dining_banner_content {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 0 84px;
    color: #fff;
}

.dining_banner_content .title {
    margin-bottom: 22px;
    color: #fff;
    font-size: 32px;
    line-height: 1.08;
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.dining_banner_content p {
    max-width: 780px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.75;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
}

.dining_banner_cta {
    display: inline-block;
    margin-top: 34px;
    padding: 16px 38px;
    border-radius: 0;
    background: #b12d89;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.dining_banner_cta:hover,
.dining_banner_cta:focus {
    background: #951f72;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.dining_intro {
    padding: 110px 0 95px;
    background: #f6f0e5;
}

.dining_intro_header {
    max-width: 820px;
    margin: 0 auto 56px;
}

.dining_intro_eyebrow {
    margin-bottom: 24px;
    color: #b12d89;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.dining_intro_header h2 {
    margin: 0;
    color: #171717;
    font-family: "Playfair Display", serif;
    font-size: 32px;
    line-height: 1.15;
}

.dining_intro_columns {
    max-width: 980px;
    margin: 0 auto;
}

.dining_intro_columns p {
    margin: 0;
    color: #7b7b7b;
    font-size: 18px;
    line-height: 1.9;
    text-align: center;
}

.spaces_showcase {
    padding: 110px 0 95px;
    background: #fff;
}

.spaces_showcase_header {
    max-width: 980px;
    margin: 0 auto 58px;
}

.spaces_showcase_header .title {
    margin: 0 0 22px;
    color: #171717;
    font-family: "Playfair Display", serif;
    font-size: 32px;
    line-height: 1.12;
}

.spaces_showcase_header p {
    margin: 0 auto;
    max-width: 980px;
    color: #7b7b7b;
    font-size: 18px;
    line-height: 1.8;
}

.spaces_grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
}

.space_card {
    position: relative;
    display: block;
    min-height: 600px;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    background: #121212;
}

.space_card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.68) 100%);
    z-index: 1;
}

.space_card_media {
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 0.45s ease;
}

.space_card_number,
.space_card_content {
    position: relative;
    z-index: 2;
}

.space_card_number {
    display: inline-block;
    padding: 28px 0 0 28px;
    font-size: 36px;
    font-weight: 500;
    line-height: 1;
}

.space_card_content {
    position: absolute;
    right: 28px;
    bottom: 28px;
    left: 28px;
}

.space_card_title {
    display: block;
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
}

.space_card_tag {
    display: inline-block;
    margin-bottom: 22px;
    padding: 10px 14px;
    background: #fff;
    color: #2a2a2a;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.space_card_link {
    display: block;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.space_card:hover,
.space_card:focus {
    color: #fff;
    text-decoration: none;
}

.space_card:hover .space_card_media,
.space_card:focus .space_card_media {
    transform: scale(1.05);
}

.wings_feature {
    padding: 110px 0 95px;
    background: #fff;
}

.wings_feature::before {
    display: none;
}

.wings_feature_header {
    max-width: 780px;
    margin: 0 auto 52px;
}

.wings_feature_eyebrow {
    margin: 0 0 16px;
    color: #b12d89;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wings_feature_header h2 {
    margin: 0;
    color: #171717;
    font-family: "Playfair Display", serif;
    font-size: 32px;
    line-height: 1.15;
}

.wings_feature_showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(360px, 1fr);
    gap: 0;
    align-items: stretch;
}

.wings_feature_slider {
    position: relative;
    min-width: 0;
}

.wings_feature .wings_owl {
    margin: 0;
    background: #111;
}

.wings_feature .wings_owl .item,
.wings_feature .wings_owl .item article,
.wings_feature .wings_owl .item .image {
    height: 100%;
}

.wings_feature .wings_owl .item article {
    margin: 0;
}

.wings_feature .wings_owl .item .image img {
    width: 100%;
    height: 100%;
    min-height: 640px;
    object-fit: cover;
}

.wings_feature .wings_owl .owl-controls {
    margin: 0;
}

.wings_feature .wings_owl .owl-controls .owl-buttons div {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 56px;
    height: 56px;
    margin-top: -28px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 22px;
    line-height: 56px;
    text-align: center;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.wings_feature .wings_owl .owl-controls .owl-buttons .owl-prev {
    left: 24px;
}

.wings_feature .wings_owl .owl-controls .owl-buttons .owl-next {
    right: 24px;
}

.wings_feature .wings_owl .owl-controls .owl-buttons div:hover {
    background: rgba(177, 45, 137, 0.88);
    transform: translateY(-2px);
}

.wings_feature .wings_owl .owl-controls .owl-pagination {
    position: absolute;
    right: 0;
    bottom: 24px;
    left: 0;
    z-index: 3;
    text-align: center;
}

.wings_feature .wings_owl .owl-controls .owl-page span {
    width: 10px;
    height: 10px;
    margin: 0 6px;
    background: rgba(255, 255, 255, 0.5);
}

.wings_feature .wings_owl .owl-controls .owl-page.active span {
    background: #fff;
}

.wings_feature_panel {
    padding: 56px 42px 44px;
    background: #f7f1e4;
}

.wings_feature_panel h3 {
    margin: 0 0 28px;
    color: #1b1b1b;
    font-family: "Playfair Display", serif;
    font-size: 32px;
    line-height: 1.35;
}

.wings_feature_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.wings_feature_tags span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 16px;
    background: #fff;
    color: #2b2b2b;
    font-size: 18px;
    line-height: 1.2;
    text-transform: uppercase;
}

.wings_feature_tags .is-active {
    background: #b12d89;
    color: #fff;
}

.wings_feature_list {
    border-top: 1px solid rgba(23, 23, 23, 0.12);
}

.wings_feature_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(23, 23, 23, 0.12);
}

.wings_feature_item span {
    color: #171717;
    font-size: 18px;
    line-height: 1.5;
}

.wings_feature_item strong {
    flex: 0 0 auto;
    color: #8a8a8a;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.wings_feature_copy {
    max-width: 1440px;
    margin: 42px auto 0;
}

.wings_feature_copy p {
    margin: 0;
    color: #7b7b7b;
    font-size: 18px;
    line-height: 1.9;
    text-align: center;
}

.hp68_feature {
    padding: 82px 0 72px;
    background: #f7f1e4;
}

.hp68_feature::before {
    display: none;
}

.hp68_feature_showcase {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
    gap: 44px;
    align-items: center;
}

.hp68_feature_copy {
    max-width: 610px;
}

.hp68_feature_eyebrow {
    margin: 0 0 18px;
    color: #b12d89;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hp68_feature_copy h2 {
    margin: 0 0 20px;
    color: #171717;
    font-family: "Playfair Display", serif;
    font-size: 32px;
    line-height: 1.15;
}

.hp68_feature_copy p:last-of-type {
    margin: 0;
    color: #7b7b7b;
    font-size: 18px;
    line-height: 1.75;
}

.hp68_feature_cta {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 42px;
    background: #b12d89;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.hp68_feature_cta:hover,
.hp68_feature_cta:focus {
    background: #951f72;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.hp68_feature_slider {
    min-width: 0;
}

.hp68_feature .hp68_owl {
    margin: 0;
    background: #111;
}

.hp68_feature .hp68_owl .item,
.hp68_feature .hp68_owl .item article,
.hp68_feature .hp68_owl .item .image {
    height: 100%;
}

.hp68_feature .hp68_owl .item article {
    margin: 0;
}

.hp68_feature .hp68_owl .item .image img {
    width: 100%;
    height: 100%;
    min-height: 700px;
    object-fit: cover;
}

.hp68_feature .hp68_owl .owl-controls {
    margin: 0;
}

.hp68_feature .hp68_owl .owl-controls .owl-buttons div {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 52px;
    height: 52px;
    margin-top: -26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 22px;
    line-height: 52px;
    text-align: center;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.hp68_feature .hp68_owl .owl-controls .owl-buttons .owl-prev {
    left: 20px;
}

.hp68_feature .hp68_owl .owl-controls .owl-buttons .owl-next {
    right: 20px;
}

.hp68_feature .hp68_owl .owl-controls .owl-buttons div:hover {
    background: rgba(177, 45, 137, 0.88);
    transform: translateY(-2px);
}

.hp68_feature .hp68_owl .owl-controls .owl-pagination {
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;
    z-index: 3;
    text-align: center;
}

.hp68_feature .hp68_owl .owl-controls .owl-page span {
    width: 10px;
    height: 10px;
    margin: 0 6px;
    background: rgba(255, 255, 255, 0.5);
}

.hp68_feature .hp68_owl .owl-controls .owl-page.active span {
    background: #fff;
}

.jacu_feature {
    padding: 82px 0 72px;
    background: #fff;
}

.jacu_feature::before {
    display: none;
}

.jacu_feature_showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: 44px;
    align-items: center;
}

.jacu_feature_slider {
    min-width: 0;
}

.jacu_feature .jacu_owl {
    margin: 0;
    background: #111;
}

.jacu_feature .jacu_owl .item,
.jacu_feature .jacu_owl .item article,
.jacu_feature .jacu_owl .item .image {
    height: 100%;
}

.jacu_feature .jacu_owl .item article {
    margin: 0;
}

.jacu_feature .jacu_owl .item .image img {
    width: 100%;
    height: 100%;
    min-height: 700px;
    object-fit: cover;
}

.jacu_feature .jacu_owl .owl-controls {
    margin: 0;
}

.jacu_feature .jacu_owl .owl-controls .owl-buttons div {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 52px;
    height: 52px;
    margin-top: -26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 22px;
    line-height: 52px;
    text-align: center;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.jacu_feature .jacu_owl .owl-controls .owl-buttons .owl-prev {
    left: 20px;
}

.jacu_feature .jacu_owl .owl-controls .owl-buttons .owl-next {
    right: 20px;
}

.jacu_feature .jacu_owl .owl-controls .owl-buttons div:hover {
    background: rgba(177, 45, 137, 0.88);
    transform: translateY(-2px);
}

.jacu_feature .jacu_owl .owl-controls .owl-pagination {
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;
    z-index: 3;
    text-align: center;
}

.jacu_feature .jacu_owl .owl-controls .owl-page span {
    width: 10px;
    height: 10px;
    margin: 0 6px;
    background: rgba(255, 255, 255, 0.5);
}

.jacu_feature .jacu_owl .owl-controls .owl-page.active span {
    background: #fff;
}

.jacu_feature_copy {
    max-width: 610px;
}

.jacu_feature_eyebrow {
    margin: 0 0 18px;
    color: #b12d89;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.jacu_feature_copy h2 {
    margin: 0 0 20px;
    color: #171717;
    font-family: "Playfair Display", serif;
    font-size: 32px;
    line-height: 1.15;
}

.jacu_feature_copy p:last-of-type {
    margin: 0;
    color: #7b7b7b;
    font-size: 18px;
    line-height: 1.75;
}

.jacu_feature_cta {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 42px;
    background: #b12d89;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.jacu_feature_cta:hover,
.jacu_feature_cta:focus {
    background: #951f72;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.shisha_feature,
.wellness_feature {
    padding: 82px 0 72px;
    background: #f7f1e4;
}

.cinema_feature {
    padding: 82px 0 72px;
    background: #fff;
}

.shisha_feature::before,
.cinema_feature::before,
.wellness_feature::before {
    display: none;
}

.shisha_feature_showcase,
.wellness_feature_showcase {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
    gap: 44px;
    align-items: center;
}

.cinema_feature_showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: 44px;
    align-items: center;
}

.shisha_feature_copy,
.cinema_feature_copy,
.wellness_feature_copy {
    max-width: 610px;
}

.shisha_feature_eyebrow,
.cinema_feature_eyebrow,
.wellness_feature_eyebrow {
    margin: 0 0 18px;
    color: #b12d89;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.shisha_feature_copy h2,
.cinema_feature_copy h2,
.wellness_feature_copy h2 {
    margin: 0 0 20px;
    color: #171717;
    font-family: "Playfair Display", serif;
    font-size: 32px;
    line-height: 1.15;
}

.shisha_feature_copy p,
.cinema_feature_copy p,
.wellness_feature_copy p {
    margin: 0 0 18px;
    color: #7b7b7b;
    font-size: 18px;
    line-height: 1.75;
}

.shisha_feature_copy p:last-of-type,
.cinema_feature_copy p:last-of-type,
.wellness_feature_copy p:last-of-type {
    margin-bottom: 0;
}

.shisha_feature_cta,
.cinema_feature_cta,
.wellness_feature_cta {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 42px;
    background: #b12d89;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.shisha_feature_cta:hover,
.shisha_feature_cta:focus,
.cinema_feature_cta:hover,
.cinema_feature_cta:focus,
.wellness_feature_cta:hover,
.wellness_feature_cta:focus {
    background: #951f72;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.shisha_feature_slider,
.cinema_feature_slider,
.wellness_feature_slider {
    min-width: 0;
}

.shisha_feature .shisha_owl,
.cinema_feature .cinema_owl,
.wellness_feature .wellness_owl {
    margin: 0;
    background: #111;
}

.shisha_feature .shisha_owl .item,
.shisha_feature .shisha_owl .item article,
.shisha_feature .shisha_owl .item .image,
.cinema_feature .cinema_owl .item,
.cinema_feature .cinema_owl .item article,
.cinema_feature .cinema_owl .item .image,
.wellness_feature .wellness_owl .item,
.wellness_feature .wellness_owl .item article,
.wellness_feature .wellness_owl .item .image {
    height: 100%;
}

.shisha_feature .shisha_owl .item article,
.cinema_feature .cinema_owl .item article,
.wellness_feature .wellness_owl .item article {
    margin: 0;
}

.shisha_feature .shisha_owl .item .image img,
.cinema_feature .cinema_owl .item .image img,
.wellness_feature .wellness_owl .item .image img {
    width: 100%;
    height: 100%;
    min-height: 700px;
    object-fit: cover;
}

.shisha_feature .shisha_owl .owl-controls,
.cinema_feature .cinema_owl .owl-controls,
.wellness_feature .wellness_owl .owl-controls {
    margin: 0;
}

.shisha_feature .shisha_owl .owl-controls .owl-buttons div,
.cinema_feature .cinema_owl .owl-controls .owl-buttons div,
.wellness_feature .wellness_owl .owl-controls .owl-buttons div {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 52px;
    height: 52px;
    margin-top: -26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 22px;
    line-height: 52px;
    text-align: center;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.shisha_feature .shisha_owl .owl-controls .owl-buttons .owl-prev,
.cinema_feature .cinema_owl .owl-controls .owl-buttons .owl-prev,
.wellness_feature .wellness_owl .owl-controls .owl-buttons .owl-prev {
    left: 20px;
}

.shisha_feature .shisha_owl .owl-controls .owl-buttons .owl-next,
.cinema_feature .cinema_owl .owl-controls .owl-buttons .owl-next,
.wellness_feature .wellness_owl .owl-controls .owl-buttons .owl-next {
    right: 20px;
}

.shisha_feature .shisha_owl .owl-controls .owl-buttons div:hover,
.cinema_feature .cinema_owl .owl-controls .owl-buttons div:hover,
.wellness_feature .wellness_owl .owl-controls .owl-buttons div:hover {
    background: rgba(177, 45, 137, 0.88);
    transform: translateY(-2px);
}

.shisha_feature .shisha_owl .owl-controls .owl-pagination,
.cinema_feature .cinema_owl .owl-controls .owl-pagination,
.wellness_feature .wellness_owl .owl-controls .owl-pagination {
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;
    z-index: 3;
    text-align: center;
}

.shisha_feature .shisha_owl .owl-controls .owl-page span,
.cinema_feature .cinema_owl .owl-controls .owl-page span,
.wellness_feature .wellness_owl .owl-controls .owl-page span {
    width: 10px;
    height: 10px;
    margin: 0 6px;
    background: rgba(255, 255, 255, 0.5);
}

.shisha_feature .shisha_owl .owl-controls .owl-page.active span,
.cinema_feature .cinema_owl .owl-controls .owl-page.active span,
.wellness_feature .wellness_owl .owl-controls .owl-page.active span {
    background: #fff;
}

@media (max-width: 991px) {
    .dining_banner {
        min-height: 620px;
        align-items: center;
    }

    .dining_banner_content {
        padding: 100px 0 60px;
    }

    .dining_banner_content .title {
        font-size: 46px;
    }

    .dining_banner_content p {
        font-size: 22px;
        line-height: 1.55;
    }

    .dining_intro {
        padding: 88px 0 76px;
    }

    .dining_intro_header {
        margin-bottom: 44px;
    }

    .dining_intro_header h2 {
        font-size: 32px;
    }

    .dining_intro_columns p {
        font-size: 18px;
        line-height: 1.75;
    }

    .spaces_showcase {
        padding: 88px 0 76px;
    }

    .spaces_showcase_header {
        margin-bottom: 42px;
    }

    .spaces_showcase_header .title {
        font-size: 32px;
    }

    .spaces_showcase_header p {
        font-size: 18px;
        line-height: 1.7;
    }

    .spaces_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .space_card {
        min-height: 520px;
    }

    .wings_feature {
        padding: 88px 0 76px;
    }

    .wings_feature_header {
        margin-bottom: 38px;
    }

    .wings_feature_showcase {
        grid-template-columns: 1fr;
    }

    .wings_feature .wings_owl .item .image img {
        min-height: 520px;
    }

    .wings_feature_panel {
        padding: 36px 32px;
    }

    .wings_feature_panel h3 {
        font-size: 32px;
    }

    .hp68_feature {
        padding: 70px 0 62px;
    }

    .hp68_feature_showcase {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hp68_feature_copy {
        max-width: 100%;
    }

    .hp68_feature .hp68_owl .item .image img {
        min-height: 520px;
    }

    .jacu_feature {
        padding: 70px 0 62px;
    }

    .jacu_feature_showcase {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .jacu_feature_copy {
        max-width: 100%;
    }

    .jacu_feature .jacu_owl .item .image img {
        min-height: 520px;
    }

    .shisha_feature,
    .cinema_feature,
    .wellness_feature {
        padding: 70px 0 62px;
    }

    .shisha_feature_showcase,
    .cinema_feature_showcase,
    .wellness_feature_showcase {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .shisha_feature_copy,
    .cinema_feature_copy,
    .wellness_feature_copy {
        max-width: 100%;
    }

    .shisha_feature .shisha_owl .item .image img,
    .cinema_feature .cinema_owl .item .image img,
    .wellness_feature .wellness_owl .item .image img {
        min-height: 520px;
    }
}

@media (max-width: 767px) {
    .dining_banner {
        min-height: 540px;
    }

    .dining_banner_content {
        max-width: 100%;
        padding: 110px 10px 48px;
    }

    .dining_banner_content .title {
        margin-bottom: 18px;
        font-size: 34px;
        line-height: 1.18;
    }

    .dining_banner_content p {
        font-size: 18px;
        line-height: 1.5;
    }

    .dining_banner_cta {
        margin-top: 28px;
        padding: 14px 28px;
        font-size: 18px;
    }

    .dining_intro {
        padding: 68px 0 58px;
    }

    .dining_intro_eyebrow {
        margin-bottom: 16px;
        font-size: 14px;
        letter-spacing: 0.06em;
    }

    .dining_intro_header {
        margin-bottom: 32px;
    }

    .dining_intro_header h2 {
        font-size: 34px;
        line-height: 1.22;
    }

    .dining_intro_columns p {
        font-size: 18px;
        line-height: 1.7;
    }

    .spaces_showcase {
        padding: 68px 0 58px;
    }

    .spaces_showcase_header {
        margin-bottom: 30px;
    }

    .spaces_showcase_header .title {
        font-size: 32px;
        line-height: 1.2;
    }

    .spaces_showcase_header p {
        font-size: 18px;
        line-height: 1.7;
    }

    .spaces_grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .space_card {
        min-height: 440px;
    }

    .space_card_number {
        padding: 22px 0 0 22px;
        font-size: 28px;
    }

    .space_card_content {
        right: 22px;
        bottom: 22px;
        left: 22px;
    }

    .space_card_title {
        margin-bottom: 12px;
        font-size: 24px;
    }

    .space_card_tag {
        margin-bottom: 18px;
        font-size: 14px;
    }

    .space_card_link {
        font-size: 16px;
    }

    .wings_feature {
        padding: 68px 0 58px;
    }

    .wings_feature_eyebrow {
        font-size: 14px;
    }

    .wings_feature_header h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .wings_feature .wings_owl .item .image img {
        min-height: 360px;
    }

    .wings_feature .wings_owl .owl-controls .owl-buttons div {
        width: 46px;
        height: 46px;
        margin-top: -23px;
        font-size: 18px;
        line-height: 46px;
    }

    .wings_feature .wings_owl .owl-controls .owl-buttons .owl-prev {
        left: 14px;
    }

    .wings_feature .wings_owl .owl-controls .owl-buttons .owl-next {
        right: 14px;
    }

    .wings_feature_panel {
        padding: 28px 22px;
    }

    .wings_feature_panel h3 {
        font-size: 32px;
        line-height: 1.3;
    }

    .wings_feature_tags span,
    .wings_feature_item span,
    .wings_feature_item strong,
    .wings_feature_copy p {
        font-size: 18px;
    }

    .wings_feature_item {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .wings_feature_copy {
        margin-top: 30px;
    }

    .hp68_feature {
        padding: 56px 0 48px;
    }

    .hp68_feature_eyebrow {
        font-size: 14px;
    }

    .hp68_feature_copy h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .hp68_feature_copy p:last-of-type {
        font-size: 18px;
        line-height: 1.7;
    }

    .hp68_feature_cta {
        margin-top: 24px;
        padding: 16px 30px;
    }

    .hp68_feature .hp68_owl .item .image img {
        min-height: 360px;
    }

    .hp68_feature .hp68_owl .owl-controls .owl-buttons div {
        width: 44px;
        height: 44px;
        margin-top: -22px;
        font-size: 18px;
        line-height: 44px;
    }

    .hp68_feature .hp68_owl .owl-controls .owl-buttons .owl-prev {
        left: 12px;
    }

    .hp68_feature .hp68_owl .owl-controls .owl-buttons .owl-next {
        right: 12px;
    }

    .jacu_feature {
        padding: 56px 0 48px;
    }

    .jacu_feature_eyebrow {
        font-size: 14px;
    }

    .jacu_feature_copy h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .jacu_feature_copy p:last-of-type {
        font-size: 18px;
        line-height: 1.7;
    }

    .jacu_feature_cta {
        margin-top: 24px;
        padding: 16px 30px;
    }

    .jacu_feature .jacu_owl .item .image img {
        min-height: 360px;
    }

    .jacu_feature .jacu_owl .owl-controls .owl-buttons div {
        width: 44px;
        height: 44px;
        margin-top: -22px;
        font-size: 18px;
        line-height: 44px;
    }

    .jacu_feature .jacu_owl .owl-controls .owl-buttons .owl-prev {
        left: 12px;
    }

    .jacu_feature .jacu_owl .owl-controls .owl-buttons .owl-next {
        right: 12px;
    }

    .shisha_feature,
    .cinema_feature,
    .wellness_feature {
        padding: 56px 0 48px;
    }

    .shisha_feature_eyebrow,
    .cinema_feature_eyebrow,
    .wellness_feature_eyebrow {
        font-size: 14px;
    }

    .shisha_feature_copy h2,
    .cinema_feature_copy h2,
    .wellness_feature_copy h2 {
        font-size: 32px;
        line-height: 1.2;
    }

    .shisha_feature_copy p,
    .cinema_feature_copy p,
    .wellness_feature_copy p {
        font-size: 18px;
        line-height: 1.7;
    }

    .shisha_feature_cta,
    .cinema_feature_cta,
    .wellness_feature_cta {
        margin-top: 24px;
        padding: 16px 30px;
    }

    .shisha_feature .shisha_owl .item .image img,
    .cinema_feature .cinema_owl .item .image img,
    .wellness_feature .wellness_owl .item .image img {
        min-height: 360px;
    }

    .shisha_feature .shisha_owl .owl-controls .owl-buttons div,
    .cinema_feature .cinema_owl .owl-controls .owl-buttons div,
    .wellness_feature .wellness_owl .owl-controls .owl-buttons div {
        width: 44px;
        height: 44px;
        margin-top: -22px;
        font-size: 18px;
        line-height: 44px;
    }

    .shisha_feature .shisha_owl .owl-controls .owl-buttons .owl-prev,
    .cinema_feature .cinema_owl .owl-controls .owl-buttons .owl-prev,
    .wellness_feature .wellness_owl .owl-controls .owl-buttons .owl-prev {
        left: 12px;
    }

    .shisha_feature .shisha_owl .owl-controls .owl-buttons .owl-next,
    .cinema_feature .cinema_owl .owl-controls .owl-buttons .owl-next,
    .wellness_feature .wellness_owl .owl-controls .owl-buttons .owl-next {
        right: 12px;
    }
}
 .faq-holder {
        display: flex;
        gap: 60px;
      }

      /* LEFT SIDE */
      .faq-left {
        flex: 1;

        .faq-tag {
          color: #b44cff;
          font-size: 14px;
          margin-bottom: 10px;
        }

        h2 {
          font-size: 32px;
          font-family: "Playfair";
          margin-bottom: 20px;
        }

        p {
          color: #666;
          max-width: 400px;
          line-height: 160%;
        }
      }

      /* RIGHT SIDE */
      .faq-right {
        flex: 1;
      }

      .faq-item {
        border: 1px solid #ddd;
        margin-bottom: 12px;
        overflow: hidden;

        input {
          display: none;
        }

        .faq-question {
          display: flex;
          justify-content: space-between;
          padding: 15px;
          cursor: pointer;
          font-weight: 500;
        }

        .icon::before {
          content: "+";
        }

        .faq-answer {
          max-height: 0;
          overflow: hidden;
          padding: 0 15px;
          color: #666;
          transition: 0.3s ease;
        }

        input:checked~.faq-answer {
          max-height: 200px;
          padding: 15px;
        }

        input:checked+.faq-question .icon::before {
          content: "×";
        }
      }

      /* RESPONSIVE */
      @media (max-width: 768px) {
        .faq-holder {
          flex-direction: column;
          gap: 20px;
        }

        .faq-left h2 {
          font-size: 24px;
        }
      }