html,
body {
    overflow-x: hidden;
    width: 100%;
}

.rooms-gallery .rooms-list,
.mobile-grid,
.sidebar {
    max-width: 100vw;
    overflow-x: hidden;
}

@media (max-width: 1500px) {

    .navbar {
        display: flex;
        align-items: center;
        padding: 1.5rem;
        gap: 0;
        justify-content: space-between;
    }

    .navbar .logo img {
        width: clamp(80px, 30vw, 300px);
    }

    .nav-options {
        display: none;
    }

    .nav-toggle {
        display: none;
    }

    .nav-buttons {
        order: 2;
        display: flex;
        align-items: center;
        gap: clamp(0.5rem, 2vw, 1rem);
        margin-left: auto;
        margin-right: 1rem;
        flex: 0 0 auto;
    }

    .hamburger {
        color: #fff;
        width: 30px;
        height: 24px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
    }

    .hamburger-container {
        display: flex;
        order: 3;
        flex: 0 0 auto;
        min-width: 0;
        justify-content: flex-end;
        align-items: center;
        margin-left: clamp(0.2rem, 1vw, 0.4rem);
    }

    .hamburger span {
        display: block;
        height: 3px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .nav-toggle:checked~.sidebar {
        top: 0;
    }

    .nav-toggle:checked~.navbar .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .nav-toggle:checked~.navbar .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked~.navbar .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .sidebar {
        display: block;
        position: fixed;
        top: -140%;
        width: 100%;
        height: 100%;
        max-height: -webkit-fill-available;
        background: rgba(0, 0, 0, 0.9);
        padding-top: 4rem;
        transition: top 0.3s ease;
        z-index: 6;
    }

    .sidebar ul {
        padding: 0;
        list-style: none;
        height: auto;
        margin: 0;
    }

    .sidebar-links {
        display: flex;
        flex-direction: column;
        gap: clamp(1rem, 3vh, 2rem);
        padding: clamp(2rem, 4vh, 3.5rem);
        align-items: flex-start;
        height: auto;
    }

    .sidebar-links a {
        font-family: 'Montserrat', sans-serif;
        color: white;
        text-decoration: none;
        background: none;
        border: none;
        text-align: left;
        font-size: clamp(1.3rem, 4vw, 1.5rem);
        padding: clamp(0.75rem, 2vh, 1rem) clamp(0.75rem, 3vw, 1.5rem);
        transition: color 0.3s ease;
    }

    .sidebar-links a:hover {
        color: #D4AF37;
    }

    .sidebar .dropdown-content {
        display: flex;
        flex-direction: column;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: none;
    }

    .sidebar-links,
    .sidebar-links ul,
    .dropdown-content {
        list-style: none;
    }

    .sidebar-links,
    .sidebar-links ul,
    .sidebar-links li,
    .dropdown-content {
        pointer-events: none;
    }

    .dropdown-content li {
        padding: 0rem 2rem;
    }

    .sidebar-links a,
    .dropdown-content a {
        pointer-events: auto;
        display: inline-block;
        padding: 0.75rem 1rem;
    }

    .dropdown-content a:hover {
        background: none;
    }

    .sidebar .dropdown:hover .dropdown-content {
        transform: none;
        left: auto;
    }

    .grid2 {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto auto;
    }

    .div4 {
        grid-column: 1;
        grid-row: 1;
    }

    .div5 {
        grid-column: 2;
        grid-row: 1;
    }

    .div7 {
        grid-column: 1 / span 2;
        grid-row: 2;
        height: 45vh;
    }

    .div7 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}

@media only screen and (max-width: 1200px) {


    .desktop-grid {
        display: none;
    }

    .mobile-grid {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .mobile-grid>div {
        width: 100%;
        height: clamp(300px, 50vh, 600px);
        position: relative;
        overflow: hidden;
    }

    .mobile-grid .div1 {
        height: clamp(450px, 90vh, 900px) !important;
        position: relative;
        order: -1;
    }

    .mobile-grid .div1::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
        pointer-events: none;
    }

    .mobile-grid .div1 img {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
    }

    .mobile-grid img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .mobile-grid .div4,
    .mobile-grid .div5 {
        min-height: 0;
    }

    .mobile-grid .div5,
    .mobile-grid .div11 {
        background-color: #D4AF37;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: clamp(1rem, 5vw, 2rem) clamp(0.75rem, 3vw, 1rem);
        height: clamp(200px, 30vh, 400px);
        width: 100% !important;
        max-width: 100vw;
        box-sizing: border-box;
        overflow: hidden;
    }

    .mobile-grid .div5 h5,
    .mobile-grid .div11 h5 {
        font-family: 'Montserrat', sans-serif;
        font-size: clamp(0.85rem, 3vw, 1rem);
        font-weight: 300;
        color: white;
        margin: 0 0 clamp(0.5rem, 3vh, 1rem) 0;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }

    .mobile-grid .div5 p,
    .mobile-grid .div11 p {
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
        font-weight: 300;
        color: white;
        text-align: center;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
        overflow-wrap: break-word;
    }

    #nyt {
        height: auto;
        width: 50%;
    }

    #forbes {
        height: auto;
        width: 25%;
    }

    #elle {
        height: auto;
        width: 25%;
    }

    .mobile-grid img:not(.press-logo) {
        cursor: pointer;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .mobile-grid img:not(.press-logo):active {
        transform: scale(0.98);
        opacity: 0.8;
        transition: transform 0.1s ease, opacity 0.1s ease;
    }

    .mobile-grid .div2,
    .mobile-grid .div3,
    .mobile-grid .div4,
    .mobile-grid .div6,
    .mobile-grid .div7,
    .mobile-grid .div8,
    .mobile-grid .div9,
    .mobile-grid .div10,
    .mobile-grid .div12,
    .mobile-grid .div13 {
        position: relative;
    }

    .mobile-grid .div2:active::after,
    .mobile-grid .div3:active::after,
    .mobile-grid .div4:active::after,
    .mobile-grid .div6:active::after,
    .mobile-grid .div7:active::after,
    .mobile-grid .div8:active::after,
    .mobile-grid .div9:active::after,
    .mobile-grid .div10:active::after,
    .mobile-grid .div12:active::after,
    .mobile-grid .div13:active::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 2em;
        height: 2em;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2em' height='2em' viewBox='0 0 14 14'%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M1.25 6a4.75 4.75 0 1 1 9.5 0a4.75 4.75 0 0 1-9.5 0M6 0a6 6 0 1 0 3.266 11.034l2.6 2.6a1.25 1.25 0 0 0 1.768-1.768l-2.6-2.6A6 6 0 0 0 6 0' clip-rule='evenodd'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        z-index: 3;
        opacity: 0.8;
        pointer-events: none;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8));
    }

    #gallery-modal .gallery-modal-panel {
        max-width: clamp(200px, 65vh, 1000px);
        max-height: clamp(200px, 65vh, 1200px);
    }

    .gallery-carousel {
        height: clamp(200px, 65vh, 1200px);
    }

    .wellness-content-wrapper {
        display: flex;
        flex-direction: column;
        gap: .25rem;
        width: 100%;
    }

    .wellness-content-wrapper .wellness-text-content {
        display: contents;
        opacity: 0;
        transform: translateY(30px);
    }

    .wellness-info .info-text-header {
        order: 1;
        text-align: center;
        margin: 0.5rem auto;
    }

    .wellness-info .info-text-header h3 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .wellness-info .info-text-header hr {
        margin: 0.5rem auto;
    }

    .wellness-content-wrapper .info-image {
        order: 3;
        max-width: clamp(320px, 90vw, 720px);
        min-height: clamp(320px, 70vw, 560px);
        margin: clamp(1.5rem, 5vw, 3rem) auto;
        flex: 0 0 auto;
    }

    .wellness-content-wrapper .info-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .wellness-info .info-text-body {
        order: 2;
        text-align: center;
    }

    .wellness-info .info-text-body p {}

    .wellness-content-wrapper.reverse {
        flex-direction: column;
    }

    .wellness-content-wrapper.reverse .info-image {
        order: 2;
    }

    .wellness-content-wrapper.reverse .wellness-info .info-text-header,
    .wellness-content-wrapper.reverse .wellness-info .info-text-body {
        text-align: center;
    }

    .wellness-faq {
        padding: clamp(1rem, 4vw, 2rem) clamp(1rem, 3vw, 1.5rem);
        gap: clamp(1rem, 4vw, 2rem);
    }

    .wellness-faq .info-box {
        padding: clamp(1rem, 4vw, 2rem) clamp(1rem, 3vw, 1.5rem);
        width: 80%;
        min-height: 23vh;
    }

    .wellness-faq .info-box h3 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

    .wellness-faq .info-box p {
        font-size: clamp(0.8rem, 3.5vw, 1rem);
        line-height: clamp(1.4, 1.5, 1.6);
    }

    .wellness-faq .info-box ul li {
        font-size: clamp(.5rem, 3.5vw, .8rem);
    }

    .wellness-faq .info-box-options a {
        font-size: clamp(1rem, 3.5vw, 1.3rem);
    }

    .press-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .filter-controls {
        width: 100%;
        margin: 2rem 0rem 0rem;
    }

    .filter-controls button {
        font-size: clamp(0.8rem, 1vw, 1rem);
        padding: clamp(0.5rem, 1.5vw, 0.8rem) clamp(0.6rem, 2.5vw, 1.2rem);
    }

    .explore-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(clamp(220px, 25%, 1fr), 1fr));
        grid-gap: clamp(0.5rem, 1vw, 1rem);
    }

    .grid-item--large,
    .grid-item--wide {
        grid-column: span 2;
    }

    .grid-item--tall {
        grid-row: span 2;
    }

    .testimonial {
        width: 380px;
    }

    .testimonial-quote {
        font-size: clamp(1rem, 1.2vw, 1.25rem);
    }

    .testimonials-wrapper {
        position: absolute;
        left: 0;
        right: 0;
        top: 75%;
        width: 90%;
        margin: 0 auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(.6rem, 1.2vw, 1rem);
        z-index: 4;
    }

    .services-block {
        width: 95%;
        padding: 1rem 0rem 0rem 0rem;
    }

    .services-block .info-box {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .services-block .info-box .amenities-header h3 {
        font-size: 2.5vh;
        text-align: center;
    }

    .services-block .info-box .amenities-header h5 {
        font-size: 1.4vh;
        text-align: center;
    }

    .services-block .info-box ul li {
        font-size: 1.3vh;
    }

    .services-block .amenities-container {
        order: 1;
        flex: 1;
        display: flex;
        flex-direction: column;
        padding: 0rem 1rem;
    }

    .services-block .amenities-header {
        order: 1;
    }

    .services-block .info-box ul {
        order: 3;
        margin-top: 1.5rem;
        margin-bottom: 0;
    }

    .services-block .amenities-carousel-wrapper {
        order: 2;
        flex: 1;
        width: 70%;
    }
}

@media only screen and (max-width: 900px) {
    .rooms-gallery .rooms-list {
        grid-template-columns: 1fr;
        gap: clamp(1rem, 4vw, 1.5rem);
        flex-direction: row;
        flex-wrap: wrap;
        overflow-x: visible;
        overflow-y: visible;
        display: grid;
    }

    .rooms-gallery .room-item {
        min-width: auto;
        max-width: none;
        flex: none;
    }

    .rooms-gallery .rooms-list::-webkit-scrollbar {
        display: none;
    }

    .rooms-gallery .rooms-list {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

@media only screen and (max-width: 768px) {

    .navbar {
        padding: clamp(1rem, 2.5vw, 1.5rem);
        gap: clamp(0.5rem, 2vw, 1rem);
    }

    .logo {
        justify-content: flex-start;
        order: 1;
        padding: 0;
        margin-top: clamp(0.25rem, 1.5vw, 0.5rem);
        width: clamp(240px, 60vw, 420px);
    }

    .navbar .logo img {
        width: clamp(180px, 50vw, 320px);
        height: auto;
    }

    .hamburger-container {
        display: flex;
        order: 3;
        flex: 0 0 auto;
        min-width: 0;
        justify-content: flex-end;
        align-items: center;
        margin-left: clamp(0.25rem, 1.5vw, 0.5rem);
    }

    .nav-buttons {
        order: 2;
        flex: 0 .5 auto;
        min-width: 0;
        justify-content: flex-end;
        display: flex;
        border: none;
        padding-right: clamp(0.25rem, 1.5vw, 0.5rem);
        border-right: clamp(1px, 0.5vw, 2px) solid #ffffff;
        margin-right: 0rem;
    }

    .nav-buttons button {
        padding: clamp(0.4rem, 2vw, 0.5rem) clamp(0.5rem, 2.5vw, 0.7rem);
        font-size: clamp(0.8rem, 3vw, 0.9rem);
    }

    .nav-buttons button:nth-of-type(2) {
        display: none;
    }

    #rooms-bg-video,
    #wellness-bg-video {
        height: clamp(45vh, 55vh, 75vh);
    }

    #index.content {
        max-width: clamp(80%, 85%, 90%);
        margin: 0 auto;
        padding: clamp(1rem, 5vw, 2rem) clamp(0.5rem, 2vw, 1rem) clamp(10%, 15%, 20%);
        text-align: center;
    }

    #index.content h2 {
        font-size: clamp(2rem, 7vw, 3rem);
        margin-bottom: clamp(0.5rem, 3vw, 1rem);
        transform-origin: center;
    }

    #index.content a {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }

    .rooms main,
    .wellness main {
        height: 50vh;
        min-height: 50vh;
    }

    #primary.content,
    #secondary.content {
        height: 55vh;
        min-height: 15vh;
    }

    #primary.content h2,
    #secondary.content h2 {
        font-size: 10vw;
        margin-bottom: clamp(0.5rem, 3vw, 1rem);
        padding: 0 2rem;
    }

    #primary.content p,
    #secondary.content p {
        font-size: 3.5vw;
        padding: 0 clamp(0.5rem, 3vw, 1rem);
        margin: 0;
        margin-top: clamp(0.25rem, 1.5vw, 0.5rem);
        max-width: clamp(280px, 85%, 500px);
        margin-left: auto;
        margin-right: auto;
    }

    #primary.content button {
        margin-top: 1.5rem;
    }

    .hero-background {
        width: 100%;
    }

    #index-hero > main:nth-child(4) {
        min-height: 85vh;
    }

    .rooms-gallery h3 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

    .rooms-gallery h4 {
        font-size: clamp(0.8rem, 3vw, 0.9rem);
        margin-top: clamp(0.5rem, 2.5vw, 1rem);
    }

    .rooms-gallery p {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
        margin-top: clamp(0.25rem, 1.5vw, 0.5rem);
        margin-bottom: clamp(1rem, 4vw, 2rem);
    }

    .rooms-gallery .rooms-list {
        grid-template-columns: 1fr;
        gap: clamp(1rem, 4vw, 1.5rem);
    }

    .room-end-card {
        height: auto;
    }

    .btn {
        padding: clamp(0.4rem, 2.5vw, 0.6rem) clamp(0.6rem, 3vw, 0.8rem);
        font-size: clamp(0.85rem, 3.5vw, 0.95rem);
    }

    .wellness .btn {
        padding: clamp(0.6rem, 2.5vw, 0.8rem) clamp(0.8rem, 3vw, 1rem);
        font-size: clamp(0.85rem, 3.5vw, 0.95rem);
    }

    .wellness-info {
        margin-bottom: 0;
        padding: 1rem;
        gap: 1rem;
    }

    #spa-policy-modal .modal-body h5 {
        margin-top: 0;
    }

    .services-block .info-box .amenities-header h3 {
        font-size: 7vw;
        text-align: center;
    }

    .services-block .info-box .amenities-header h5 {
        font-size: 4vw;
        text-align: center;
        margin: 0;
    }

    .services-block .info-box ul li {
        font-size: 4vw;
    }

    .services-block .info-box .amenities-header h5 {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        text-align: center;
    }

    .services-block .info-box ul li {
        font-size: clamp(0.85rem, 3vw, 1rem);
    }

    .services-block .amenities-carousel-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .modal-panel .btn-modal,
    .room-detail-main .btn-modal {
        width: auto;
        padding: 1rem 4rem;
        margin-top: .5rem;
        margin-bottom: 2rem;
    }

    .amenities-carousel {
        height: clamp(250px, 40vh, 400px);
    }

    .amenities-carousel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .modal {
        max-width: 100%;
        height: 100%;
    }

    .modal-panel {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        padding: 0;
        margin: 0;
        border-radius: 0;
        overflow-y: auto;
        box-sizing: border-box;
    }

    .modal-media,
    .modal-body {
        flex: 0 0 auto;
        width: 100%;
    }

    #modal-room-title {
        font-size: clamp(1.4rem, 5vw, 1.6rem);
    }

    .modal-header {}

    .modal-header h4 {
        font-size: clamp(0.6rem, 3vw, 0.8rem);
    }

    .modal-more-details {
        grid-template-columns: 1fr;
        gap: clamp(1rem, 4vw, 1.5rem);
        padding: clamp(0.5rem, 3vw, 1rem);
    }

    .modal-more-details .detail-group {
        flex: 1 1 100%;
        flex-direction: column;
        width: clamp(70%, 80%, 90%);
        margin: 0 auto;
    }

    .modal-more-details .detail-title {
        flex: none;
        margin-bottom: clamp(0.15rem, 1vw, 0.25rem);
        font-size: 4.5vw;
    }

    .modal-more-details .detail-group:nth-child(n) {
        grid-column: 1;
        grid-row: auto;
    }

    .room-detail-main .modal-close {
        position: sticky;
        top: clamp(1%, 2vh, 2%);
        left: min(100%, calc(100% - clamp(2.5rem, 8vw, 3rem)));
        z-index: 10001;
        background-color: rgba(0, 0, 0, 0.6);
        color: white;
        padding: clamp(0.3rem, 2vw, 0.4rem);
        border-radius: 50%;
        width: clamp(2rem, 6vw, 2.5rem);
        height: clamp(2rem, 6vw, 2.5rem);
    }

    .modal-close svg {
        width: clamp(0.8em, 3vw, 1em);
        height: clamp(0.8em, 3vw, 1em);
    }

    .modal-close svg path {
        fill: #fff;
    }

    .carousel-prev,
    .carousel-next {
        width: 12vw;
        height: 12vw;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
    }

    .carousel-prev:hover,
    .carousel-next:hover {
        transform: translateY(-45%) scale(1.03);
    }

    .carousel-prev svg,
    .carousel-next svg {
        width: 12vw;
        height: 12vw;
    }

    .modal-carousel {
        width: 100%;
        height: clamp(300px, 70vh, 1000px);
        aspect-ratio: 3 / 4;
    }

    .carousel-track {
        width: 100%;
        position: relative;
        height: 100%;
    }

    .amenities-carousel-wrapper .carousel-track img {
        aspect-ratio: 2 / 3;
    }

    .carousel-track img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        margin: 0 auto;
    }

    .carousel-counter {
        font-size: clamp(0.8rem, 3vw, 1rem);
        padding: clamp(0.3rem, 2vw, 0.5rem) clamp(0.5rem, 3vw, 0.8rem);
    }

    #gallery-modal .modal-close {
        top: 2rem;
        right: 1rem;
    }

    .modal-panel .detail-group li {
        font-size: clamp(1rem, 4vw, 1.2em);
        line-height: clamp(1.3, 1.5, 1.6);
    }

    .modal hr {
        width: clamp(85%, 90%, 95%);
        margin: clamp(0.5rem, 3vw, 1rem) auto 0;
    }

    .modal-room-desc {
        width: 90%;
        padding: 1rem;
        font-size: clamp(0.9rem, 4vw, 1rem);
        line-height: clamp(1.4, 1.5, 1.6);
        margin-bottom: 0;
    }

    .modal-room-desc h4 {
        font-size: 6vw;
        margin-bottom: .75rem;
        margin-top: 0;
    }

    .modal-actions {
        padding: clamp(0.5rem, 3vw, 1rem);
        gap: clamp(0.5rem, 3vw, 1rem);
    }

    .modal-panel .btn-modal {
        width: 5vw;
        padding: clamp(0.6rem, 3vw, 0.8rem) clamp(0.8rem, 4vw, 1rem);
        font-size: clamp(0.85rem, 3.5vw, 0.95rem);
    }

    .room-item.hovered img {
        opacity: 0 !important;
    }

    .room-item.hovered .img-wrap::after {
        opacity: 1 !important;
    }

    .room-item.hovered h4 {
        color: #D4AF37 !important;
    }

    .room-item.hovered h3::after {
        transform: scaleX(1) !important;
    }

    .room-item.hovered .room-desc {
        opacity: 0 !important;
        visibility: hidden !important;
    }

    .room-item.hovered .action-links {
        opacity: 1 !important;
        transform: translateY(clamp(-50px, -8vw, -43px)) !important;
        pointer-events: auto !important;
    }

    .gallery-main {
        flex-direction: column;
        min-height: 100vh;
    }

    .gallery-header {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: clamp(0.5rem, 3vw, 1rem);
        padding: 0 clamp(0.5rem, 3vw, 1rem);
    }

    .gallery-header-sub {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        padding: 0.5rem clamp(0.5rem, 3vw, 1rem);
        line-height: clamp(1.3, 1.5, 1.6);
    }

    .photoCredit {
        font-size: clamp(0.8rem, 3vw, 1rem);
        padding: clamp(0.15rem, 1.5vw, 0.25rem) clamp(0.3rem, 2vw, 0.5rem);
        border-radius: clamp(4px, 2vw, 8px);
    }

    .gallery-carousel {
        height: clamp(180px, 50vh, 60vh);
    }

    #gallery-modal .carousel-counter {
        font-size: clamp(1rem, 2.5vw, 1.5rem);
    }

    #gallery-modal .carousel-prev,
    #gallery-modal .carousel-next {
        width: clamp(40px, 10vw, 50px);
        height: clamp(40px, 10vw, 50px);
    }

    .wellness-content-wrapper {
        width: 100%;
    }

    .wellness-info .info-text-header h3 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .wellness-content-wrapper .info-image {
        width: 100%;
        height: 50vh;
    }

    .wellness-content-wrapper .info-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .flavor-div .flavor-text {
        font-size: clamp(0.6rem, 4vw, 1rem);
    }

    .events-page .wellness-info {
        padding: 1rem;
    }

    .events-page .wellness-info .flavor-div {
        margin-bottom: 1rem;
        gap: 1.5rem;
    }

    .events-page .wellness-info .flavor-div .flavor-text {
        margin-bottom: 0;
    }

    .events-page .wellness-info .flavor-div #events.action-links a {
        width: 60%;
    }

    .events-page .wellness-info .info-text-header h3 {
        padding: 0 1.5rem;
    }

    #events.action-links a {
        width: 30%;
    }

    #wedding-inq .info-box {
        min-height: auto;
        height: auto;
        width: 100%;
    }

    #wedding-inq .info-box p {
        font-size: clamp(.5rem, 4vw, .9rem);
    }

    div.wellness-info:nth-child(2) {
        margin-top: 1rem;
    }

    .press-section {
        padding: 1rem 0;
    }

    .press-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .press-item {
        min-height: 200px;
    }

    .filter-controls {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0rem;
        margin: 0rem;
    }

    .filter-controls button {
        flex: 1 1 100%;
        font-size: clamp(0.9rem, 3vw, 1rem);
    }

    .room-filters {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        margin-bottom: 2rem;
        padding: 0;
    }

    .filter-btn {
        width: 100%;
        padding: clamp(0.6rem, 2.5vw, 0.8rem) clamp(0.8rem, 3vw, 1rem);
        font-size: clamp(0.9rem, 3vw, 1rem);
        box-sizing: border-box;
    }

    .explore-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-gap: clamp(0.5rem, 3vw, .5rem);
        padding: .5rem;
    }

    .explore-grid .grid-item .overlay {
        width: 85%;
        padding-top: clamp(0.5rem, 4vw, 1rem);
        padding-bottom: clamp(0.5rem, 4vw, 1rem);
        line-height: 1.2;
    }

    .explore-grid .grid-item .overlay h3 {
        font-size: clamp(0.7rem, 4vw, 1.2rem);
    }

    .explore-grid .grid-item .overlay p {
        font-size: clamp(0.6rem, 1vw, 0.9rem);
    }

    .eat-menu {
        font-size: 1.1rem;
    }

    .suggestions-grid {
        gap: 2rem;
    }

    .modal-suggestions {
        padding: 0rem;
        margin-bottom: 1rem;
    }

    .modal-suggestions .suggestion-card h3,
    .modal-suggestions .suggestion-card h4 {
        margin-left: .5rem;
    }

    #modal-suggestions>h3:nth-child(1) {
        margin: 0;
        margin-bottom: 1.5rem;
    }

    footer {
        padding: clamp(1.5rem, 4vw, 2rem) clamp(1.5rem, 5vw, 2.5rem);
    }

    .contact-info {
        align-items: center;
    }

    .contact-info a {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: clamp(0.4rem, 2.5vw, 0.75rem);
        font-size: 3.5vw;
    }

    .email-header {
        gap: clamp(0.3rem, 2vw, 0.6rem);
    }

    .email-header a {
        font-size: clamp(0.8rem, 3vw, 0.95rem);
    }

    .copyright {
        font-size: clamp(0.65rem, 2.3vw, 0.8rem);
    }

    .reveal-text .word {
        margin-right: .5rem;
    }

    .end-card-header {
        padding-top: 1rem;
    }

    .end-card-bottom-text {
        padding-bottom: 1rem;
    }

    .rooms-gallery .room-end-card p,
    .rooms-gallery .room-end-card h3 {
        margin-bottom: 1rem !important;
    }

    .room-end-card h3 {
        font-size: 5.5vw;
        padding-top: 1.5rem;
    }


}

@media screen and (max-height: 700px) {
    .sidebar-links {
        padding: 1rem;
    }

    .sidebar-links a {
        font-size: 1.2rem;
        padding: 0.5rem 0.75rem;
    }
}

@media only screen and (max-width: 480px) {

    .modal-header {
        padding: 0 0.5rem;
    }

    #modal-room-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
    }

    .modal-header h4 {
        font-size: clamp(0.6rem, 3vw, 0.8rem);
    }

    .amenities-carousel-wrapper .carousel-prev {
        left: max(5%, 0.5rem);
    }

    .amenities-carousel-wrapper .carousel-next {
        right: max(5%, 0.5rem);
    }

    .amenities-carousel-wrapper .carousel-prev,
    .amenities-carousel-wrapper .carousel-next {
        width: 10vw;
        height: 10vw;
    }

    .carousel-prev,
    .carousel-next {
        width: 12vw;
        height: 12vw;
    }

    .carousel-prev svg,
    .carousel-next svg {
        width: 7vw;
        height: 7vw;
    }

    .modal-more-details {
        margin-bottom: 1.5rem;
    }

    .modal-more-details .detail-group {
        width: 95%;
        padding: 0;
    }

    .modal-more-details .detail-list li {
        font-size: 4vw;
        width: 93%;
    }

    .modal-room-desc {
        font-size: clamp(0.9rem, 4vw, 1rem);
    }

    .modal-panel .btn-modal {
        width: clamp(120px, 50%, 200px);
        padding: clamp(0.6rem, 3vw, 1rem);
        font-size: clamp(0.9rem, 4vw, 1rem);
    }

    .press-logos-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .footer-logo {
        width: 100%;
    }
}