@import url('https://fonts.googleapis.com/css2?family=Libertinus+Math:ital,wght@0,400;0,600;1,400&family=Manrope:wght@300;400;500;600;700&display=swap');


/* ==========================================================
   Global Shared UI Styles
   Moved from eq/layouts/app.blade.php
========================================================== */
:root {
    --icon-arrow-left: url('../assets/icons/Left.svg');
    --icon-arrow-right: url('../assets/icons/Right.svg');

    --eq-font-title: 'Libertinus Math';
    --eq-font-body: 'Manrope';

    --eq-gold: #c9a961;
    --eq-clay: #996A57;
    --eq-ink: #1a1a1a;
    --eq-muted: #777;
}

.global-arrow {
    pointer-events: all;
    width: 75px;
    height: 75px;
    background: transparent;
    border: none;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.global-arrow::before {
    content: '';
    width: 42px;
    height: 42px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: none;
}

.global-arrow--prev::before {
    background-image: var(--icon-arrow-left);
}

.global-arrow--next::before {
    background-image: var(--icon-arrow-right);
}

.global-arrow.is-on-dark::before {
    filter: brightness(0) invert(1);
}

.global-arrow.is-on-light::before {
    filter: none;
}

.global-arrow:hover {
    opacity: 1;
}

.global-arrow:disabled {
    opacity: 0.15;
    cursor: default;
}

.eq-label {
    display: block;
    font-family: var(--eq-font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--eq-clay);
    margin-bottom: 16px;
}

.eq-title {
    font-family: var(--eq-font-title);
    font-size: clamp(1.5rem, 2vw, 2.5rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--eq-ink);
}

.eq-description {
    font-family: var(--eq-font-body);
    font-size: clamp(0.80rem, .96vw, 1rem);
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: var(--eq-muted);
}

.eq-discover {
    font-family: var(--eq-font-title);
    font-size: clamp(0.50rem, .96vw, 0.80rem);
    font-weight: 300;
    line-height: 1.75;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--eq-muted);
}

.eq-description p {
    font-family: var(--eq-font-body);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 0 18px;
    color: var(--eq-muted);
}

.eq-description p:empty {
    display: none;
}

.eq-description p:last-child {
    margin-bottom: 0;
}

.eq-description a {
    color: #0645ad;
    text-decoration: underline;
}

.eq-description a:hover {
    color: #0b0080;
}

.eq-section-center {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.text-link-black {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Manrope';
    font-size: clamp(0.35rem, 1.8vw, 0.6rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
    transition: color 0.3s, border-color 0.3s;
}

.text-link-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Manrope';
    font-size: clamp(0.35rem, 1.8vw, 0.6rem);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

.text-link-white span {
    display: inline-block;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
}

.text-link-white svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.text-link-white:hover {
    color: var(--gold);
}

.text-link-black:hover {
    color: var(--gold);
}

@media (max-width: 768px) {
    .eq-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 28px;
    }

    .eq-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .eq-description p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 16px;
    }
}

/* ==========================================================
   Global Hero Slider
   Used by pages with:
   [data-eq-hero-slider]
========================================================== */

.eq-hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.eq-hero-slider::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    height: 30%;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.58) 25%,
        rgba(0, 0, 0, 0.22) 60%,
        rgba(0, 0, 0, 0) 100%
    );
}

.eq-hero-slider__track {
    position: absolute;
    inset: 0;
    height: 100%;
}

.eq-hero-slider__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 1.4s ease,
        visibility 1.4s ease;
}

.eq-hero-slider__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.eq-hero-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform-origin: center center;
}

.eq-hero-slider__slide.is-active img {
    animation: eqHeroDesktopDimensionZoom 16s ease-out forwards;
}

@keyframes eqHeroDesktopDimensionZoom {
    0% {
        transform: scale(1);
        object-position: center center;
    }

    45% {
        transform: scale(1.05);
        object-position: 60% center;
    }

    100% {
        transform: scale(1.1);
        object-position: 60% center;
    }
}

.eq-hero-slider__nav {
    position: absolute;
    top: 50%;
    z-index: 50;
    transform: translateY(-50%);
}

.eq-hero-slider__nav--prev {
    left: 34px;
}

.eq-hero-slider__nav--next {
    right: 34px;
}

.eq-hero-slider__content {
    position: absolute;
    left: 4.5%;
    bottom: 54px;
    z-index: 20;
    display: flex;
    justify-content: center;
    text-align: center;
    color: #fff;
    /* padding: 0 24px; */
}

.eq-hero-slider__overlay {
    min-height: 22px;
    margin-bottom: 28px;
    font-family: 'Libertinus Math' !important;
    font-size: 1.25rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fff;
}

.discover-more {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .84);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
}

.discover-more:hover {
    color: #fff;
    text-decoration: none;
}

.discover-more i {
    color: var(--gold, #c9a961);
    font-size: 14px;
    animation: eqHeroArrowFloat 1.8s ease-in-out infinite;
}

@keyframes eqHeroArrowFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* ==========================================================
   Global Hero Info Popup
========================================================== */

.hero-info-popup {
    position: absolute;
    left: 2%;
    bottom: 50px;
    z-index: 40;
    width: min(560px, 86vw);
    padding: 0;
    background: transparent;
    color: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 0;
    outline: 0;
    box-shadow: none;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s ease, transform .45s ease, visibility .45s ease;
}

.hero-info-popup.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero-info-popup__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    /* width: 600px; */
}

.hero-info-popup__content {
    display: flex;
    flex-direction: column;
}

.hero-info-popup__image {
    display: none;
    width: 108px !important;
    max-width: 108px !important;
    height: auto;
    max-height: 120px;
    margin: 0;
    object-fit: contain;
    flex: 0 0 108px !important;
}

.hero-info-popup__image.has-image {
    display: block;
}

.hero-info-popup__title {
    margin: 0 0 6px;
    padding-right: 0;
    font-family: 'Libertinus Math' !important;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    font-weight: 300;
    line-height: 1.35;
    color: #fff;
}

.hero-info-popup__text {
    margin: 0;
    font-family: 'Libertinus Math' !important;
    font-size: clamp(0.9rem, 1vw, 1.1rem);
    text-transform: none;
    line-height: 1.35;
    letter-spacing: .02em;
    color: rgba(255, 255, 255, .9);
}

.hero-info-popup__close {
    display: none;
}

.hero-info-popup__word {
    display: inline-block;
    opacity: 0;
    transform: translateY(12px);
    filter: blur(3px);
}

.hero-info-popup.is-visible .hero-info-popup__word {
    animation: heroWordReveal .52s ease forwards;
    animation-delay: calc(var(--word-index) * 90ms);
}

@keyframes heroWordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* ==========================================================
   Mobile
========================================================== */

@media (max-width: 760px) {
    .eq-hero-slider {
        height: 100svh;
        min-height: 620px;
        overflow: hidden;
        background: #000;
    }
.eq-hero-slider--popup-below::after {
        display: block;
        height: 48%;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.58) 35%,
            rgba(0, 0, 0, 0.22) 70%,
            rgba(0, 0, 0, 0) 100%
        );
    }
    .eq-hero-slider__nav {
        z-index: 60;
    }

    .eq-hero-slider__nav--prev {
        left: 12px;
    }

    .eq-hero-slider__nav--next {
        right: 12px;
    }

    .eq-hero-slider__slide.is-active img {
        animation: eqHeroMobileZoomOut 16s ease-out forwards;
    }

    @keyframes eqHeroMobileZoomOut {
        0% {
            transform: scale(1.18);
            object-position: center center;
        }

        100% {
            transform: scale(1.02);
            object-position: center center;
        }
    }

    .eq-hero-slider--popup-below {
        height: 68vh;
        min-height: 520px;
        max-height: 680px;
        overflow: hidden;
        background: #000;
    }

    .eq-hero-slider--popup-below::after {
        display: block;
        height: 48%;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.58) 35%,
            rgba(0, 0, 0, 0.22) 70%,
            rgba(0, 0, 0, 0) 100%
        );
    }

    .eq-hero-slider--popup-below .eq-hero-slider__track {
        position: absolute;
        inset: 0;
        height: 100%;
        background: #000;
    }

    .eq-hero-slider--popup-below .eq-hero-slider__slide {
        height: 100%;
        background: #000;
    }

    .eq-hero-slider--popup-below .eq-hero-slider__slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        background: #000;
    }

    .eq-hero-slider--popup-below .eq-hero-slider__content {
        bottom: 28px;
        z-index: 30;
    }

    .eq-hero-slider--popup-below .eq-hero-slider__overlay {
        margin-bottom: 14px;
        font-size: 1rem;
        letter-spacing: 4px;
    }

    .eq-hero-slider--popup-below .discover-more {
        font-size: 9px;
        letter-spacing: 4px;
    }

    .hero-info-popup--below {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        z-index: 1;
        width: 100%;
        padding: 22px 28px 26px;
        background: #fff;
        color: #1a1a1a;
        opacity: 0;
        visibility: hidden;
        transform: translateY(12px);
    }

    .hero-info-popup--below.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        background: #f8f6f3;
    }

    .hero-info-popup--below:not(.is-visible) {
        display: none;
    }

    .hero-info-popup--below .hero-info-popup__inner {
        display: grid;
        grid-template-columns: 70px minmax(0, 1fr);
        gap: 16px;
        align-items: center;
    }

    .hero-info-popup--below .hero-info-popup__image {
        width: 70px !important;
        max-width: 70px !important;
        flex: 0 0 70px !important;
    }

    .hero-info-popup--below .hero-info-popup__title {
        margin: 0 0 6px;
        color: #1a1a1a;
        font-size: .95rem;
        line-height: 1.35;
    }

    .hero-info-popup--below .hero-info-popup__text {
        color: #555;
        font-size: .95rem;
        line-height: 1.45;
    }
    @media (max-width: 760px) {
    .hero-info-popup--below:not(.has-popup-image) .hero-info-popup__inner {
        grid-template-columns: 1fr;
    }

    .hero-info-popup--below:not(.has-popup-image) .hero-info-popup__content {
        width: 100%;
    }

    .hero-info-popup--below:not(.has-popup-image) .hero-info-popup__title,
    .hero-info-popup--below:not(.has-popup-image) .hero-info-popup__text {
        width: 100%;
        max-width: 100%;
    }
}
}
/* ==========================================================
   Tablet Hero Fix
   761px - 1024px
========================================================== */

@media (min-width: 761px) and (max-width: 1024px) {
    .eq-hero-slider--popup-below {
        height: 78vh;
        min-height: 620px;
        max-height: 760px;
        overflow: hidden;
        background: #000;
    }
.eq-hero-slider--popup-below::after {
        display: block;
        height: 48%;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.58) 35%,
            rgba(0, 0, 0, 0.22) 70%,
            rgba(0, 0, 0, 0) 100%
        );
    }
    .eq-hero-slider--popup-below::after {
        display: block;
        height: 48%;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.58) 35%,
            rgba(0, 0, 0, 0.22) 70%,
            rgba(0, 0, 0, 0) 100%
        );
    }

    .eq-hero-slider--popup-below .eq-hero-slider__track {
        position: absolute;
        inset: 0;
        height: 100%;
        background: #000;
    }

    .eq-hero-slider--popup-below .eq-hero-slider__slide {
        height: 100%;
        background: #000;
    }

    .eq-hero-slider--popup-below .eq-hero-slider__slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        background: #000;
    }

    .eq-hero-slider--popup-below .eq-hero-slider__content {
        bottom: 44px;
        z-index: 30;
    }

    .eq-hero-slider--popup-below .eq-hero-slider__overlay {
        margin-bottom: 16px;
        font-size: 1.1rem;
        letter-spacing: 5px;
    }

    .hero-info-popup--below {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        z-index: 1;
        width: 100%;
        padding: 24px 42px 30px;
        background: #fff;
        color: #1a1a1a;
        opacity: 0;
        visibility: hidden;
        transform: translateY(12px);
    }

    .hero-info-popup--below.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
                background: #f8f6f3;

    }

    .hero-info-popup--below:not(.is-visible) {
        display: none;
    }

    .hero-info-popup--below .hero-info-popup__inner {
        display: grid;
        grid-template-columns: 86px minmax(0, 1fr);
        gap: 22px;
        align-items: center;
    }

    .hero-info-popup--below .hero-info-popup__image {
        width: 86px !important;
        max-width: 86px !important;
        flex: 0 0 86px !important;
    }

    .hero-info-popup--below .hero-info-popup__title {
        color: #1a1a1a;
        font-size: 1rem;
        line-height: 1.35;
    }

    .hero-info-popup--below .hero-info-popup__text {
        color: #555;
        font-size: 1rem;
        line-height: 1.55;
    }

    .hero-info-popup--below:not(.has-popup-image) .hero-info-popup__inner {
        grid-template-columns: 1fr;
    }

    .hero-info-popup--below:not(.has-popup-image) .hero-info-popup__content {
        width: 100%;
    }

    .hero-info-popup--below:not(.has-popup-image) .hero-info-popup__title,
    .hero-info-popup--below:not(.has-popup-image) .hero-info-popup__text {
        width: 100%;
        max-width: 100%;
    }
}

/* ==========================================================
   Dining Index Styles
   Annotation:
   The dining index page must use the existing .eq-hero-slider
   structure. Do not create a separate hero slider.
========================================================== */
:root {
    --eq-gold: #c9a961;
    --eq-clay: #996a57;
    --eq-text: #1a1a1a;
    --eq-muted: #777;
    --eq-border: #eee;
    --eq-white: #fff;
    --eq-sand: #efc5a5;
}
/* 
body {
    overflow-x: hidden;
    color: #1a1a1a;
    font-family: 'Manrope'!important;
    background: #fff;
} */

/* ==========================================================
   Slider Left Contact Content
   Annotation:
   Replaces the old dining-hero__content name.
   Used inside the existing global .eq-hero-slider__content.
========================================================== */
.slider-left-contact-content {
    width: min(980px, 100%);
    pointer-events: auto;
    text-align: left;
}

.slider-left-contact-content__eyebrow {
    display: block;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, .9) !important;
    font-family: 'Libertinus Math' !important;
    font-size: clamp(1rem, 1.4vw, 1.35rem);
    font-style: italic;
    letter-spacing: .04em;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .4);
}

.slider-left-contact-content__title {
    max-width: 780px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, .96) !important;
    font-family: 'Libertinus Math' !important;
    font-size: clamp(2.25rem, 4.2vw, 3.25rem);
    font-weight: 300;
    line-height: 1.35;
    letter-spacing: .16em;
    text-transform: uppercase;
    text-shadow: 0 2px 26px rgba(0, 0, 0, .58);
}

.slider-left-contact-content__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.slider-left-contact-content__action {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-bottom: 6px;
    color: #fff !important;
    font-family: 'Libertinus Math' !important;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .34em;
    text-decoration: none;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .5);
    text-transform: uppercase;
}

.slider-left-contact-content__action::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, .75);
}

.eq-hero-slider__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 45;
    width: 0%;
    height: 2px;
    background: rgba(255, 255, 255, .65);
}

.hero-discover {
    display: none;
}

.intro-section {
    padding: 140px 10% 100px;
    text-align: center;
    background: #fff;
}

.section-label {
    display: block;
    margin-bottom: 12px;
    color: var(--eq-clay);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.intro-section h1 {
    margin-bottom: 35px;
    color: var(--eq-text);
    font-family: 'Libertinus Math' !important;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 2px;
}

.intro-description {
    max-width: 820px;
    margin: 0 auto;
    color: var(--eq-muted);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: .02em;
}

.dining-grid-section {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.dining-grid-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.dining-grid {
    display: flex;
    transition: transform .75s ease;
    will-change: transform;
}

.dining-card {
    position: relative;
    display: block;
    flex: 0 0 50%;
    min-height: 520px;
    overflow: hidden;
    color: #fff;
    text-decoration: none;
    background: #111;
}

.dining-card__image {
    position: absolute;
    inset: 0;
}

.dining-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 1.2s ease;
}

.dining-card:hover .dining-card__image img {
    transform: scale(1.08);
}

.dining-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, .05) 0%,
        rgba(0, 0, 0, .18) 45%,
        rgba(0, 0, 0, .72) 100%
    );
}

/* Annotation: dining-card__content moved from index.blade.php to global CSS. */
.dining-card__content {
    position: absolute;
    right: 38px;
    bottom: 42px;
    left: 38px;
    z-index: 2;
}

.dining-card h2 {
    margin: 0 0 14px;
    color: #fff !important;
    font-family: 'Libertinus Math' !important;
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.dining-card p {
    display: -webkit-box;
    max-width: 420px;
    margin: 0 0 22px;
    overflow: hidden;
    color: rgba(255, 255, 255, .86) !important;
    font-size: 14px;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.dining-card__link {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
    font-size: 10px;
    letter-spacing: 4px;
    text-decoration: none;
    text-transform: uppercase;
}

.dining-card__link::after {
    content: '';
    display: block;
    width: 70px;
    height: 1px;
    margin-top: 8px;
    background: var(--eq-gold);
}

.dining-grid-nav {
    position: absolute;
    top: 50%;
    z-index: 20;
    transform: translateY(-50%);
}

.dining-grid-nav--prev {
    left: 28px;
}

.dining-grid-nav--next {
    right: 28px;
}

.dining-card,
.dining-card__content,
.dining-card p,
.dining-card__link,
.slider-left-contact-content__action,
.section-label,
.intro-description,
.intro-description p,
.hero-discover,
.dining-grid-nav {
    font-family: 'Manrope' !important;
}

/* ==========================================================
   Dining Index Responsive Styles
   Annotation:
   No hero height is defined here. Mobile/tablet height follows the
   existing global .eq-hero-slider--popup-below rules above.
========================================================== */
@media (max-width: 900px) {
    .intro-section {
        padding: 85px 6% 65px;
    }

    .dining-card {
        flex: 0 0 100%;
        min-height: 430px;
    }

    .dining-card__content {
        right: 24px;
        bottom: 30px;
        left: 24px;
    }

    .dining-grid-nav--prev {
        left: 14px;
    }

    .dining-grid-nav--next {
        right: 14px;
    }
}

@media (max-width: 760px) {
    .eq-hero-slider__content:has(.slider-left-contact-content) {
        bottom: 76px;
        justify-content: flex-start;
        padding: 0 25px;
        text-align: left;
    }

    .eq-hero-slider__content .slider-left-contact-content__eyebrow {
        margin-bottom: 12px;
        font-size: .95rem;
        line-height: 1.3;
    }

    .eq-hero-slider__content .slider-left-contact-content__title {
        max-width: 100%;
        margin-bottom: 18px;
        font-size: clamp(1.75rem, 7vw, 2.35rem);
        line-height: 1.15;
        letter-spacing: .12em;
    }

    .eq-hero-slider__content .slider-left-contact-content__actions {
        gap: 12px;
    }

    .eq-hero-slider__content .slider-left-contact-content__action {
        font-size: 10px;
        letter-spacing: .28em;
    }
}
/*
 * Annotation:
 * Detail hero subheading/overlay title.
 * Keep this separate from .discover-more so both can be adjusted independently.
 */
.eq-subheading-hero-content {
    left: 0;
    right: 0;
    justify-content: center;
    text-align: center;
    padding-left: 24px;
    padding-right: 24px;
}
 .eq-subheading-hero-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
 .eq-subheading-hero {
    min-height: 22px;
    margin-bottom: 28px;
    font-family: 'Libertinus Math' !important;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 26px rgba(0, 0, 0, .58);
}
 /*
 * Annotation:
 * Discover More button has its own CSS.
 * Do not combine with .eq-subheading-hero.
 */
.discover-more {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, .84);
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
}
 .discover-more:hover {
    color: #fff;
    text-decoration: none;
}
 .discover-more i {
    color: var(--gold);
    font-size: 14px;
    animation: arrowFloat 1.8s ease-in-out infinite;
}
 @keyframes arrowFloat {
    0%,
    100% {
        transform: translateY(0);
    }
     50% {
        transform: translateY(8px);
    }
}
 @media (max-width: 760px) {
    .eq-subheading-hero-content {
        padding-left: 20px;
        padding-right: 20px;
    }
     .eq-subheading-hero {
        margin-bottom: 18px;
        font-size: 1rem;
        letter-spacing: 4px;
    }
     .discover-more {
        font-size: 9px;
        letter-spacing: 4px;
    }
}

/* ==========================================================
   Global Hero Video
   Used by pages that need video or image hero content using
   the existing .eq-hero-slider shell.
   Example:
   <section class="eq-hero-slider eq-hero-video">
========================================================== */

.eq-hero-video::after {
    display: block;
    height: 38%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, .88) 0%,
        rgba(0, 0, 0, .58) 34%,
        rgba(0, 0, 0, .22) 68%,
        rgba(0, 0, 0, 0) 100%
    );
}

.eq-hero-video .eq-hero-slider__content {
    right: 0;
    left: 0;
    bottom: 54px;
    justify-content: center;
    padding: 0 24px;
    text-align: center;
}

.eq-hero-video__media {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    background: #000;
}

.eq-hero-video__video,
.eq-hero-video__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.eq-hero-video__video {
    object-fit: cover;
}

.eq-hero-video__iframe {
    top: 50%;
    left: 50%;
    width: 177.77777778vh;
    height: 100vh;
    min-width: 100vw;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.eq-hero-video__title {
    min-height: 22px;
    margin: 0 0 28px;
    color: #fff;
    font-family: 'Libertinus Math' !important;
    font-size: clamp(12px, 1.4vw, 17px);
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: .32em;
    text-transform: uppercase;
    text-shadow: 0 2px 24px rgba(0, 0, 0, .45);
}

.eq-hero-video__title.is-changing {
    animation: eqHeroVideoTextOut .5s ease forwards;
}

.eq-hero-video__title.is-visible {
    animation: eqHeroVideoTextIn .8s ease forwards;
}

@keyframes eqHeroVideoTextIn {
    from {
        opacity: 0;
        transform: translateY(18px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes eqHeroVideoTextOut {
    from {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

    to {
        opacity: 0;
        transform: translateY(-14px);
        filter: blur(5px);
    }
}

.eq-hero-video .discover-more {
    position: relative;
    z-index: 25;
}

.eq-hero-video .eq-hero-slider__progress {
    z-index: 45;
}

@media (max-width: 900px) {
    .eq-hero-video .eq-hero-slider__content {
        bottom: 34px;
    }
}

@media (max-width: 600px) {
    .eq-hero-video__title {
        margin-bottom: 18px;
        font-size: 1rem;
        letter-spacing: 4px;
    }
}

/* ==========================================================
   EQ Homepage Styles
   Moved from home.blade.php
========================================================== */
        :root {
            --gold: #c9a961;
            --gold-light: rgba(201, 169, 97, 0.18);
            --clay: #996A57;
            --dark: #0d0d0d;
            --ink: #1a1a1a;
            --muted: #7a7a7a;
            --bg: #ffffff;
            --bg-warm: #f8f6f3;
            --serif: 'Libertinus Math';
            --eq-muted: #666;
        }

        body {
            font-family: 'Manrope';
            background: var(--bg);
            color: var(--ink);
            overflow-x: hidden;
        }

        .label {
            display: block;
            font-family: 'Manrope', Arial, sans-serif;
            font-size: 10px;
            letter-spacing: 5px;
            text-transform: uppercase;
            color: var(--clay);
            margin-bottom: 16px;
        }

        .section-heading {
            font-family: var(--serif), serif;
          font-size: clamp(1.5rem, 3.5vw, 2.5rem);
            font-weight: 400;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--ink);
            line-height: 1.1;
        }

        .text-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Manrope';
            font-size: clamp(0.35rem, 1.8vw, 0.6rem);
            letter-spacing: 3px;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--ink);
            border-bottom: 1px solid var(--gold);
            padding-bottom: 4px;
            transition: color 0.3s, border-color 0.3s;
        }

        .text-link:hover {
            color: var(--gold);
        }

        .text-link svg,
        .text-link-white svg {
            width: 13px;
            height: 13px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
        }

        .text-link-white {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Manrope';
            font-size: clamp(0.35rem, 1.8vw, 0.6rem);
            letter-spacing: 3px;
            text-transform: uppercase;
            text-decoration: none;
            color: #fff;
            border-bottom: 0;
            padding-bottom: 0;
            transition: color 0.3s ease;
        }

        .text-link-white span {
            display: inline-block;
            border-bottom: 1px solid var(--gold);
            padding-bottom: 4px;
        }

        .text-link-white:hover {
            color: var(--gold);
        }

        .text-link-offers {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Manrope';
            font-size: clamp(0.35rem, 1.8vw, 0.6rem);
            letter-spacing: 3px;
            text-transform: uppercase;
            text-decoration: none;
            color: white;
            border-bottom: 1px solid var(--gold);
            padding-bottom: 4px;
            transition: color 0.3s, border-color 0.3s;
        }

        .text-link-offers:hover {
            color: var(--gold);
        }

        [data-reveal] {
            opacity: 0;
            transform: translateY(32px);
            transition:
                opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
        }

        [data-reveal].visible {
            opacity: 1;
            transform: none;
        }

        [data-reveal="delay-1"] {
            transition-delay: 0.10s;
        }

        [data-reveal="delay-2"] {
            transition-delay: 0.22s;
        }

        [data-reveal="delay-3"] {
            transition-delay: 0.36s;
        }

        [data-reveal="delay-4"] {
            transition-delay: 0.50s;
        }

        .video-hero {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            background: var(--dark);
        }

        .video-hero video,
        .video-hero img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
        }

        .video-hero__veil {
            position: absolute;
            inset: 0;
          
            z-index: 2;
        }

        .video-hero__subtitle {
            position: absolute;
            bottom: 120px;
            left: 50%;
            transform: translateX(-50%) translateY(14px);
            width: 80%;
            text-align: center;
            font-family: var(--serif), serif;
            font-size: clamp(12px, 1.3vw, 16px);
            font-weight: 300;
            letter-spacing: 0.26em;
            text-transform: uppercase;
            color: rgba(242, 235, 229, 0.80);
            opacity: 0;
            visibility: hidden;
            z-index: 5;
            line-height: 1.9;
            text-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
            transition: opacity 2s ease, transform 2s ease, visibility 0s 2s;
        }

        .video-hero__subtitle.show {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
            transition: opacity 2s ease, transform 2s ease;
        }

        .video-hero__scroll {
            position: absolute;
            bottom: 38px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 5;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            opacity: 0;
            animation: fadeUp 1s ease 2s forwards;
        }

        .video-hero__scroll span {
            font-family: 'Manrope', Arial, sans-serif;
            font-size: 8px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: rgba(242, 235, 229, 0.60);
        }

        .video-hero__scroll i {
            color: rgba(201, 169, 97, 0.75);
            font-size: 13px;
            animation: bob 2.6s ease-in-out infinite;
        }


        .video-hero__sound {
            position: absolute;
            right: 34px;
            bottom: 34px;
            z-index: 6;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 46px;
            height: 46px;
            border: 1px solid rgba(255, 255, 255, 0.35);
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.28);
            color: rgba(242, 235, 229, 0.86);
            cursor: pointer;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
        }

        .video-hero__sound:hover,
        .video-hero__sound.is-active {
            color: #fff;
            border-color: var(--gold);
            background: rgba(0, 0, 0, 0.45);
        }

        .video-hero__sound i {
            font-size: 15px;
            color: currentColor;
        }

        @keyframes fadeUp {
            to {
                opacity: 1;
            }
        }

        @keyframes bob {
            0%,
            100% {
                transform: translateY(0);
                opacity: 0.7;
            }

            50% {
                transform: translateY(6px);
                opacity: 1;
            }
        }

        .editorial {
            background: var(--bg);
            padding: 90px 24px 80px;
            display: flex;
            justify-content: center;
        }

        .editorial__body {
            text-align: center;
            max-width: 1100px;
            margin: 0 auto;
        }

        .editorial .label {
            margin-bottom: 18px;
        }

        .editorial .section-heading {
            max-width: 1200px;
            margin: 0 auto 38px;
            font-size: clamp(1.5rem, 3.5vw, 2.5rem);
            line-height: 1.15;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 400;
        }

        .editorial__text {
            max-width: 1080px;
            margin: 0 auto;
            font-family: 'Manrope', Arial, sans-serif !important;
            font-size: clamp(0.80rem, 1.4vw, 1rem);
            font-weight: 400;
            line-height: 1.75;
            color: var(--eq-muted);
            letter-spacing: 0.01em;
        }

        .editorial__text p {
            font-size: clamp(0.80rem, 1.4vw, 1rem);
            line-height: 1.75;
            margin: 0 0 18px;
            font-family: 'Manrope'!important;
        }

        .editorial__text p:empty {
            display: none;
        }

        .editorial__text p:last-child {
            margin-bottom: 0;
        }

        .editorial__text a {
            color: #0645ad;
            text-decoration: underline;
        }

        .editorial__text a:hover {
            color: #0b0080;
        }

        .accom {
            background: var(--bg);
            position: relative;
        }

        .accom__header {
            text-align: center;
            padding: 72px 60px 48px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .accom__viewport {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .accom__track {
            display: flex;
            height: 580px;
            transition: transform 0.85s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .accom__panel {
            position: relative;
            flex: 0 0 50%;
            overflow: hidden;
            cursor: pointer;
        }

        .accom__panel img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
            background: #1a1a1a;
        }

        .accom__panel:hover img {
            transform: scale(1.05);
        }

        .accom__panel::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0) 25%,
                rgba(0, 0, 0, 0.86) 100%
            );
            z-index: 1;
            pointer-events: none;
        }

        .accom__overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 36px 40px;
            z-index: 2;
            color: #fff;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        .accom__room-badge {
            display: inline-block;
            font-size: 8px;
            letter-spacing: 3.5px;
            text-transform: uppercase;
            color: rgba(13, 13, 13, 0.85);
            background: var(--gold);
            padding: 5px 12px;
        }

        .accom__room-title {
            font-family: var(--serif), serif;
            font-size: clamp(1.5rem, 2.4vw, 2.1rem);
            font-weight: 300;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            line-height: 1.0;
            color: #fff;
            margin: 0;
        }

        .accom__room-desc {
            max-width: 430px;
            margin: 0 0 2px;
            font-family: 'Manrope', Arial, sans-serif;
            font-size: clamp(0.72rem, 1vw, 0.85rem);
            font-weight: 400;
            line-height: 1.55;
            letter-spacing: 0.02em;
            color: rgba(255, 255, 255, 0.78);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .accom__nav {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            z-index: 10;
            display: flex;
            justify-content: space-between;
            pointer-events: none;
        }

        .accom__dots {
            position: absolute;
            bottom: 22px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .accom__dot {
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.28);
            border: none;
            cursor: pointer;
            padding: 0;
            transition: background 0.3s, transform 0.3s;
        }

        .accom__dot.active {
            background: var(--gold);
            transform: scale(1.6);
        }

        .offers {
            background: var(--bg);
            padding: 96px 48px 108px;
        }

        .offers__header {
            text-align: center;
            margin-bottom: 56px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .offers__grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            align-items: start;
        }

        .offer-card {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            background: #111;
            display: block;
            text-decoration: none;
            width: 100%;
            aspect-ratio: 4 / 5.4;
            min-height: 520px;
        }

        .offer-card:nth-child(even) {
            margin-top: 60px;
        }

        .offer-card picture,
        .offer-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .offer-card img {
            object-fit: cover;
            object-position: center;
            transition: transform 1.1s cubic-bezier(0.23, 1, 0.32, 1);
            filter: brightness(0.88);
        }

        .offer-card:hover img {
            transform: scale(1.06);
        }

        .offer-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.78) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .offer-card__inset {
            position: absolute;
            inset: 14px;
            border: 1px solid rgba(255, 255, 255, 0.22);
            z-index: 3;
            pointer-events: none;
        }

        .offer-card__info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 28px 28px 32px;
            z-index: 2;
            color: #fff;
        }

        .offer-card__cat {
            display: block;
            font-size: 8px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 8px;
        }

        .offer-card__title {
            font-family: var(--serif);
            font-size: 20px;
            font-weight: 300;
            line-height: 1.1;
            color: #fff;
        }

        .heartbeat {
            background: var(--bg-warm);
            padding: 96px 0 108px;
            overflow: hidden;
        }

        .heartbeat__top {
            text-align: center;
            padding: 0 clamp(32px, 8vw, 96px) 52px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .heartbeat__desc {
            font-family: 'Manrope';
            font-size: clamp(.80rem, 1.3vw, 1rem);
            line-height: 1.85;
            color: var(--muted);
            max-width: 1100px;
            margin-top: 18px;
            margin-bottom: 32px;
            text-align: center;
        }

        .heartbeat__strip {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 0 48px;
            mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        }

        .heartbeat__track {
            display: flex;
            gap: 18px;
            width: max-content;
            animation: marquee 34s linear infinite;
        }

        .heartbeat__track:hover {
            animation-play-state: paused;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .moment {
            position: relative;
            width: 290px;
            aspect-ratio: 4 / 6;
            overflow: hidden;
            flex: 0 0 290px;
            background: #111;
            display: block;
            text-decoration: none;
        }

        .moment picture,
        .moment img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
        }

        .moment img {
            object-fit: cover;
            object-position: center;
            transition: transform 0.8s ease;
        }

        .moment:hover img {
            transform: scale(1.08);
        }

        .moment__overlay {
            position: absolute;
            inset: 0;
            padding: 28px 24px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0) 55%);
            opacity: 0;
            transform: translateY(8px);
            transition: opacity 0.45s ease, transform 0.45s ease;
        }

        .moment:hover .moment__overlay {
            opacity: 1;
            transform: none;
        }

        .moment__overlay h3 {
            font-family: var(--serif), serif;
            font-size: 1.1rem;
            font-weight: 300;
            color: var(--gold);
            margin-bottom: 6px;
        }

        .moment__overlay p {
            font-size: 0.78rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.82);
        }

        @media (max-width: 1100px) {
            .offers__grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .offer-card {
                min-height: 500px;
            }

            .offer-card:nth-child(even) {
                margin-top: 0;
            }

            .heartbeat__strip {
                padding: 0 28px;
            }

            .moment {
                width: 260px;
                flex-basis: 260px;
            }
        }

        @media (max-width: 768px) {
            /*
             * Mobile homepage hero video only.
             * Desktop remains at 100vh.
             */
            .video-hero {
                height: 50vh;
                height: 50svh;
                min-height: 0;
                background: #000;
            }

            .video-hero video {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center center;
                background: transparent;
            }

            .video-hero picture,
            .video-hero picture img {
                width: 100%;
                height: 100%;
            }

            .video-hero picture img {
                object-fit: cover;
                object-position: center center;
            }

            .video-hero__subtitle {
                bottom: 72px;
                width: calc(100% - 40px);
                font-size: 10px;
                line-height: 1.6;
                letter-spacing: 0.18em;
            }

            .video-hero__scroll {
                bottom: 18px;
            }

            .video-hero__sound {
                right: 18px;
                bottom: 16px;
                width: 38px;
                height: 38px;
            }

            .editorial {
                padding: 70px 20px 60px;
            }

            .editorial .section-heading {
                font-size: clamp(1.8rem, 7vw, 2.5rem);
                margin-bottom: 28px;
            }

            .editorial__text,
            .editorial__text p {
                font-size: clamp(0.80rem, 1.4vw, 1rem);
                line-height: 1.7;
            }

            .editorial__text p {
                margin-bottom: 16px;
            }

            .accom__header {
                padding: 48px 24px 36px;
            }

            .accom__track {
                height: auto;
            }

            .accom__panel {
                flex: 0 0 100%;
                height: 500px;
            }

            .accom__overlay {
                padding: 30px 24px;
            }

            .accom__room-desc {
                max-width: 100%;
            }

            .offers {
                padding: 72px 20px 80px;
            }

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

            .offer-card {
                min-height: 480px;
                aspect-ratio: 4 / 5.2;
            }

            .heartbeat {
                padding: 72px 0 80px;
            }

            .heartbeat__strip {
                padding: 0 20px;
                mask-image: none;
                -webkit-mask-image: none;
            }

            .moment {
                width: 240px;
                flex-basis: 240px;
                aspect-ratio: 4 / 6;
            }

        }

/* ==========================================================
   Accommodation Index Page
   Moved from index.blade(128).php
========================================================== */
        :root {
            --eq-gold: #c9a961;
            --eq-clay: #996A57;
            --eq-black: #111;
            --eq-text: #1a1a1a;
            --eq-muted: #777;
            --eq-border: #eee;
            --eq-warm: #faf8f6;
            --eq-sand: #efc5a5;
        }

        body {
            font-family: 'Manrope', Arial, sans-serif !important;
            background: #fff;
            color: #1a1a1a;
            overflow-x: hidden;
        }

        .accommodation-hero,
        .hero-discover,
        .intro-section,
        .section-label,
        .intro-description,
        .intro-description p,
        .tab-navigation,
        .tab-btn,
        .carousel-section,
        .carousel-card,
        .card-content,
        .card-category,
        .card-content p,
        .view-details-btn {
            font-family: 'Manrope';
        }

        .intro-section h1,
        .card-content h2,
        .accommodation-hero__text {
            font-family: 'Libre Libertinus Math' !important;
            font-weight: 200;
        }

        .accommodation-hero {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            background: #000;
        }

        .accommodation-hero__slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1.6s ease-in-out;
        }

        .accommodation-hero__slide.is-active {
            opacity: 1;
            z-index: 1;
        }

        .accommodation-hero__slide img,
        .accommodation-hero__video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .accommodation-hero__slide.is-active img {
            animation: heroZoom 9s ease-in-out forwards;
        }

        @keyframes heroZoom {
            from {
                transform: scale(1);
            }

            to {
                transform: scale(1.12);
            }
        }

        .accommodation-hero__overlay {
            position: absolute;
            inset: 0;
            z-index: 5;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            text-align: center;
            padding: 0 8% 115px;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0),
                rgba(0, 0, 0, .199) 45%,
                rgba(0, 0, 0, .671)
            );
            pointer-events: none;
        }

        .accommodation-hero__text {
            max-width: 1100px;
            color: rgba(255, 255, 255, .86);
            font-size: clamp(12px, 1.4vw, 17px);
            font-weight: 400;
            line-height: 1.9;
            letter-spacing: .32em;
            text-transform: uppercase;
            text-shadow: 0 2px 24px rgba(0, 0, 0, .45);
            opacity: 1;
        }

        .accommodation-hero__text.is-changing {
            animation: heroTextOut .5s ease forwards;
        }

        .accommodation-hero__text.is-visible {
            animation: heroTextIn .8s ease forwards;
        }

        @keyframes heroTextIn {
            from {
                opacity: 0;
                transform: translateY(18px);
                filter: blur(5px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
                filter: blur(0);
            }
        }

        @keyframes heroTextOut {
            from {
                opacity: 1;
                transform: translateY(0);
                filter: blur(0);
            }

            to {
                opacity: 0;
                transform: translateY(-14px);
                filter: blur(5px);
            }
        }

        .accommodation-hero__nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 30;
        }

        .accommodation-hero__nav--prev {
            left: 34px;
        }

        .accommodation-hero__nav--next {
            right: 34px;
        }

        .accommodation-hero__progress {
            position: absolute;
            left: 0;
            bottom: 0;
            height: 2px;
            width: 0%;
            background: rgba(255, 255, 255, .65);
            z-index: 15;
        }

        .intro-section {
            padding: 140px 10% 100px;
            text-align: center;
            background: #fff;
        }

        .section-label {
            display: block;
            margin-bottom: 12px;
            color: var(--eq-clay);
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        .intro-section h1 {
            margin-bottom: 35px;
            color: var(--eq-text);
            font-size: clamp(1.8rem, 3.8vw, 3rem);
            font-weight: 400;
            line-height: 1.2;
            letter-spacing: 1px;
        }

        .intro-description {
            max-width: 820px;
            margin: 0 auto;
            color: var(--eq-muted);
            font-size: 1.05rem;
            font-weight: 400;
            line-height: 1.85;
        }

        .intro-description p {
            margin-bottom: 0;
        }

        .tab-navigation {
            display: flex;
            justify-content: center;
            gap: 40px;
            padding: 20px;
            border-bottom: 1px solid var(--eq-border);
            position: sticky;
            top: 0;
            z-index: 50;
            background: #fff;
        }

        .tab-btn {
            background: none;
            border: none;
            color: #888;
            cursor: pointer;
            padding: 10px 20px;
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            transition: color .3s ease;
        }

        .tab-btn.active {
            color: #000;
        }

        .tab-btn.active::after {
            content: '';
            display: block;
            width: 100%;
            height: 1px;
            background: #030303;
            margin-top: 7px;
        }

        .carousel-section {
            position: relative;
            padding: 60px 0 100px;
            overflow: hidden;
            background: #fff;
        }

        .carousel-section:not(.active) {
            display: none;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            padding: 0 80px 70px;
            box-sizing: border-box;
        }

        .carousel-track {
            display: flex;
            align-items: stretch;
            gap: 24px;
            will-change: transform;
            transition: transform .75s cubic-bezier(.23, 1, .32, 1);
        }

        .carousel-card {
            min-width: 320px;
            width: 320px;
            background: #fff;
            transition: opacity .7s ease, filter .7s ease, transform .7s ease, box-shadow .7s ease;
            opacity: .28;
            filter: grayscale(35%);
            transform: scale(.94);
            display: flex;
            flex-direction: column;
            cursor: pointer;
            flex-shrink: 0;
            text-decoration: none;
            color: inherit;
        }

        .carousel-card.active {
            opacity: 1;
            filter: grayscale(0);
            transform: scale(1);
            z-index: 10;
            box-shadow: 0 24px 60px rgba(0, 0, 0, .13);
        }

        .card-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            height: auto;
            overflow: hidden;
            background: #f4f4f4;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.2s ease;
            display: block;
        }

        .carousel-card.active .card-image img {
            transform: scale(1.05);
        }

        .card-content {
            padding: 28px 28px 32px;
            background: #fff;
            flex-grow: 1;
            /* border-top: 2px solid #b5965a; */
        }

        .card-category {
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #b5965a;
            margin-bottom: 10px;
        }

        .card-content h2 {
            font-size: 1.25rem;
            margin-bottom: 14px;
            font-weight: 500;
            color: #1a1a1a;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            line-height: 1.4;
        }

        .card-content p {
            font-size: 1rem;
            line-height: 1.75;
            color: #777;
            margin-bottom: 22px;
            font-weight: 400;
        }

        .view-details-btn {
            display: inline-block;
            padding-bottom: 2px;
            text-decoration: none;
            color: #1a1a1a;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            border-bottom: 1px solid #b5965a;
        }

        .carousel-controls {
            position: absolute;
            top: 43%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 55px;
            pointer-events: none;
            z-index: 20;
            box-sizing: border-box;
        }

        .carousel-controls .accommodation-hero__nav {
            position: relative;
            top: auto;
            transform: none;
            pointer-events: auto;
        }

        .carousel-controls .accommodation-hero__nav--prev {
            left: auto;
        }

        .carousel-controls .accommodation-hero__nav--next {
            right: auto;
        }

        .hero-discover {
            position: absolute;
            left: 50%;
            bottom: 38px;
            transform: translateX(-50%);
            z-index: 20;
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, .78);
            text-decoration: none;
            font-size: 10px;
            font-weight: 500;
            letter-spacing: 4px;
            text-transform: uppercase;
            cursor: pointer;
        }

        .hero-discover i {
            color: var(--eq-gold);
            font-size: 14px;
            animation: heroArrowFloat 1.8s ease-in-out infinite;
        }

        @keyframes heroArrowFloat {
            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(8px);
            }
        }

        @media (max-width: 900px) {
            .intro-section {
                padding: 80px 6% 60px;
            }

            .intro-section h1 {
                font-size: clamp(1.7rem, 8vw, 2.4rem);
            }

            .intro-description {
                font-size: 1rem;
            }

            .tab-navigation {
                gap: 16px;
                overflow-x: auto;
                justify-content: flex-start;
            }

            .carousel-section {
                padding: 30px 0 70px;
            }

            .carousel-container {
                padding: 0;
            }

            .carousel-track {
                gap: 0;
                position: relative;
            }

            .carousel-card {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                min-width: 0;
                padding: 0 20px;
                opacity: 0;
                filter: none;
                transform: none;
                pointer-events: none;
                box-shadow: none;
                transition: opacity .5s ease;
                box-sizing: border-box;
            }

            .carousel-card.active {
                opacity: 1;
                transform: none;
                box-shadow: none;
                pointer-events: auto;
                position: relative;
            }

            .card-image {
                aspect-ratio: 1 / 1;
                height: auto;
            }

            .carousel-controls {
                padding: 0 10px;
                top: 36%;
            }

            .accommodation-hero__nav {
                width: 44px;
                height: 44px;
            }

            .accommodation-hero__nav--prev {
                left: 16px;
            }

            .accommodation-hero__nav--next {
                right: 16px;
            }
        }


/* ==========================================================
   Accommodation Detail Page
   Moved from show.blade(132).php
========================================================== */
        :root {
            --dark: #0f0f0f;
            --eq-sand: #efc5a5;
            --gold: #c9a961;
            --muted: #777;
            --border: #d8d8d8;
            --warm: #faf8f6;
        }

        body {
            font-family: 'Manrope' !important;
            background: #fff;
            color: #1a1a1a;
            overflow-x: hidden;
        }

        .hero-title,
        .details-section-title,
        .amenities-section-title,
        .detail-row-title,
        .amenity-name,
        .block-label,
        .alt-name,
        .cal-section-title {
            font-family: 'Libertinus Math' !important;
        }

        .discover-more,
        .intro-richtext,
        .intro-richtext p,
        .intro-richtext li,
        .intro-richtext a,
        .intro-richtext strong,
        .intro-richtext b,
        .detail-row-text,
        .detail-row-text p,
        .detail-row-text li,
        .detail-row-text a,
        .detail-floor-plan,
        .amenity-content,
        .amenity-content p,
        .amenity-content li,
        .amenity-content a,
        .section-kicker,
        .alt-tag,
        .alt-desc,
        .view-details-btn,
        .cal-guest-field label,
        .cal-guest-field select,
        .mini-cal-month,
        .mini-cal-dow span,
        .mini-cal-days .cal-day,
        .cal-date-cell label,
        .cal-date-cell span,
        .book-btn {
            font-family: 'Manrope';
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: none;
        }

        .hero-premium {
            position: relative;
            height: 100vh;
            overflow: hidden;
            background: #000;
        }

        .hero-slider {
            position: absolute;
            inset: 0;
            display: flex;
            height: 100%;
            transition: transform 1.2s cubic-bezier(.4, 0, .2, 1);
        }

        .hero-slide {
            min-width: 100%;
            height: 100%;
        }

        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scale(1.04);
        }

        .hero-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 30;
        }

        .hero-nav.prev {
            left: 34px;
        }

        .hero-nav.next {
            right: 34px;
        }

        .hero-content {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 58px;
            color: #fff;
            z-index: 20;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            text-align: center;
            padding: 0 24px;
        }

        .hero-title {
            font-family: 'Libertinus Math';
            font-size: 1.25rem;
            font-weight: 400;
            line-height: 1.2;
            letter-spacing: .28em;
            text-transform: uppercase;
            margin: 0 0 26px;
        }

        .discover-more {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, .78);
            text-decoration: none;
            font-size: 10px;
            letter-spacing: 4px;
            text-transform: uppercase;
            cursor: pointer;
        }

        .discover-more i {
            color: var(--gold);
            font-size: 14px;
            animation: arrowFloat 1.8s ease-in-out infinite;
        }

        @keyframes arrowFloat {
            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(8px);
            }
        }

        .page-wrap {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 560px;
            align-items: start;
            max-width: 1660px;
            margin: 0 auto;
            padding: 0 5%;
            gap: 56px;
        }

        .content-col {
            min-width: 0;
        }

        .intro-block {
            padding: 82px 0 72px;
        }

        .intro-richtext {
            max-width: 860px;
            color: #333;
            font-size: 1rem;
            line-height: 1.9;
            letter-spacing: .02em;
        }

        .intro-richtext p {
            margin: 0 0 18px;
            font-size: 1rem;
            color: var(--muted);
        }

        .intro-richtext p:last-child {
            margin-bottom: 0;
        }

        .intro-richtext strong,
        .intro-richtext b {
            font-weight: 600;
            color: #111;
        }

        .intro-richtext ul,
        .intro-richtext ol {
            margin: 18px 0;
            padding-left: 20px;
        }

        .intro-richtext li {
            margin-bottom: 8px;
            line-height: 1.75;
        }

        .intro-richtext a {
            color: #111;
            text-decoration: none;
            border-bottom: 1px solid var(--gold);
        }

        .details-section {
            margin-bottom: 150px;
        }

        .details-section-title,
        .amenities-section-title {
            font-family: 'Libertinus Math';
            font-size: 1.15rem;
            font-weight: 400;
            letter-spacing: .32em;
            text-transform: uppercase;
            color: #777;
            text-align: center;
            margin: 0 0 64px;
        }

        .details-list {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            column-gap: 46px;
            row-gap: 52px;
        }

        .detail-row {
            border-top: 1px solid #777;
            padding-top: 30px;
        }

        .detail-row.is-wide {
            grid-column: 1 / -1;
            display: block;
            border-bottom: 1px solid #777;
            padding-bottom: 34px;
        }

        .detail-row-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

        .detail-row.is-wide .detail-row-header {
            margin-bottom: 22px;
        }

        .detail-row-icon {
            width: 18px;
            color: #777;
            font-size: .82rem;
            text-align: center;
        }

        .detail-row-title {
            margin: 0;
            font-size: 0.95rem;
            letter-spacing: .38em;
            text-transform: uppercase;
            font-weight: 700;
            color: #777;
        }

        .detail-row-text {
            max-width: 520px;
            padding-left: 34px;
            font-size: 0.95rem;
            line-height: 1.8;
            color: #777;
            letter-spacing: .08em;
        }

        .detail-row.is-wide .detail-row-text {
            max-width: 760px;
            padding-left: 34px;
        }

        .detail-row-text p {
            margin: 0 0 10px;
        }

        .detail-row-text p:last-child {
            margin-bottom: 0;
        }

        .detail-row-text ul {
            list-style: disc;
            padding-left: 18px;
            margin: 0;
        }

        .detail-row-text li {
            margin-bottom: 10px;
            line-height: 1.8;
            letter-spacing: 0.08em;
            font-size: 1rem;
            color: #777;
        }

        .detail-row-text li::marker {
            color: #777;
            font-size: 0.7rem;
        }

        .detail-row-text a {
            color: #777;
            text-decoration: none;
            border-bottom: 1px solid #777;
        }

        .detail-floor-plan {
            display: inline-block;
            margin-top: 18px;
            font-size: .66rem;
            letter-spacing: .28em;
            text-transform: uppercase;
            color: #777;
            text-decoration: none;
            font-weight: 700;
            border-bottom: 1px solid #777;
            padding-bottom: 4px;
            transition: color .2s ease, border-color .2s ease;
        }

        .detail-floor-plan:hover {
            color: var(--gold);
            border-color: var(--gold);
        }

        .amenities-section {
            margin-bottom: 90px;
        }

        .amenities-list {
            border-top: 1px solid #777;
        }

        .amenity-row {
            border-bottom: 1px solid #777;
        }

        .amenity-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 31px 0;
            cursor: pointer;
            user-select: none;
        }

        .amenity-name {
            font-size: 0.85rem;
            letter-spacing: .38em;
            text-transform: uppercase;
            font-weight: 700;
            color: #777;
        }

        .amenity-toggle {
            font-size: 1.5rem;
            font-weight: 300;
            color: #777;
            line-height: 1;
            transition: transform .3s ease, color .2s ease;
            width: 24px;
            text-align: center;
        }

        .amenity-row.open .amenity-toggle {
            transform: rotate(45deg);
            color: var(--gold);
        }

        .amenity-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height .45s cubic-bezier(.4, 0, .2, 1);
        }

        .amenity-row.open .amenity-body {
            max-height: 900px;
        }

        .amenity-content {
            padding: 0 0 30px;
            font-size: 1rem;
            color: #777;
            line-height: 1.8;
            letter-spacing: .04em;
        }

        .amenity-content p {
            margin: 0 0 14px;
        }

        .amenity-content p:last-child {
            margin-bottom: 0;
        }

        .amenity-content ul,
        .amenity-content ol {
            margin: 0;
            padding-left: 18px;
            column-gap: 42px;
        }

        .amenity-content li {
            margin-bottom: 9px;
            break-inside: avoid;
        }

        .related-block {
            padding: 0 0 90px;
        }

        .section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 28px;
            padding-bottom: 18px;
            border-bottom: 1px solid var(--border);
        }

        .block-label {
            font-family: 'Libertinus Math';
            font-size: 1.25rem;
            font-weight: 400;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: #777;
            display: block;
        }

        .section-kicker {
            font-size: 10px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--eq-sand);
        }

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

        .alt-card {
            text-decoration: none;
            color: inherit;
            background: #fff;
            border: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            transition: transform .3s ease, box-shadow .3s ease;
        }

        .alt-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 42px rgba(0, 0, 0, .08);
        }

        .alt-img {
            width: 100%;
            aspect-ratio: 16 / 10;
            overflow: hidden;
            background: #f0f0f0;
        }

        .alt-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease;
        }

        .alt-card:hover .alt-img img {
            transform: scale(1.06);
        }

        .alt-body {
            padding: 28px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .alt-name {
            font-family: 'Libertinus Math';
            font-size: 1.25rem;
            font-weight: 400;
            color: #777;
            margin-bottom: 14px;
            letter-spacing: .04em;
        }

        .alt-tag {
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--eq-sand);
            font-weight: 600;
            margin-bottom: 14px;
        }

        .alt-desc {
            font-size: 1rem;
            color: var(--muted);
            line-height: 1.65;
            margin-bottom: 22px;
            flex-grow: 1;
        }

        .view-details-btn {
            display: inline-block;
            padding: 12px 0 4px;
            text-decoration: none;
            color: #777;
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 500;
            position: relative;
            transition: color .3s;
            align-self: flex-start;
        }

        .view-details-btn::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 1px;
            background-color: var(--gold);
        }

        .cal-col {
            position: sticky;
            top: 90px;
            margin-top: 82px;
            align-self: start;
            width: 100%;
            z-index: 20;
        }

        .sticky-cal {
            width: 100%;
            min-height: calc(100vh - 100px);
            background: #fff;
            color: #777;
            border: 1px solid var(--border);
            box-shadow: 0 14px 48px rgba(0, 0, 0, .09);
            padding: 42px 40px;
            display: flex;
            flex-direction: column;
        }

        .cal-section-title {
            font-family: 'Libertinus Math';
            font-size: 1.25rem;
            letter-spacing: .08em;
            text-transform: uppercase;
            color: #777;
            display: block;
            padding-bottom: 18px;
            border-bottom: 1px solid var(--border);
            margin-bottom: 24px;
        }

        .cal-guests {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin-bottom: 30px;
        }

        .cal-guest-field label {
            display: block;
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #777;
            margin-bottom: 8px;
        }

        .cal-guest-field select {
            width: 100%;
            border: none;
            border-bottom: 1px solid #ddd;
            background: transparent;
            font-family: 'Libertinus Math';
            font-size: 16px;
            color: #777;
            padding: 8px 0;
            outline: none;
            cursor: pointer;
        }

        .mini-cal {
            width: 100%;
            margin-bottom: 24px;
            flex: 1;
        }

        .mini-cal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 18px;
        }

        .mini-cal-month {
            font-size: 1rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #777;
        }

        .mini-cal-nav {
            background: transparent;
            border: 1px solid #ddd;
            cursor: pointer;
            color: #777;
            font-size: 14px;
            width: 34px;
            height: 34px;
        }

        .mini-cal-dow,
        .mini-cal-days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
        }

        .mini-cal-dow {
            padding-bottom: 10px;
            margin-bottom: 8px;
            border-bottom: 1px solid #eee;
        }

        .mini-cal-dow span {
            text-align: center;
            font-size: 10px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #777 !important;
        }

        .mini-cal-days {
            gap: 4px;
        }

        .mini-cal-days .cal-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color: #777 !important;
            opacity: 1 !important;
            font-weight: 500;
            cursor: pointer;
            transition: background .15s, color .15s;
            font-family: 'Libertinus Math';
        }

        .mini-cal-days .cal-day.empty {
            color: transparent !important;
        }

        .mini-cal-days .cal-day:hover:not(.disabled):not(.empty) {
            background: #f5f0eb;
        }

        .mini-cal-days .cal-day.disabled {
            color: #b8b8b8 !important;
            opacity: 1 !important;
            pointer-events: none;
        }

        .mini-cal-days .cal-day.range-start,
        .mini-cal-days .cal-day.range-end {
            background: #111 !important;
            color: #fff !important;
        }

        .mini-cal-days .cal-day.in-range {
            background: #f5f0eb !important;
            color: #777 !important;
        }

        .cal-dates-display {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1px;
            background: #e8e8e8;
            margin-bottom: 18px;
        }

        .cal-date-cell {
            background: #fff;
            padding: 14px;
        }

        .cal-date-cell label {
            display: block;
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #777;
            margin-bottom: 6px;
        }

        .cal-date-cell span {
            font-size: 13px;
            color: #777 !important;
        }

        .cal-date-cell span.placeholder {
            color: #aaa !important;
            font-style: italic;
        }

        .book-btn {
            width: 100%;
            margin-top: auto;
            padding: 18px;
            background: #000;
            color: #fff;
            border: none;
            font-family: 'Libertinus Math';
            font-size: .8rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            cursor: pointer;
            transition: background .3s, color .3s, letter-spacing .3s;
        }

        .book-btn:hover {
            background: var(--eq-sand);
            color: #fff;
            letter-spacing: 5px;
        }

        @media (max-width: 1180px) {
            .page-wrap {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .cal-col {
                position: static;
                margin-top: 0;
                padding: 0 0 64px;
            }

            .sticky-cal {
                min-height: auto;
            }
        }

        @media (max-width: 900px) {
            .details-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 760px) {
            .hero-title {
                font-size: 1.1rem;
                letter-spacing: .18em;
            }

            .hero-nav {
                width: 44px;
                height: 44px;
            }

            .hero-nav::before {
                width: 30px;
                height: 30px;
            }

            .hero-nav.prev {
                left: 16px;
            }

            .hero-nav.next {
                right: 16px;
            }

            .detail-row-text,
            .detail-row.is-wide .detail-row-text {
                padding-left: 0;
                letter-spacing: .04em;
            }

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

        @media (max-width: 580px) {
            .amenity-content ul,
            .amenity-content ol {
                columns: 1;
            }
        }

/* ==========================================================
   Offers Listing Page
   Three-card editorial carousel layout
========================================================== */
.offers-listing-page {
    --offers-gold: #c9a961;
    --offers-clay: #996a57;
    --offers-text: #1a1a1a;
    --offers-muted: #7a7a7a;
    --offers-border: #e7e7e7;
    overflow: hidden;
    background: #fff;
    color: var(--offers-text);
    font-family: 'Manrope', Arial, sans-serif;
}

.offers-listing-page .meetings-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.offers-listing-page .meetings-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.6s ease-in-out;
}

.offers-listing-page .meetings-hero__slide.is-active {
    z-index: 1;
    opacity: 1;
}

.offers-listing-page .meetings-hero__slide img,
.offers-listing-page .meetings-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offers-listing-page .meetings-hero__slide.is-active img {
    animation: offersHeroZoom 9s ease-in-out forwards;
}

@keyframes offersHeroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.12);
    }
}

.offers-listing-page .meetings-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 8% 115px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0) 45%,
        rgba(0, 0, 0, 0.67)
    );
    text-align: center;
    pointer-events: none;
}

.offers-listing-page .meetings-hero__text {
    color: rgba(255, 255, 255, 0.86);
    font-family: 'Libertinus Math', serif;
    font-size: clamp(12px, 1.4vw, 17px);
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.offers-listing-page .meetings-hero__text.is-changing {
    animation: offersHeroTextOut 0.5s ease forwards;
}

.offers-listing-page .meetings-hero__text.is-visible {
    animation: offersHeroTextIn 0.8s ease forwards;
}

@keyframes offersHeroTextIn {
    from {
        opacity: 0;
        transform: translateY(18px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes offersHeroTextOut {
    from {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

    to {
        opacity: 0;
        transform: translateY(-14px);
        filter: blur(5px);
    }
}

.offers-listing-page .meetings-hero__arrow {
    position: absolute;
    top: 50%;
    z-index: 30;
    transform: translateY(-50%);
}

.offers-listing-page .meetings-hero__arrow--prev {
    left: 34px;
}

.offers-listing-page .meetings-hero__arrow--next {
    right: 34px;
}

.offers-listing-page .meetings-hero__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 15;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.65);
}

.offers-listing-page .hero-discover {
    position: absolute;
    bottom: 38px;
    left: 50%;
    z-index: 20;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.offers-listing-page .hero-discover i {
    color: var(--offers-gold);
    font-size: 14px;
    animation: offersHeroArrowFloat 1.8s ease-in-out infinite;
}

@keyframes offersHeroArrowFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

.offers-listing-page .intro-section {
    padding: 140px 10% 100px;
    background: #fff;
    text-align: center;
}

.offers-listing-page .section-label {
    display: block;
    margin-bottom: 12px;
    color: var(--offers-clay);
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.offers-listing-page .intro-section .eq-title {
    margin-bottom: 35px;
    text-align: center;
}

.offers-listing-page .intro-description {
    max-width: 820px;
    margin: 0 auto;
    text-align: left;
    white-space: normal;
}

.offers-listing-page .intro-description p,
.offers-listing-page .intro-description li {
    text-align: left;
}

.offers-listing-page .intro-description p {
    margin-bottom: 18px;
}

.offers-listing-page .intro-description p:last-child {
    margin-bottom: 0;
}

.offers-listing-page .intro-description ul,
.offers-listing-page .intro-description ol {
    margin: 0 0 18px;
    padding-left: 22px;
}

.offers-listing-page .intro-description li {
    margin-bottom: 8px;
}

.offers-listing-page .tab-navigation {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    justify-content: center;
    gap: 34px;
    overflow-x: auto;
    padding: 20px;
    border-bottom: 1px solid var(--offers-border);
    background: #fff;
}

.offers-listing-page .tab-btn {
    padding: 10px 14px;
    border: 0;
    background: none;
    color: #888;
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
}

.offers-listing-page .tab-btn.active {
    color: #000;
}

.offers-listing-page .tab-btn.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 7px;
    background: #030303;
}

.offers-listing-page .offers-section {
    position: relative;
    width: min(100%, 1560px);
    margin: 0 auto;
    padding: 40px 86px 36px;
    background: #fff;
}

.offers-listing-page .offers-carousel {
    position: relative;
    overflow: hidden;
}

.offers-listing-page .offers-track {
    display: flex;
    align-items: stretch;
    gap: 36px;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.offers-listing-page .offer-card {
    display: flex;
    flex: 0 0 calc((100% - 72px) / 3);
    flex-direction: column;
    min-width: 0;
    min-height: 670px;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--offers-border);
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.offers-listing-page .offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.offers-listing-page .offer-card.is-filter-hidden {
    display: none;
}

.offers-listing-page .offer-image {
    width: 100%;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #f2f2f2;
}

.offers-listing-page .offer-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.offers-listing-page .offer-card:hover .offer-image img {
    transform: scale(1.045);
}

.offers-listing-page .offer-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 34px 34px 38px;
    background: #fff;
}

.offers-listing-page .offer-category {
    margin-bottom: 16px;
    color: var(--offers-gold);
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.offers-listing-page .offer-content .eq-title {
    min-height: 86px;
    margin: 0 0 18px;
    color: #202020;
    font-family: 'Libertinus Math', serif;
    font-size: clamp(1.3rem, 1.65vw, 1.65rem);
    font-weight: 400;
    line-height: 1.32;
    letter-spacing: 0.055em;
    text-align: left;
}

.offers-listing-page .offer-content .eq-description {
    display: -webkit-box;
    min-height: 104px;
    margin: 0 0 30px;
    overflow: hidden;
    color: var(--offers-muted);
    font-family: 'Manrope', Arial, sans-serif;
    font-size: clamp(0.88rem, 1vw, 1rem);
    line-height: 1.75;
    text-align: left;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.offers-listing-page .view-details-btn {
    display: inline-block;
    width: fit-content;
    margin-top: auto;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--offers-gold);
    color: #1a1a1a;
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.offers-listing-page .offers-nav__btn {
    position: absolute;
    top: 49%;
    z-index: 30;
    transform: translateY(-50%);
}

.offers-listing-page .offers-nav__btn--prev {
    left: 8px;
}

.offers-listing-page .offers-nav__btn--next {
    right: 8px;
}

.offers-listing-page .offers-count {
    display: block;
    margin-top: 36px;
    color: #777;
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
    text-align: center;
    text-transform: uppercase;
}

.offers-listing-page .empty-offers {
    width: 100%;
    padding: 60px 20px;
    color: var(--offers-muted);
    text-align: center;
}

@media (max-width: 1180px) {
    .offers-listing-page .offers-section {
        padding-right: 70px;
        padding-left: 70px;
    }

    .offers-listing-page .offers-track {
        gap: 28px;
    }

    .offers-listing-page .offer-card {
        flex-basis: calc((100% - 28px) / 2);
    }
}

@media (max-width: 900px) {
    .offers-listing-page .meetings-hero__arrow {
        width: 48px;
        height: 48px;
    }

    .offers-listing-page .meetings-hero__arrow::before {
        width: 30px;
        height: 30px;
    }

    .offers-listing-page .meetings-hero__arrow--prev {
        left: 16px;
    }

    .offers-listing-page .meetings-hero__arrow--next {
        right: 16px;
    }

    .offers-listing-page .intro-section {
        padding: 80px 6% 60px;
    }

    .offers-listing-page .tab-navigation {
        justify-content: flex-start;
    }

    .offers-listing-page .offers-section {
        padding: 42px 52px 34px;
    }

    .offers-listing-page .offers-track {
        gap: 0;
    }

    .offers-listing-page .offer-card {
        flex-basis: 100%;
        min-height: 610px;
    }

    .offers-listing-page .offer-content {
        padding: 28px 26px 32px;
    }

    .offers-listing-page .offer-content .eq-title,
    .offers-listing-page .offer-content .eq-description {
        min-height: 0;
    }

    .offers-listing-page .offers-nav__btn {
        width: 46px;
        height: 46px;
    }

    .offers-listing-page .offers-nav__btn::before {
        width: 28px;
        height: 28px;
    }

    .offers-listing-page .offers-nav__btn--prev {
        left: 2px;
    }

    .offers-listing-page .offers-nav__btn--next {
        right: 2px;
    }
}

@media (max-width: 560px) {
    .offers-listing-page .offers-section {
        padding-right: 36px;
        padding-left: 36px;
    }

    .offers-listing-page .offer-card {
        min-height: 560px;
    }

    .offers-listing-page .offer-image {
        aspect-ratio: 16 / 10.5;
    }
}

/* ==========================================================
   Offers Listing Page
   Unique class names prevent conflicts with homepage .offer-card
========================================================== */

.offers-listing-page {
    --offers-gold: #c9a961;
    --offers-clay: #996a57;
    --offers-text: #1a1a1a;
    --offers-muted: #777;
    --offers-border: #e7e7e7;
    background: #fff;
    color: var(--offers-text);
    font-family: 'Manrope', Arial, sans-serif;
}

.offers-listing-page .meetings-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.offers-listing-page .meetings-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.6s ease-in-out;
}

.offers-listing-page .meetings-hero__slide.is-active {
    z-index: 1;
    opacity: 1;
}

.offers-listing-page .meetings-hero__slide img,
.offers-listing-page .meetings-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offers-listing-page .meetings-hero__slide.is-active img {
    animation: offersListingHeroZoom 9s ease-in-out forwards;
}

@keyframes offersListingHeroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.12);
    }
}

.offers-listing-page .meetings-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 8% 115px;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0) 45%,
        rgba(0, 0, 0, 0.67)
    );
    text-align: center;
    pointer-events: none;
}

.offers-listing-page .meetings-hero__text {
    color: rgba(255, 255, 255, 0.86);
    font-family: 'Libertinus Math', serif;
    font-size: clamp(12px, 1.4vw, 17px);
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.offers-listing-page .meetings-hero__text.is-changing {
    animation: offersListingTextOut 0.5s ease forwards;
}

.offers-listing-page .meetings-hero__text.is-visible {
    animation: offersListingTextIn 0.8s ease forwards;
}

@keyframes offersListingTextIn {
    from {
        opacity: 0;
        transform: translateY(18px);
        filter: blur(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes offersListingTextOut {
    from {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }

    to {
        opacity: 0;
        transform: translateY(-14px);
        filter: blur(5px);
    }
}

.offers-listing-page .meetings-hero__arrow {
    position: absolute;
    top: 50%;
    z-index: 30;
    transform: translateY(-50%);
}

.offers-listing-page .meetings-hero__arrow--prev {
    left: 34px;
}

.offers-listing-page .meetings-hero__arrow--next {
    right: 34px;
}

.offers-listing-page .meetings-hero__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 15;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.65);
}

.offers-listing-page .hero-discover {
    position: absolute;
    bottom: 38px;
    left: 50%;
    z-index: 20;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 10px;
    letter-spacing: 4px;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.offers-listing-page .hero-discover i {
    color: var(--offers-gold);
    font-size: 14px;
    animation: offersListingArrowFloat 1.8s ease-in-out infinite;
}

@keyframes offersListingArrowFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

.offers-listing-page .intro-section {
    padding: 140px 10% 100px;
    background: #fff;
    text-align: center;
}

.offers-listing-page .section-label {
    display: block;
    margin-bottom: 12px;
    color: var(--offers-clay);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.offers-listing-page .intro-section .eq-title {
    margin-bottom: 35px;
    text-align: center;
}

.offers-listing-page .intro-description {
    max-width: 820px;
    margin: 0 auto;
    text-align: left;
    white-space: normal;
}

.offers-listing-page .intro-description p,
.offers-listing-page .intro-description li {
    text-align: left;
}

.offers-listing-page .intro-description p {
    margin-bottom: 18px;
}

.offers-listing-page .offers-listing-tabs {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    justify-content: center;
    gap: 42px;
    padding: 24px 20px 18px;
    overflow-x: auto;
    border-bottom: 1px solid var(--offers-border);
    background: #fff;
}

.offers-listing-page .offers-listing-tab {
    position: relative;
    padding: 10px 4px;
    border: 0;
    background: transparent;
    color: #999;
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    white-space: nowrap;
    text-transform: uppercase;
    cursor: pointer;
}

.offers-listing-page .offers-listing-tab.active {
    color: #111;
}

.offers-listing-page .offers-listing-tab.active::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 1px;
    background: #111;
}

.offers-listing-page .offers-listing-section {
    position: relative;
    width: min(1400px, calc(100% - 160px));
    margin: 0 auto;
    padding: 64px 0 42px;
}

.offers-listing-page .offers-listing-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.offers-listing-page .offers-listing-track {
    display: flex;
    align-items: stretch;
    gap: 36px;
    transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.offers-listing-page .offers-listing-card {
    position: relative;
    display: flex;
    flex: 0 0 calc((100% - 72px) / 3);
    width: calc((100% - 72px) / 3);
    min-width: calc((100% - 72px) / 3);
    flex-direction: column;
    min-width: 0;
    min-height: 575px;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--offers-border);
    background: #fff;
    color: inherit;
    text-decoration: none;
    box-shadow: none;
    transform: none;
    opacity: 1;
    filter: none;
    aspect-ratio: auto;
}

.offers-listing-page .offers-listing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.08);
}

.offers-listing-page .offers-listing-card.is-filter-hidden {
    display: none;
}

.offers-listing-page .offers-listing-card__image {
    position: relative;
    inset: auto;
    width: 100%;
    height: 280px;
    min-height: 280px;
    overflow: hidden;
    background: #f2f2f2;
    aspect-ratio: auto;
}

.offers-listing-page .offers-listing-card__image img {
    position: static;
    inset: auto;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: none;
    transform: none;
    transition: transform 0.9s ease;
}

.offers-listing-page .offers-listing-card:hover .offers-listing-card__image img {
    transform: scale(1.04);
}

.offers-listing-page .offers-listing-card::before,
.offers-listing-page .offers-listing-card::after {
    display: none;
    content: none;
}

.offers-listing-page .offers-listing-card__content {
    position: static;
    inset: auto;
    z-index: auto;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 34px 34px 36px;
    background: #fff;
    color: var(--offers-text);
}

.offers-listing-page .offers-listing-card__category {
    display: block;
    margin-bottom: 15px;
    color: var(--offers-gold);
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.offers-listing-page .offers-listing-card__content .eq-title {
    min-height: 76px;
    margin: 0 0 18px;
    color: var(--offers-text);
    font-family: 'Libertinus Math', serif;
    font-size: clamp(1.2rem, 1.6vw, 1.5rem);
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0.08em;
    text-align: left;
    text-transform: uppercase;
}

.offers-listing-page .offers-listing-card__content .eq-description {
    display: block;
    max-width: none;
    margin: 0 0 28px;
    overflow: visible;
    color: var(--offers-muted);
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 0.92rem;
    line-height: 1.75;
    text-align: left;
    -webkit-line-clamp: unset;
}

.offers-listing-page .offers-listing-card__link {
    position: relative;
    display: inline-block;
    width: fit-content;
    margin-top: auto;
    padding-bottom: 5px;
    border: 0;
    color: #111;
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.offers-listing-page .offers-listing-card__link::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--offers-gold);
}

.offers-listing-page .offers-listing-nav {
    position: absolute;
    top: 50%;
    z-index: 30;
    transform: translateY(-50%);
}

.offers-listing-page .offers-listing-nav--prev {
    left: -82px;
}

.offers-listing-page .offers-listing-nav--next {
    right: -82px;
}

.offers-listing-page .offers-listing-count {
    display: block;
    margin-top: 36px;
    color: #888;
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-align: center;
    text-transform: uppercase;
}

.offers-listing-page .offers-listing-empty {
    width: 100%;
    padding: 60px 20px;
    color: var(--offers-muted);
    text-align: center;
}

@media (max-width: 1180px) {
    .offers-listing-page .offers-listing-section {
        width: min(1000px, calc(100% - 120px));
    }

    .offers-listing-page .offers-listing-card {
        flex-basis: calc((100% - 30px) / 2);
        width: calc((100% - 30px) / 2);
        min-width: calc((100% - 30px) / 2);
    }

    .offers-listing-page .offers-listing-track {
        gap: 30px;
    }

    .offers-listing-page .offers-listing-nav--prev {
        left: -60px;
    }

    .offers-listing-page .offers-listing-nav--next {
        right: -60px;
    }
}

@media (max-width: 900px) {
    .offers-listing-page .meetings-hero__arrow {
        width: 48px;
        height: 48px;
    }

    .offers-listing-page .meetings-hero__arrow--prev {
        left: 16px;
    }

    .offers-listing-page .meetings-hero__arrow--next {
        right: 16px;
    }

    .offers-listing-page .intro-section {
        padding: 80px 6% 60px;
    }

    .offers-listing-page .offers-listing-tabs {
        justify-content: flex-start;
        gap: 24px;
    }

    .offers-listing-page .offers-listing-section {
        width: 100%;
        padding: 48px 58px 38px;
    }

    .offers-listing-page .offers-listing-track {
        gap: 0;
    }

    .offers-listing-page .offers-listing-card {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        min-height: auto;
    }

    .offers-listing-page .offers-listing-card__image {
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .offers-listing-page .offers-listing-card__content {
        padding: 28px 26px 32px;
    }

    .offers-listing-page .offers-listing-card__content .eq-title {
        min-height: 0;
    }

    .offers-listing-page .offers-listing-nav {
        width: 46px;
        height: 46px;
    }

    .offers-listing-page .offers-listing-nav--prev {
        left: 5px;
    }

    .offers-listing-page .offers-listing-nav--next {
        right: 5px;
    }
}
/* ==========================================================
   Offer Detail FAQ Accordion
   Uses the accommodation accordion interaction pattern.
========================================================== */

.offer-faq {
    max-width: 1320px;
    margin-right: auto;
    margin-bottom: 90px;
    margin-left: auto;
}

.offer-faq .amenities-section-title {
    margin: 0 0 64px;
    color: #777;
    font-family: 'Libertinus Math', serif;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.32em;
    text-align: center;
    text-transform: uppercase;
}

.offer-faq__list {
    border-top: 1px solid #777;
}

.offer-faq__item {
    border-bottom: 1px solid #777;
}

.offer-faq__trigger {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 31px 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
    appearance: none;
}

.offer-faq__trigger:focus-visible {
    outline: 1px solid var(--eq-gold, #c9a961);
    outline-offset: 6px;
}

.offer-faq__question {
    color: #777;
    font-family: 'Libertinus Math', serif;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.38em;
    text-transform: uppercase;
}

.offer-faq__icon {
    display: inline-flex;
    width: 24px;
    flex: 0 0 24px;
    align-items: center;
    justify-content: center;
    color: #777;
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.offer-faq__item.open .offer-faq__icon {
    color: var(--eq-gold, #c9a961);
    transform: rotate(45deg);
}

.offer-faq__panel {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition:
        max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease,
        visibility 0s linear 0.45s;
}

.offer-faq__item.open .offer-faq__panel {
    visibility: visible;
    opacity: 1;
    transition:
        max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease,
        visibility 0s linear 0s;
}

.offer-faq__content {
    width: 100%;
    max-width: none;
    padding: 0 48px 30px 18px;
    color: #777;
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.9;
    letter-spacing: 0.08em;
}

.offer-faq__content p {
    margin: 0 0 14px;
}

.offer-faq__content p:last-child {
    margin-bottom: 0;
}

.offer-faq__content ul,
.offer-faq__content ol {
    display: block;
    margin: 0 0 0 28px;
    padding-left: 18px;
    list-style-position: outside;
}

.offer-faq__content ul {
    list-style-type: disc;
}

.offer-faq__content ol {
    list-style-type: decimal;
}

.offer-faq__content li {
    display: list-item;
    margin-bottom: 9px;
}

.offer-faq__content li::marker {
    color: #777;
    font-size: 0.7rem;
}

.offer-faq__content .detail-sub-list {
    margin-top: 8px;
    padding-left: 0;
    list-style: none;
}

.offer-faq__content .detail-sub-list li {
    position: relative;
    padding-left: 18px;
    list-style: none;
}

.offer-faq__content .detail-sub-list li::before {
    content: '-';
    position: absolute;
    top: 0;
    left: 0;
    color: #777;
}

@media (max-width: 760px) {
    .offer-faq {
        margin-bottom: 64px;
    }

    .offer-faq .amenities-section-title {
        margin-bottom: 42px;
    }

    .offer-faq__trigger {
        gap: 18px;
        padding: 24px 0;
    }

    .offer-faq__question {
        font-size: 0.8rem;
        letter-spacing: 0.24em;
    }

    .offer-faq__content {
        padding: 0 0 26px;
        font-size: 0.95rem;
        line-height: 1.9;
    }
}

/* ==========================================================
   Shared Accommodation and Offers FAQ
   One design and one interaction for both detail pages.
========================================================== */

.amenities-section {
    width: 100%;
    /* max-width: 860px; */
    /* margin-right: auto;
    margin-bottom: 90px;
    margin-left: auto; */
}

.amenities-section-title {
    margin: 0 0 64px;
    color: #777;
    font-family: 'Libertinus Math', serif;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.32em;
    text-align: center;
    text-transform: uppercase;
}

.amenities-list {
    width: 100%;
    border-top: 1px solid #777;
}

.amenity-row {
    width: 100%;
    border-bottom: 1px solid #777;
}

.amenity-header {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 31px 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
    appearance: none;
    user-select: none;
}

.amenity-header:focus,
.amenity-header:focus-visible {
    outline: none;
    box-shadow: none;
}

.amenity-name {
    color: #777;
    font-family: 'Libertinus Math', serif;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.38em;
    text-transform: uppercase;
}

.amenity-toggle {
    display: inline-flex;
    width: 24px;
    flex: 0 0 24px;
    align-items: center;
    justify-content: center;
    color: #777;
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.amenity-row.open .amenity-toggle {
    color: var(--eq-gold, #c9a961);
    transform: rotate(45deg);
}

.amenity-body {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition:
        max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease,
        visibility 0s linear 0.45s;
}

.amenity-row.open .amenity-body {
    max-height: 2000px;
    visibility: visible;
    opacity: 1;
    transition:
        max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease,
        visibility 0s linear 0s;
}

.amenity-content,
.amenity-content.eq-description {
    width: 100%;
    max-width: none;
    padding: 0 0 30px;
    color: #777;
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 0.02em;
    text-align: left;
}

.amenity-content p {
    margin: 0 0 14px;
}

.amenity-content p:last-child {
    margin-bottom: 0;
}

.amenity-content ul,
.amenity-content ol {
    margin: 0;
    padding: 0;
    list-style: none !important;
}

.amenity-content li {
    display: block !important;
    margin: 0 0 9px;
    padding: 0 !important;
    list-style: none !important;
}

.amenity-content li::before,
.amenity-content li::marker {
    content: none !important;
}

.amenity-content .detail-sub-list {
    margin-top: 8px;
    padding: 0 !important;
    list-style: none !important;
}

@media (max-width: 760px) {
    .amenities-section {
        max-width: none;
        margin-bottom: 64px;
    }

    .amenities-section-title {
        margin-bottom: 42px;
    }

    .amenity-header {
        gap: 18px;
        padding: 24px 0;
    }

    .amenity-name {
        font-size: 0.8rem;
        letter-spacing: 0.24em;
    }

    .amenity-content,
    .amenity-content.eq-description {
        padding-bottom: 26px;
        font-size: 0.95rem;
        line-height: 1.9;
    }
}

/* ==========================================================
   Shared FAQ Width and Offer Navigation Alignment
========================================================== */


.offer-nav-row {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: clamp(34px, 6vw, 88px);
    margin-top: 70px;
    text-align: center;
}

.offer-nav-link {
    display: inline-flex;
    min-width: 150px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0;
    color: #1a1a1a;
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 5px;
    text-decoration: none !important;
    text-transform: uppercase;
    white-space: nowrap;
}

.offer-nav-link span {
    display: inline-block;
}

.offer-nav-link i {
    flex: 0 0 auto;
    color: var(--eq-gold, #c9a961);
    font-size: 13px;
}

.offer-nav-link--disabled {
    opacity: 0.35;
    pointer-events: none;
}

@media (max-width: 900px) {
    .amenities-section {
        width: calc(100% - 64px);
    }

    .offer-nav-row {
        gap: 30px;
        margin-top: 56px;
    }

    .offer-nav-link {
        min-width: 128px;
        font-size: 10px;
        letter-spacing: 3px;
    }
}

@media (max-width: 600px) {
    .amenities-section {
        width: calc(100% - 0px);
    }

    .offer-nav-row {
        gap: 18px;
    }

    .offer-nav-link {
        min-width: 0;
        font-size: 9px;
        letter-spacing: 2.4px;
    }
}

/* Shared detail grid: three columns with balanced incomplete rows. */
.eq-hero-slider--horizontal .eq-hero-slider__track {
    position: relative;
    inset: auto;
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform .8s ease;
    will-change: transform;
}

.eq-hero-slider--horizontal .eq-hero-slider__slide {
    position: relative;
    inset: auto;
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible;
}

.details-section {
    margin-bottom: 150px;
}

.details-section-title,
.amenities-section-title {
    margin: 0 0 64px;
    color: #777;
    font-family: 'Libertinus Math';
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: .32em;
    text-align: center;
    text-transform: uppercase;
}

.details-list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 42px;
    align-items: stretch;
    max-width: 1180px;
    margin: 0 auto;
}

.detail-row {
    display: flex;
    grid-column: span 2;
    flex-direction: column;
    min-height: 190px;
    height: 100%;
    padding-top: 30px;
    border-top: 1px solid #777;
}

.details-list--remainder-1 .detail-row:last-child {
    grid-column: span 6;
}

.details-list--remainder-2 .detail-row:nth-last-child(-n + 2) {
    grid-column: span 3;
}

.detail-row-header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.detail-row-icon {
    flex: 0 0 18px;
    width: 18px;
    color: #666;
    font-size: .82rem;
    text-align: center;
}

.detail-row-title {
    margin: 0;
    color: #777;
    font-size: .82rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.detail-row-text {
    flex: 1;
    max-width: 100%;
    padding-left: 34px;
    color: #777;
    font-size: .95rem;
    line-height: 1.8;
    letter-spacing: .06em;
}

.detail-row-text ul {
    margin: 0;
    padding-left: 18px;
    list-style: disc outside;
    text-align: left;
}

.detail-row-text li {
    margin-bottom: 10px;
    color: var(--eq-muted, #777);
    line-height: 1.8;
    letter-spacing: .08em;
    text-align: left;
}

.detail-row-text ul ul,
.detail-row-text .detail-sub-list {
    margin-top: 8px;
    padding-left: 0;
    list-style: none;
}

.detail-row-text ul ul li,
.detail-row-text .detail-sub-list li {
    position: relative;
    margin-bottom: 6px;
    padding-left: 18px;
    letter-spacing: .06em;
}

.detail-row-text ul ul li::before,
.detail-row-text .detail-sub-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--eq-muted, #777);
    content: '-';
}

@media (max-width: 900px) {
    .detail-row,
    .details-list--remainder-2 .detail-row:nth-last-child(-n + 2) {
        grid-column: span 3;
    }

    .details-list .detail-row:nth-child(odd):last-child,
    .details-list--remainder-1 .detail-row:last-child {
        grid-column: span 6;
    }
}

@media (max-width: 600px) {
    .detail-row,
    .details-list--remainder-1 .detail-row:last-child,
    .details-list--remainder-2 .detail-row:nth-last-child(-n + 2) {
        grid-column: span 6;
    }

    .detail-row-text {
        padding-left: 0;
    }
}

/* ==========================================================
   Homepage Accommodation Mobile Swipe
========================================================== */
@media (max-width: 768px) {
    .accom__viewport {
        overflow: hidden;
        touch-action: pan-y;
        overscroll-behavior-x: contain;
    }

    .accom__track {
        will-change: transform;
        touch-action: pan-y;
        user-select: none;
        -webkit-user-select: none;
        -webkit-touch-callout: none;
    }

    .accom__panel {
        flex: 0 0 100%;
        width: 100%;
    }

    .accom__panel img {
        pointer-events: none;
        user-select: none;
        -webkit-user-select: none;
        -webkit-user-drag: none;
    }
}

/* ==========================================================
   Homepage Accommodation Mobile 16:9 Swipe Cards
   Keeps the desktop-style title/content position at the bottom.
========================================================== */
@media (max-width: 768px) {
    .accom__viewport {
        overflow: hidden;
        touch-action: pan-y;
        overscroll-behavior-x: contain;
    }

    .accom__track {
        height: auto;
        will-change: transform;
        touch-action: pan-y;
        user-select: none;
        -webkit-user-select: none;
        -webkit-touch-callout: none;
    }

    .accom__panel {
        position: relative;
        flex: 0 0 100%;
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }

    .accom__panel picture {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
    }

    .accom__panel picture img,
    .accom__panel > img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        pointer-events: none;
        user-select: none;
        -webkit-user-select: none;
        -webkit-user-drag: none;
    }

    .accom__panel::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 25%,
            rgba(0, 0, 0, 0.86) 100%
        );
    }

    .accom__overlay {
        position: absolute;
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 22px 24px;
        color: #fff;
    }

    .accom__room-title {
        margin: 0;
        font-size: clamp(1.35rem, 6vw, 2rem);
        line-height: 1.1;
    }

    .accom__room-desc {
        display: none;
    }

    .accom__nav {
        display: none;
    }
}

/* ==========================================================
   Mobile Accommodation Slider
   Matches the compact Dining slider behaviour.
   Desktop styles remain unchanged.
========================================================== */
@media (max-width: 768px) {
    .accom {
        padding: 64px 0 0;
        overflow: hidden;
    }

    .accom__header {
        padding: 0 20px 34px;
        text-align: center;
    }

    .accom__header .label {
        margin-bottom: 10px;
        font-size: 9px;
        letter-spacing: 4px;
    }

    .accom__header .section-heading {
        margin: 0;
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.1;
    }

    .accom__viewport {
        position: relative;
        width: 100%;
        overflow: hidden;
        touch-action: pan-y;
    }

    .accom__track {
        display: flex;
        width: 100%;
        height: auto;
        transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
        will-change: transform;
        touch-action: pan-y;
        user-select: none;
        -webkit-user-select: none;
        -webkit-touch-callout: none;
    }

    .accom__panel {
        position: relative;
        flex: 0 0 100%;
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        background: #111;
    }

    .accom__panel picture,
    .accom__panel picture img,
    .accom__panel > img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
    }

    .accom__panel picture img,
    .accom__panel > img {
        object-fit: cover;
        object-position: center;
        pointer-events: none;
        user-select: none;
        -webkit-user-select: none;
        -webkit-user-drag: none;
    }

    .accom__panel::after {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.03) 0%,
            rgba(0, 0, 0, 0.16) 45%,
            rgba(0, 0, 0, 0.78) 100%
        );
    }

    .accom__overlay {
        position: absolute;
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
        padding: 20px 22px;
        color: #fff;
    }

    .accom__room-badge {
        margin: 0;
        font-size: 8px;
        letter-spacing: 3px;
    }

    .accom__room-title {
        margin: 0;
        font-size: clamp(1.35rem, 6.3vw, 2rem);
        line-height: 1.08;
        letter-spacing: 0.05em;
    }

    .accom__room-desc {
        display: none;
    }

    .accom__overlay .text-link-white {
        margin-top: 2px;
        font-size: 9px;
        letter-spacing: 3px;
    }

    .accom__nav {
        display: none;
    }

    .accom__dots {
        position: static;
        display: flex;
        justify-content: center;
        gap: 8px;
        padding: 14px 0 18px;
        background: #fff;
    }
}
@media (max-width: 760px) {
    .accommodation-hero {
        height: 55svh !important;
        min-height: 420px !important;
        max-height: 580px !important;
    }

}
/* ==========================================================
   Accommodation Show Page Mobile Hero
========================================================== */

@media (max-width: 760px) {
    .eq-hero-slider.eq-hero-slider--horizontal.accommodation-show-hero {
        height: 55svh !important;
        min-height: 420px !important;
        max-height: 580px !important;
        overflow: hidden;
        background: #000;
    }

    .accommodation-show-hero .eq-hero-slider__track {
        height: 100%;
    }

    .accommodation-show-hero .eq-hero-slider__slide {
        height: 100%;
    }

    .accommodation-show-hero .eq-hero-slider__slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .accommodation-show-hero .eq-hero-slider__content {
        bottom: 28px;
    }

    .accommodation-show-hero .eq-hero-slider__nav--prev {
        left: 12px;
    }

    .accommodation-show-hero .eq-hero-slider__nav--next {
        right: 12px;
    }
}
