/* =========================================================
   0. FONT
========================================================= */
@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/cormorant-garamond/CormorantGaramond-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/cormorant-garamond/CormorantGaramond-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/cormorant-garamond/CormorantGaramond-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/cormorant-garamond/CormorantGaramond-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope/Manrope-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope/Manrope-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope/Manrope-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope/Manrope-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* =========================================================
   1. ROOT / TOKENS
========================================================= */
:root {
    --domu-title-font: "Cormorant Garamond", Georgia, serif;
    --domu-body-font: "Manrope", Arial, Helvetica, sans-serif;

    --domu-text: #1f1f1f;
    --domu-muted: #6c757d;
    --domu-bg: #ffffff;
    --domu-soft: #f8f9fa;
    --domu-soft-2: #f5f3ef;
    --domu-border: #e9ecef;
    --domu-shadow: 0 18px 40px rgba(0, 0, 0, .08);
    --domu-shadow-soft: 0 10px 24px rgba(0, 0, 0, .06);
    --domu-dark: #111827;
    --domu-overlay: rgba(17, 24, 39, .45);
    --domu-radius: 1.25rem;

    --domu-title-color: #111827;
    --domu-accent: #b58a52;

    --domu-header-height: 84px;
    --domu-header-height-mobile: 72px;
    --domu-header-logo-max-height: 96px;
    --domu-header-logo-max-height-mobile: 64px;
    --domu-mobile-menu-width: min(92vw, 380px);

    --social-facebook: #1877f2;
    --social-instagram: #dd2a7b;
    --social-youtube: #ff0000;
    --social-x: #111111;
    --social-tripadvisor: #00aa6c;
    --social-tiktok: #111111;
}

/* =========================================================
   2. BASE
========================================================= */
html,
body {
    min-height: 100%;
    background: var(--domu-bg);
    color: var(--domu-text);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--domu-body-font);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: var(--domu-header-height);
}

body.mobile-menu-open,
body.lightbox-open {
    overflow: hidden;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.page-title,
.section-title,
.site-brand-title,
.mobile-slide-menu-title,
.room-card-title {
    font-family: var(--domu-title-font);
    color: var(--domu-title-color);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: .01em;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: var(--domu-title-font);
}

p,
li,
span,
small,
label,
input,
textarea,
select,
button,
.btn,
.nav-link,
.form-control,
.form-select,
.table,
.badge {
    font-family: var(--domu-body-font);
}

/* =========================================================
   3. SECTION HELPERS
========================================================= */
.section-eyebrow {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--domu-accent);
    margin-bottom: .9rem;
}

.section-title {
    font-size: clamp(2.3rem, 4vw, 4.2rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--domu-muted);
    font-size: 1rem;
    max-width: 760px;
}

.section-heading {
    margin-bottom: 2.5rem;
}

.home-section {
    padding: 5rem 0;
}

.home-section-soft {
    padding: 5rem 0;
    background: #faf8f5;
}

/* =========================================================
   4. HEADER / NAVBAR
========================================================= */

/* =========================================================
   4.1 HEADER WRAPPER
========================================================= */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1200;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    animation: frontendFadeDown .45s ease both;
}

.site-navbar {
    min-height: var(--domu-header-height);
    padding: 0;
}

.site-header .container {
    position: relative;
}

/* =========================================================
   4.2 DESKTOP / MOBILE STRUCTURE
========================================================= */
.site-navbar-desktop {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: .7rem;
    min-height: var(--domu-header-height);
    padding: 0;
}

.site-navbar-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    min-height: var(--domu-header-height-mobile);
    padding: 0;
}

.site-nav-side {
    min-width: 0;
}

.site-nav-side-left .site-desktop-menu {
    justify-content: flex-end;
}

.site-nav-side-right .site-desktop-menu {
    justify-content: flex-start;
}

.site-nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding-inline: .35rem;
}

/* =========================================================
   4.3 BRAND / LOGO
========================================================= */
.site-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .9rem;
    text-decoration: none;
    color: var(--domu-text);
    transition: transform .2s ease, opacity .2s ease;
    min-width: 0;
    flex-shrink: 0;
}

.site-brand:hover {
    color: var(--domu-text);
    transform: translateY(-1px);
    text-decoration: none;
}

.site-brand-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.site-brand-logo {
    display: block;
    height: auto;
    max-height: var(--domu-header-logo-max-height);
    max-width: 260px;
    object-fit: contain;
}

.site-brand-texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    min-width: 0;
    text-align: center;
}

.site-brand-title {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: .02em;
    white-space: nowrap;
}

.site-brand-subtitle {
    font-size: .82rem;
    color: var(--domu-muted);
    margin-top: .15rem;
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.site-brand-texts-no-logo .site-brand-title {
    font-size: 2rem;
}

.site-header.has-logo .site-brand-texts {
    display: none;
}

/* =========================================================
   4.4 DESKTOP MENU
========================================================= */
.site-desktop-menu {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: .08rem;
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 0;
}

.site-desktop-menu-item {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    position: relative;
    min-width: 0;
}

.site-desktop-menu-item-cta {
    margin-left: .4rem;
}

.site-desktop-menu-link {
    color: var(--domu-text);
    font-size: .88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .5rem .62rem;
    text-decoration: none;
    white-space: nowrap;
    flex-wrap: nowrap;
    transition:
        color .2s ease,
        transform .2s ease,
        opacity .2s ease,
        background-color .2s ease;
    border-radius: 999px;
    line-height: 1;
}

.site-desktop-menu-link span {
    white-space: nowrap;
    display: inline-block;
}

.site-desktop-menu-link:hover,
.site-desktop-menu-link.active {
    color: #000;
    background: rgba(0, 0, 0, .04);
    transform: translateY(-1px);
    text-decoration: none;
}

.site-desktop-menu-link i {
    font-size: .98rem;
    line-height: 1;
    flex: 0 0 auto;
}

.site-desktop-menu-caret {
    font-size: .86rem;
    transition: transform .2s ease;
}

.site-desktop-menu-item.has-dropdown:hover .site-desktop-menu-caret {
    transform: rotate(180deg);
}

/* =========================================================
   4.5 DESKTOP SUBMENU
========================================================= */
.site-desktop-submenu {
    position: absolute;
    top: calc(100% + .45rem);
    left: 0;
    min-width: 240px;
    list-style: none;
    margin: 0;
    padding: .6rem;
    background: #fff;
    border: 1px solid var(--domu-border);
    border-radius: 1rem;
    box-shadow: var(--domu-shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 20;
}

.site-nav-side-right .site-desktop-menu-item .site-desktop-submenu {
    left: auto;
    right: 0;
}

.site-desktop-menu-item.has-dropdown:hover > .site-desktop-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-desktop-submenu-item + .site-desktop-submenu-item {
    margin-top: .25rem;
}

.site-desktop-submenu-link {
    display: flex;
    align-items: center;
    gap: .55rem;
    text-decoration: none;
    color: var(--domu-text);
    padding: .7rem .8rem;
    border-radius: .85rem;
    font-size: .92rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color .2s ease, color .2s ease;
}

.site-desktop-submenu-link:hover,
.site-desktop-submenu-link.active {
    background: var(--domu-soft);
    color: #000;
    text-decoration: none;
}

/* =========================================================
   4.6 RIGHT AREA / EXTRAS
========================================================= */
.site-nav-right-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .65rem;
    min-width: 0;
}

.site-desktop-extras {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding-left: .2rem;
    flex-shrink: 0;
}

/* =========================================================
   4.7 LANGUAGE SWITCHER
========================================================= */
.site-language-dropdown {
    position: relative;
}

.site-language-current {
    min-height: 38px;
    padding: .42rem .68rem;
    border: 1px solid var(--domu-border);
    border-radius: 999px;
    background: #fff;
    color: var(--domu-text);
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    font-size: .86rem;
    font-weight: 600;
    line-height: 1;
    transition: background-color .2s ease, border-color .2s ease;
}

.site-language-current:hover {
    background: var(--domu-soft);
}

.site-language-flag-img {
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;
    border-radius: 999px;
    display: block;
    object-fit: cover;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
}

.site-language-name {
    white-space: nowrap;
}

.site-language-menu {
    position: absolute;
    top: calc(100% + .45rem);
    right: 0;
    min-width: 170px;
    list-style: none;
    margin: 0;
    padding: .45rem;
    background: #fff;
    border: 1px solid var(--domu-border);
    border-radius: 1rem;
    box-shadow: var(--domu-shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 30;
}

.site-language-dropdown:hover .site-language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-language-menu-link {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .65rem .75rem;
    border-radius: .85rem;
    text-decoration: none;
    color: var(--domu-text);
    font-size: .9rem;
    font-weight: 500;
    white-space: nowrap;
}

.site-language-menu-link:hover,
.site-language-menu-link.active {
    background: var(--domu-soft);
    text-decoration: none;
}

.site-language-current img,
.site-language-menu-link img,
.mobile-language-link img {
    max-width: none;
}

/* =========================================================
   4.8 SOCIAL DESKTOP
========================================================= */
.site-socials-desktop {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.site-social-link {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    color: var(--domu-text);
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.site-social-link:hover {
    transform: translateY(-1px);
    box-shadow: var(--domu-shadow-soft);
    text-decoration: none;
}

.site-social-link.is-facebook {
    color: var(--social-facebook);
}

.site-social-link.is-instagram {
    color: var(--social-instagram);
}

.site-social-link.is-youtube {
    color: var(--social-youtube);
}

.site-social-link.is-x {
    color: var(--social-x);
}

.site-social-link.is-tripadvisor {
    color: var(--social-tripadvisor);
}

.site-social-link.is-tiktok {
    color: var(--social-tiktok);
}

/* =========================================================
   4.9 CTA / BOOK BUTTON
========================================================= */
.site-book-btn {
    border-radius: 999px;
    padding: .7rem .95rem;
    font-weight: 700;
    white-space: nowrap;
    line-height: 1;
    transition: transform .2s ease, box-shadow .2s ease;
}

.site-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--domu-shadow-soft);
}

/* =========================================================
   4.10 MOBILE TOGGLE
========================================================= */
.site-mobile-toggle {
    width: 42px;
    height: 42px;
    border: 0;
    box-shadow: none;
    border-radius: 999px;
    background: transparent;
    color: var(--domu-text);
    transition: background-color .2s ease, transform .2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-mobile-toggle:hover {
    background: var(--domu-soft);
    transform: translateY(-1px);
    text-decoration: none;
    color: var(--domu-text);
}

.site-mobile-toggle:focus {
    box-shadow: none;
    outline: none;
}

.site-mobile-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--domu-text);
    font-size: 1.35rem;
    line-height: 1;
}

.site-brand-mobile {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-start;
}

.site-brand-mobile .site-brand-logo {
    max-height: var(--domu-header-logo-max-height-mobile);
    max-width: 210px;
}

/* =========================================================
   5. MOBILE MENU SLIDE
========================================================= */

/* =========================================================
   5.1 OVERLAY / BACKDROP
========================================================= */
.mobile-slide-menu-backdrop,
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, .45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
    z-index: 1210;
}

.mobile-slide-menu-backdrop.is-visible,
.mobile-menu-overlay.is-visible,
body.mobile-menu-open .mobile-slide-menu-backdrop,
body.mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

/* =========================================================
   5.2 PANEL
========================================================= */
.mobile-slide-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: var(--domu-mobile-menu-width);
    height: 100vh;
    background: #ffffff;
    color: var(--domu-text);
    box-shadow: -18px 0 45px rgba(0, 0, 0, .14);
    z-index: 1220;
    transform: translateX(100%);
    transition: transform .32s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    pointer-events: auto;
}

.mobile-slide-menu.is-open,
body.mobile-menu-open .mobile-slide-menu {
    transform: translateX(0);
}

/* =========================================================
   5.3 HEADER
========================================================= */
.mobile-slide-menu-header {
    position: relative;
    padding: 1rem 1rem .9rem;
    border-bottom: 1px solid var(--domu-border);
    background: #ffffff;
}

.mobile-slide-menu-close {
    position: absolute;
    top: .8rem;
    right: .8rem;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: var(--domu-soft);
    color: var(--domu-text);
    transition: transform .2s ease, background-color .2s ease;
    z-index: 2;
}

.mobile-slide-menu-close:hover {
    transform: rotate(90deg);
    background: #eceff3;
}

.mobile-slide-menu-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .85rem;
    text-decoration: none;
    color: var(--domu-text);
    min-width: 0;
    padding-right: 3.2rem;
    min-height: 72px;
}

.mobile-slide-menu-brand:hover {
    color: var(--domu-text);
    text-decoration: none;
}

.mobile-slide-menu-logo {
    max-height: 72px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.mobile-slide-menu-brand-texts {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.mobile-slide-menu-title {
    font-size: 1.55rem;
    font-weight: 600;
    line-height: 1;
}

.mobile-slide-menu-subtitle {
    color: var(--domu-muted);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-top: .2rem;
    line-height: 1.3;
}

/* =========================================================
   5.4 NAV / LINKS
========================================================= */
.mobile-slide-menu-nav {
    padding: 1rem .95rem 1.6rem;
    background: #ffffff;
}

.mobile-slide-menu-list,
.mobile-slide-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-slide-menu-item {
    opacity: 0;
    transform: translateX(18px);
    transition: opacity .35s ease, transform .35s ease;
}

.mobile-slide-menu.is-open .mobile-slide-menu-item.is-ready,
body.mobile-menu-open .mobile-slide-menu .mobile-slide-menu-item.is-ready {
    opacity: 1;
    transform: translateX(0);
}

.mobile-slide-menu-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .75rem;
    min-height: 56px;
    width: 100%;
    text-decoration: none;
    color: var(--domu-text);
    border-radius: 1rem;
    margin-bottom: .45rem;
    padding: .85rem .95rem;
    transition: background-color .2s ease, transform .2s ease, color .2s ease;
    background: transparent;
    position: relative;
    z-index: 1;
    font-weight: 600;
    border: 0;
    text-align: left;
}

.mobile-slide-menu-link:hover,
.mobile-slide-menu-link.active {
    background: var(--domu-soft);
    color: #000;
    transform: translateY(-1px);
    text-decoration: none;
}

.mobile-slide-menu-link i {
    font-size: 1.15rem;
    line-height: 1;
}

.mobile-slide-menu-link-toggle {
    justify-content: space-between;
    background: transparent;
}

.mobile-slide-menu-link-main {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
}

.mobile-slide-menu-caret {
    margin-left: auto;
    transition: transform .25s ease;
}

.mobile-slide-submenu {
    display: none;
    padding-left: .7rem;
    margin: .15rem 0 .45rem;
}

.mobile-slide-menu-item.is-open > .mobile-slide-submenu {
    display: block;
}

.mobile-slide-menu-item.is-open .mobile-slide-menu-caret {
    transform: rotate(180deg);
}

.mobile-slide-submenu-link {
    display: flex;
    align-items: center;
    gap: .65rem;
    text-decoration: none;
    color: var(--domu-text);
    padding: .72rem .92rem;
    border-radius: .9rem;
    font-size: .94rem;
    font-weight: 500;
    margin-bottom: .3rem;
    background: #fff;
    border: 1px solid var(--domu-border);
    transition: background-color .2s ease, color .2s ease;
}

.mobile-slide-submenu-link:hover,
.mobile-slide-submenu-link.active {
    background: var(--domu-soft);
    color: #000;
    text-decoration: none;
}

/* =========================================================
   5.5 MOBILE LANGUAGES
========================================================= */
.mobile-slide-menu-languages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    flex-wrap: nowrap;
    margin-top: .45rem;
    margin-bottom: .95rem;
    padding: .1rem 0 0;
}

.mobile-language-link {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid var(--domu-border);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
    flex: 0 0 auto;
}

.mobile-language-link:hover,
.mobile-language-link.active {
    background: var(--domu-soft);
    border-color: #d7dfe7;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: var(--domu-shadow-soft);
}

.mobile-language-flag-img {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    border-radius: 999px;
    object-fit: cover;
    overflow: hidden;
    display: block;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
}

/* =========================================================
   5.6 MOBILE CTA / SOCIALS
========================================================= */
.mobile-slide-menu-cta {
    margin-top: .5rem;
    text-align: center;
}

.mobile-slide-menu-cta .site-book-btn {
    width: 100%;
    justify-content: center;
}

.mobile-slide-menu-socials {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    margin-top: 1rem;
}

.mobile-slide-menu-social-link {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    width: 100%;
    min-height: 48px;
    padding: .75rem .95rem;
    border-radius: 1rem;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--domu-border);
    color: var(--domu-text);
    font-weight: 600;
    transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.mobile-slide-menu-social-link:hover {
    transform: translateY(-1px);
    background: var(--domu-soft);
    text-decoration: none;
    box-shadow: var(--domu-shadow-soft);
}

.mobile-slide-menu-social-link.is-facebook {
    color: var(--social-facebook);
}

.mobile-slide-menu-social-link.is-instagram {
    color: var(--social-instagram);
}

.mobile-slide-menu-social-link.is-youtube {
    color: var(--social-youtube);
}

.mobile-slide-menu-social-link.is-x {
    color: var(--social-x);
}

.mobile-slide-menu-social-link.is-tripadvisor {
    color: var(--social-tripadvisor);
}

.mobile-slide-menu-social-link.is-tiktok {
    color: var(--social-tiktok);
}

/* =========================================================
   6. HERO / PAGE / GENERIC CONTENT
========================================================= */

/* =========================================================
   6.1 HERO
========================================================= */
.hero-section {
    min-height: 82vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section-sm {
    min-height: 58vh;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(17, 24, 39, .28) 0%, rgba(17, 24, 39, .56) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 820px;
    padding-top: 8rem;
    padding-bottom: 6rem;
    animation: frontendFadeUp .6s ease both;
}

.hero-kicker {
    display: inline-block;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .92);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(3.4rem, 7vw, 6.4rem);
    color: #fff;
    margin-bottom: 1.25rem;
    line-height: 8rem;
    text-shadow: 0 8px 24px rgba(0, 0, 0, .22);
}

.hero-text {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, .94);
    max-width: 680px;
    margin-bottom: 1.85rem;
    text-shadow: 0 4px 14px rgba(0, 0, 0, .18);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    justify-content: center;
}

/* =========================================================
   6.2 INTRO / GENERIC BOXES
========================================================= */
.home-intro-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background: #fff;
}

.home-intro-box {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.home-intro-text {
    color: var(--domu-muted);
    font-size: 1.02rem;
    line-height: 1.85;
}

.feature-card,
.info-card,
.contact-card,
.service-pill {
    background: #fff;
    border: 1px solid var(--domu-border);
    border-radius: var(--domu-radius);
    box-shadow: var(--domu-shadow-soft);
}

.feature-card {
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, opacity .35s ease;
    opacity: 1;
    transform: translateY(0);
    overflow: hidden;
}

.feature-card:hover,
.info-card:hover,
.gallery-card:hover,
.contact-card:hover,
.service-pill:hover {
    transform: translateY(-4px);
    box-shadow: var(--domu-shadow);
}

/* =========================================================
   6.3 ROOM CARD GENERIC
========================================================= */
.room-card {
    height: 100%;
}

.room-card a {
    height: 100%;
}

.room-card-image {
    overflow: hidden;
    background: var(--domu-soft);
}

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

.room-card:hover .room-card-image img {
    transform: scale(1.04);
}

.room-card-title {
    font-size: 1.9rem;
    margin-bottom: .75rem;
}

.room-card-text {
    color: var(--domu-muted);
    font-size: .98rem;
}

/* =========================================================
   6.4 SERVICE PILL
========================================================= */
.service-pill {
    min-height: 148px;
    padding: 1.5rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .75rem;
    transition: transform .2s ease, box-shadow .2s ease;
}

.service-pill i {
    font-size: 2rem;
    color: var(--domu-accent);
}

.service-pill span {
    font-size: .96rem;
    font-weight: 600;
    color: var(--domu-text);
}

/* =========================================================
   6.5 GENERIC GALLERY CARD
========================================================= */
.gallery-card {
    overflow: hidden;
    border-radius: var(--domu-radius);
    box-shadow: var(--domu-shadow-soft);
    background: var(--domu-soft);
    position: relative;
}

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

.gallery-card:hover img {
    transform: scale(1.04);
}

.gallery-card-tall {
    height: 100%;
    min-height: 560px;
}

.gallery-card-medium {
    min-height: 270px;
}

.gallery-card-small {
    min-height: 275px;
}

/* =========================================================
   6.6 CONTACT CARD
========================================================= */
.contact-card {
    background: #fff;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.35rem;
}

.contact-item i {
    font-size: 1.35rem;
    color: var(--domu-accent);
    margin-top: .2rem;
}

.contact-item strong {
    display: block;
    margin-bottom: .2rem;
    color: var(--domu-text);
}

.contact-item p {
    color: var(--domu-muted);
}

.contact-visual {
    border-radius: var(--domu-radius);
    overflow: hidden;
    box-shadow: var(--domu-shadow-soft);
    min-height: 100%;
    background: #fff;
}

.contact-visual img,
.contact-visual iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
    border: 0;
}

/* =========================================================
   6.7 PAGE HERO / CONTENT
========================================================= */
.page-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: end;
}

.page-hero-media {
    position: absolute;
    inset: 0;
}

.page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, .18) 0%, rgba(17, 24, 39, .50) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 5rem 0 3rem;
}

.page-title {
    font-size: clamp(2.7rem, 5vw, 4.6rem);
}

.page-content {
    font-size: 1.02rem;
    color: var(--domu-text);
}

.page-content h2,
.page-content h3,
.page-content h4 {
    font-family: var(--domu-title-font);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content p + p {
    margin-top: 1rem;
}

.page-content img {
    border-radius: 1rem;
    display: block;
    margin: 1.5rem auto;
    box-shadow: var(--domu-shadow-soft);
}

.badge.text-bg-light {
    background: #fff !important;
    color: var(--domu-text) !important;
}

/* =========================================================
   7. CAMERA DETAIL
========================================================= */

/* =========================================================
   7.1 DESCRIPTION
========================================================= */
.room-description {
    font-size: 1rem;
    color: var(--domu-text);
    line-height: 1.85;
}

.room-description h3 {
    font-size: 1.7rem;
    margin-top: 2rem;
    margin-bottom: .9rem;
    color: var(--domu-title-color);
}

.room-description p {
    margin-bottom: 1rem;
}

.room-description ul {
    margin: 0 0 1rem;
    padding-left: 1.2rem;
}

.room-description li {
    margin-bottom: .55rem;
}

/* =========================================================
   7.2 SIDEBAR
========================================================= */
.room-sidebar-card {
    position: sticky;
    top: calc(var(--domu-header-height) + 1.5rem);
    text-align: left;
}

.room-sidebar-card .section-eyebrow,
.room-sidebar-card .room-card-title,
.room-sidebar-card .contact-item,
.room-sidebar-card .room-services-list,
.room-sidebar-card .room-related-list {
    text-align: left;
}

/* =========================================================
   7.3 SERVICES LIST
========================================================= */
.room-services-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: .65rem;
}

.room-services-list .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    min-height: 42px;
    text-align: center;
    font-size: .92rem;
    font-weight: 600;
    white-space: normal;
    line-height: 1.2;
}

.room-services-list .badge i {
    font-size: 1rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* =========================================================
   7.4 BOOK BUTTON
========================================================= */
.room-sidebar-book-btn {
    min-height: 48px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    line-height: 1;
    text-align: center;
    padding-top: .85rem;
    padding-bottom: .85rem;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.room-sidebar-book-btn i {
    font-size: 1rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.room-sidebar-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--domu-shadow-soft);
}

.room-sidebar-book-btn.disabled,
.room-sidebar-book-btn:disabled {
    opacity: .65;
    pointer-events: none;
}

/* =========================================================
   7.5 RELATED ROOMS
========================================================= */
.room-related-list {
    display: flex;
    flex-direction: column;
    gap: .85rem;
}

.room-related-card {
    position: relative;
    display: block;
    min-height: 108px;
    border-radius: 1rem;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: var(--domu-shadow-soft);
    transition: transform .22s ease, box-shadow .22s ease;
}

.room-related-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--domu-shadow);
}

.room-related-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, .18) 0%, rgba(17, 24, 39, .78) 100%);
}

.room-related-card-content {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: .9rem 1rem;
    display: flex;
    align-items: end;
    justify-content: flex-start;
}

.room-related-card-title {
    font-family: var(--domu-title-font);
    font-size: 1.35rem;
    line-height: 1;
    color: #fff;
    text-align: left;
    text-shadow: 0 4px 14px rgba(0, 0, 0, .18);
}

/* =========================================================
   7.6 SHARE ICONS
========================================================= */
.room-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem;
}

.room-share-hero {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.room-share-content {
    justify-content: center;
    padding-top: 1rem;
    margin-top: 1.5rem !important;
    border-top: 1px solid var(--domu-border);
}

.room-share-link {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.room-share-link i {
    font-size: 1.25rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.room-share-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--domu-shadow-soft);
    text-decoration: none;
}

.room-share-link.is-facebook {
    color: #1877f2;
}

.room-share-link.is-x {
    color: #111111;
}

.room-share-link.is-whatsapp {
    color: #25d366;
}

/* =========================================================
   8. HOME CAMERE GRID
========================================================= */
.home-rooms-layout {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.home-rooms-row {
    display: grid;
    gap: 1rem;
}

.home-rooms-row.is-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-rooms-row.is-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-rooms-row.is-one {
    grid-template-columns: minmax(0, 1fr);
}

.home-rooms-grid-item {
    min-width: 0;
}

.home-rooms-grid-card {
    display: block;
    height: 100%;
    border-radius: calc(var(--domu-radius) + .1rem);
    overflow: hidden;
    box-shadow: var(--domu-shadow-soft);
    background: #111;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: transform .2s ease, box-shadow .2s ease;
}

.home-rooms-grid-card:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: var(--domu-shadow);
}

.home-rooms-grid-media {
    position: relative;
    aspect-ratio: 4 / 3.9;
    overflow: hidden;
}

.home-rooms-grid-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.home-rooms-grid-card:hover .home-rooms-grid-media img {
    transform: scale(1.05);
}

.home-rooms-grid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, .10) 0%, rgba(17, 24, 39, .82) 100%);
}

.home-rooms-grid-content {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    padding: 1.1rem 1rem 1rem;
}

.home-rooms-grid-title {
    font-size: clamp(1.45rem, 1.8vw, 2rem);
    color: #fff;
    margin-bottom: .45rem;
}

.home-rooms-grid-text {
    color: rgba(255, 255, 255, .94);
    margin-bottom: 0;
    font-size: .94rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =========================================================
   9. GALLERY LIGHTBOX
========================================================= */
.site-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
}

.site-lightbox.is-open {
    display: block;
}

.site-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, .84);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.site-lightbox-dialog {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100vw - 2rem));
    height: min(88vh, 900px);
    margin: 4vh auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 1fr auto;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.2rem;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
}

.site-lightbox-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1rem .75rem;
    color: #fff;
}

.site-lightbox-counter {
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .82);
}

.site-lightbox-close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s ease, transform .2s ease;
}

.site-lightbox-close:hover {
    background: rgba(255, 255, 255, .2);
    transform: rotate(90deg);
}

.site-lightbox-stage {
    position: relative;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4.5rem;
}

.site-lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    border-radius: .85rem;
}

.site-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s ease, transform .2s ease;
}

.site-lightbox-nav:hover {
    background: rgba(255, 255, 255, .24);
    transform: translateY(-50%) scale(1.04);
}

.site-lightbox-nav-prev {
    left: 1rem;
}

.site-lightbox-nav-next {
    right: 1rem;
}

.site-lightbox-footer {
    padding: .9rem 1rem 1.1rem;
    color: #fff;
}

.site-lightbox-title {
    font-family: var(--domu-title-font);
    font-size: 1.8rem;
    line-height: 1.05;
    margin-bottom: .35rem;
    color: #fff;
}

.site-lightbox-description {
    margin: 0;
    color: rgba(255, 255, 255, .84);
    font-size: .96rem;
    line-height: 1.6;
}

/* =========================================================
   10. FOOTER
========================================================= */
.site-footer {
    position: relative;
    background: #fff;
    border-top: 1px solid var(--domu-border);
    padding: 1rem 0 1.1rem;
}

.site-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    flex-wrap: nowrap;
}

.site-footer-left {
    min-width: 0;
    flex: 1 1 auto;
}

.site-footer-line {
    display: flex;
    align-items: center;
    gap: .35rem;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
    font-size: .82rem;
    color: var(--domu-muted);
    line-height: 1.45;
}

.site-footer-name {
    color: var(--domu-text);
    font-weight: 700;
}

.site-footer-address {
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-footer-sep {
    opacity: .6;
    flex: 0 0 auto;
}

.site-footer-right {
    min-width: 0;
    flex: 0 0 auto;
}

.site-footer-menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .8rem 1rem;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
}

.site-footer-menu-item {
    list-style: none;
}

.site-footer-menu-link {
    font-size: .82rem;
    color: var(--domu-muted);
    text-decoration: none;
    transition: color .2s ease, text-decoration-color .2s ease;
    white-space: nowrap;
}

.site-footer-menu-link:hover {
    color: var(--domu-text);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 991.98px) {
    .site-footer-row {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }

    .site-footer-right {
        order: 1;
        width: 100%;
    }

    .site-footer-left {
        order: 2;
        width: 100%;
    }

    .site-footer-line {
        justify-content: center;
        flex-wrap: wrap;
        white-space: normal;
        overflow: visible;
        text-align: center;
    }

    .site-footer-menu {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 767.98px) {
    .site-footer-menu {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: .55rem;
    }

    .site-footer-menu-link {
        display: inline-block;
        text-align: center;
    }
}

/* =========================================================
   11. BACK TO TOP
========================================================= */
.site-back-to-top {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--domu-accent), #d3a76b);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(181, 138, 82, .28);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease, box-shadow .2s ease;
}

.site-back-to-top i {
    font-size: 1.2rem;
    line-height: 1;
}

.site-back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.site-back-to-top:hover {
    box-shadow: 0 14px 34px rgba(181, 138, 82, .36);
    transform: translateY(-2px);
}

/* =========================================================
   12. GENERIC ANIMATIONS TRIGGERS
========================================================= */
[data-animate="fade-up"],
[data-animate="fade-left"],
[data-animate="fade-right"],
[data-animate="fade-in"] {
    opacity: 0;
    transition: opacity .55s ease, transform .55s ease;
    will-change: opacity, transform;
}

[data-animate="fade-up"] {
    transform: translateY(18px);
}

[data-animate="fade-left"] {
    transform: translateX(-18px);
}

[data-animate="fade-right"] {
    transform: translateX(18px);
}

[data-animate="fade-in"] {
    transform: none;
}

[data-animate].is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* =========================================================
   13. KEYFRAMES
========================================================= */
@keyframes frontendFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

@keyframes frontendFadeDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

/* =========================================================
   14. RESPONSIVE
========================================================= */

/* =========================================================
   14.1 <= 1399.98px
========================================================= */
@media (max-width: 1399.98px) {
    .site-nav-right-wrap {
        gap: .55rem;
    }

    .site-desktop-menu-link {
        padding: .46rem .56rem;
        font-size: .84rem;
    }

    .site-brand-logo {
        max-width: 240px;
    }

    .site-language-name {
        display: none;
    }

    .site-language-current {
        padding-inline: .62rem;
    }
}

/* =========================================================
   14.2 <= 1199.98px
========================================================= */
@media (max-width: 1199.98px) {
    .site-navbar-desktop {
        gap: .55rem;
    }

    .site-desktop-menu-link {
        padding: .42rem .5rem;
        font-size: .8rem;
    }

    .site-desktop-menu-link i {
        font-size: .92rem;
    }

    .site-brand-logo {
        max-width: 210px;
    }

    .gallery-card-tall {
        min-height: 480px;
    }

    .home-rooms-row.is-three {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-rooms-row.is-two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-rooms-row.is-one {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   14.3 <= 991.98px
========================================================= */
@media (max-width: 991.98px) {
    body {
        padding-top: var(--domu-header-height-mobile);
    }

    .site-navbar {
        min-height: var(--domu-header-height-mobile);
    }

    .site-navbar-desktop {
        display: none !important;
    }

    .site-brand-logo {
        max-height: var(--domu-header-logo-max-height-mobile);
    }

    .hero-section {
        min-height: 68vh;
    }

    .hero-section-sm {
        min-height: 50vh;
    }

    .hero-content {
        padding-top: 6rem;
        padding-bottom: 4rem;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4.4rem);
    }

    .hero-text {
        font-size: 1rem;
    }

    .page-title {
        font-size: clamp(2.2rem, 7vw, 3.6rem);
    }

    .gallery-card-tall,
    .gallery-card-medium,
    .gallery-card-small {
        min-height: 260px;
    }

    .contact-visual img,
    .contact-visual iframe {
        min-height: 320px;
    }

    .site-footer-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer-menu {
        justify-content: flex-start;
    }

    .site-lightbox-dialog {
        width: calc(100vw - 1rem);
        height: min(92vh, 900px);
        margin: 2vh auto;
    }

    .site-lightbox-stage {
        padding: 0 1rem;
    }

    .site-lightbox-nav {
        width: 42px;
        height: 42px;
    }

    .site-lightbox-nav-prev {
        left: .5rem;
    }

    .site-lightbox-nav-next {
        right: .5rem;
    }

    .home-rooms-row.is-three,
    .home-rooms-row.is-two,
    .home-rooms-row.is-one {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .room-sidebar-card {
        position: static;
        top: auto;
    }

    .room-share-hero {
        margin-bottom: 1.2rem;
    }

    .home-gallery-slider {
        padding-inline: .25rem;
    }

    .home-gallery-arrow {
        display: none;
    }

    .home-gallery-slide {
        width: min(82vw, 360px);
    }
}

/* =========================================================
   14.4 <= 767.98px
========================================================= */
@media (max-width: 767.98px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        line-height: 1.08;
    }

    .site-book-btn,
    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .hero-reviews {
        gap: .65rem;
        margin-top: .95rem;
    }

    .hero-review-badge {
        width: 100%;
        max-width: 260px;
        min-width: unset;
        padding: .8rem .9rem;
    }

    .hero-review-badge__score {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .home-section,
    .home-section-soft,
    .home-intro-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .service-pill {
        min-height: 128px;
    }

    .site-back-to-top {
        right: .9rem;
        bottom: .9rem;
        width: 44px;
        height: 44px;
    }

    .site-lightbox-title {
        font-size: 1.45rem;
    }

    .site-lightbox-description {
        font-size: .9rem;
    }

    .home-rooms-row.is-three,
    .home-rooms-row.is-two,
    .home-rooms-row.is-one {
        grid-template-columns: 1fr;
    }

    .home-rooms-grid-media {
        aspect-ratio: 4 / 3.2;
    }
}

/* =========================================================
   14.5 >= 992px
========================================================= */
@media (min-width: 992px) {
    .site-navbar-mobile,
    .mobile-slide-menu-backdrop,
    .mobile-menu-overlay,
    .mobile-slide-menu {
        display: none !important;
    }
}

/* =========================================================
   15. HOME GALLERY SLIDER
========================================================= */
.home-gallery-wrap {
    position: relative;
}

.home-gallery-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: .25rem 3.5rem .75rem;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.home-gallery-slider.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.home-gallery-slider::-webkit-scrollbar {
    display: none;
}

.home-gallery-slide {
    flex: 0 0 auto;
    width: clamp(280px, 28vw, 420px);
    scroll-snap-align: start;
}

.home-gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--domu-radius);
    box-shadow: var(--domu-shadow-soft);
    text-decoration: none;
    background: var(--domu-soft);
}

.home-gallery-item img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
}

.home-gallery-item:hover img {
    transform: scale(1.05);
}

.home-gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .58), rgba(0, 0, 0, 0));
    opacity: 0;
    transition: opacity .3s ease;
}

.home-gallery-item:hover::after {
    opacity: 1;
}

.home-gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: all .3s ease;
}

.home-gallery-item:hover .home-gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.home-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 24, 39, .78);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--domu-shadow-soft);
    transition: transform .2s ease, background-color .2s ease, opacity .2s ease;
}

.home-gallery-arrow:hover {
    background: rgba(17, 24, 39, .92);
}

.home-gallery-arrow-prev {
    left: .5rem;
}

.home-gallery-arrow-next {
    right: .5rem;
}

.hero-reviews {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: .85rem;
    flex-wrap: wrap;
    margin-top: 1.15rem;
}

.hero-review-badge {
    min-width: 170px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .2rem;
    padding: .9rem 1rem;
    border-radius: 1.2rem;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.hero-review-badge:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .28);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
}

.hero-review-badge__top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    font-size: .88rem;
    line-height: 1;
    opacity: .96;
}

.hero-review-badge__top i {
    font-size: 1rem;
    line-height: 1;
}

.hero-review-badge__label {
    font-weight: 600;
    letter-spacing: .01em;
    white-space: nowrap;
}

.hero-review-badge__main {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    gap: .2rem;
    line-height: 1;
}

.hero-review-badge__score {
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: -.02em;
}

.hero-review-badge__scale {
    font-size: .9rem;
    font-weight: 600;
    opacity: .92;
}

.hero-review-badge__meta {
    font-size: .82rem;
    line-height: 1.15;
    opacity: .9;
    text-align: center;
}

@media (max-width: 575.98px) {
    .hero-reviews {
        gap: .65rem;
        margin-top: .95rem;
    }

    .hero-review-badge {
        min-width: unset;
        width: 100%;
        max-width: 260px;
        padding: .8rem .9rem;
    }

    .hero-review-badge__score {
        font-size: 1.25rem;
    }
}

/* =========================================================
   CONTACT LUXURY SECTION
========================================================= */
.home-contact-luxury-section {
    padding: 5rem 0;
    background:
        linear-gradient(180deg, #faf8f5 0%, #ffffff 100%);
}

.home-contact-luxury-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: .5rem;
}

.home-contact-luxury-title {
    margin-bottom: 1rem;
}

.home-contact-luxury-text {
    max-width: 620px;
    color: var(--domu-muted);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 2rem;
}

.home-contact-luxury-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.home-contact-luxury-item {
    padding: 1.25rem 1.35rem;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 1.25rem;
    box-shadow: var(--domu-shadow-soft);
}

.home-contact-luxury-label {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--domu-accent);
    margin-bottom: .75rem;
}

.home-contact-luxury-value {
    color: var(--domu-text);
    font-size: 1rem;
    line-height: 1.75;
}

.home-contact-luxury-links {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.home-contact-luxury-link {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
    color: var(--domu-text);
    font-weight: 500;
    line-height: 1.5;
    transition: color .2s ease, transform .2s ease;
}

.home-contact-luxury-link:hover {
    color: var(--domu-accent);
    text-decoration: none;
    transform: translateX(2px);
}

.home-contact-luxury-link i {
    font-size: 1.15rem;
    color: var(--domu-accent);
    flex: 0 0 auto;
}

.home-contact-luxury-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
}

.home-contact-luxury-visual {
    position: relative;
    min-height: 560px;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--domu-shadow);
    background: #fff;
}

.home-contact-luxury-visual > img,
.home-contact-luxury-map,
.home-contact-luxury-map iframe {
    width: 100%;
    height: 100%;
    min-height: 560px;
    display: block;
    object-fit: cover;
    border: 0;
}

.home-contact-luxury-overlay-card {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
    padding: 1.15rem 1.2rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .12);
}

.home-contact-luxury-overlay-kicker {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--domu-accent);
    margin-bottom: .45rem;
}

.home-contact-luxury-overlay-title {
    font-size: clamp(1.8rem, 2.3vw, 2.5rem);
    margin-bottom: .35rem;
}

.home-contact-luxury-overlay-text {
    color: var(--domu-muted);
    font-size: .95rem;
    line-height: 1.6;
}

/* =========================================================
   WHATSAPP FLOAT GLOBAL
========================================================= */
.site-whatsapp-float {
    position: fixed;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(37, 211, 102, .34);
    z-index: 1995;
    transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.site-whatsapp-float:hover {
    color: #fff;
    text-decoration: none;
    background: #20bd5c;
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 20px 38px rgba(37, 211, 102, .4);
}

.site-whatsapp-float i {
    font-size: 1.5rem;
    line-height: 1;
}

/* =========================================================
   RESPONSIVE CONTACT + WHATSAPP
========================================================= */
@media (max-width: 991.98px) {
    .home-contact-luxury-content {
        padding-right: 0;
    }

    .home-contact-luxury-visual,
    .home-contact-luxury-visual > img,
    .home-contact-luxury-map,
    .home-contact-luxury-map iframe {
        min-height: 420px;
    }
}

@media (max-width: 767.98px) {
    .home-contact-luxury-section {
        padding: 4rem 0;
    }

    .home-contact-luxury-item {
        padding: 1.1rem 1rem;
    }

    .home-contact-luxury-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home-contact-luxury-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .home-contact-luxury-visual,
    .home-contact-luxury-visual > img,
    .home-contact-luxury-map,
    .home-contact-luxury-map iframe {
        min-height: 340px;
    }

    .home-contact-luxury-overlay-card {
        left: .9rem;
        right: .9rem;
        bottom: .9rem;
        padding: 1rem;
    }

    .site-whatsapp-float {
        top: auto;
        right: 1rem;
        bottom: 5.1rem;
        transform: none;
        width: 54px;
        height: 54px;
    }

    .site-whatsapp-float:hover {
        transform: scale(1.05);
    }
}

.mobile-slide-menu-languages-wrap {
    margin-top: 1.4rem;
    padding-top: 1.1rem;
}

.mobile-slide-menu-section-divider {
    height: 1px;
    background: var(--domu-border);
    margin-bottom: 1rem;
}

.mobile-slide-menu-languages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    flex-wrap: nowrap;
    margin-top: 0;
    margin-bottom: 1.15rem;
    padding: 0;
}

.mobile-slide-menu-cta {
    margin-top: 1rem;
    margin-bottom: 1.15rem;
    text-align: center;
}

.mobile-slide-menu-cta .site-book-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    margin-inline: auto;
}

.mobile-slide-menu-footer {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--domu-border);
    text-align: center;
}

.mobile-slide-menu-footer-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .35rem;
    flex-wrap: wrap;
    font-size: .82rem;
    color: var(--domu-muted);
    line-height: 1.5;
}

.mobile-slide-menu-footer-name {
    color: var(--domu-text);
    font-weight: 700;
}

.mobile-slide-menu-footer-sep {
    opacity: .6;
}

/* =========================================================
   COOKIE BANNER
========================================================= */
.site-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2600;
    padding: 1rem 0;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 -16px 34px rgba(0, 0, 0, .08);
}

.site-cookie-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 1.5rem;
    flex-wrap: nowrap;
}

.site-cookie-banner__content {
    min-width: 0;
    flex: 1 1 auto;
}

.site-cookie-banner__title {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: .55rem;
    font-size: .95rem;
    font-weight: 700;
    color: var(--domu-title-color);
    line-height: 1.2;
}

.site-cookie-banner__title i {
    font-size: 1.1rem;
    color: var(--domu-accent);
    line-height: 1;
}

.site-cookie-banner__text {
    color: var(--domu-text);
    font-size: .92rem;
    line-height: 1.7;
}

.site-cookie-banner__text-secondary {
    color: var(--domu-muted);
    margin-left: .35rem;
}

.site-cookie-banner__links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem 1rem;
    margin-top: .75rem;
}

.site-cookie-banner__link {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--domu-accent);
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.site-cookie-banner__link i {
    font-size: 1rem;
    line-height: 1;
}

.site-cookie-banner__link:hover {
    color: var(--domu-title-color);
    text-decoration: none;
    transform: translateY(-1px);
}

.site-cookie-banner__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: .65rem;
    flex: 0 0 auto;
}

.site-cookie-banner__actions .btn {
    min-height: 44px;
    font-size: .9rem;
    font-weight: 700;
    box-shadow: none;
}

.site-cookie-banner__actions .btn i {
    font-size: 1rem;
    line-height: 1;
}

body.has-cookie-banner .site-back-to-top {
    bottom: 6.4rem;
}

@media (max-width: 991.98px) {
    .site-cookie-banner {
        padding: .95rem 0;
    }

    .site-cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .site-cookie-banner__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .site-cookie-banner {
        padding: .85rem 0;
    }

    .site-cookie-banner__title {
        font-size: .92rem;
    }

    .site-cookie-banner__text {
        font-size: .88rem;
        line-height: 1.65;
    }

    .site-cookie-banner__links {
        gap: .6rem .9rem;
    }

    .site-cookie-banner__actions {
        flex-direction: column;
        align-items: stretch;
        gap: .55rem;
    }

    .site-cookie-banner__actions .btn {
        width: 100%;
        justify-content: center;
    }

    body.has-cookie-banner .site-back-to-top {
        bottom: 15.3rem;
    }

    .site-whatsapp-float {
        bottom: 9.2rem;
    }
}

/* =========================================================
   DINTORNI HOME
========================================================= */
.home-nearby-wrap {
    position: relative;
}

.home-nearby-slider {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: .25rem .125rem .5rem;
    scrollbar-width: none;
}

.home-nearby-slider::-webkit-scrollbar {
    display: none;
}

.home-nearby-slide {
    flex: 0 0 calc((100% - 3.75rem) / 4);
    max-width: calc((100% - 3.75rem) / 4);
    scroll-snap-align: start;
}

.home-nearby-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 1.1rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
}

.home-nearby-card-media {
    position: relative;
    aspect-ratio: 9 / 8;
    overflow: hidden;
    background: #f8fafc;
}

.home-nearby-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-nearby-card-badge {
    position: absolute;
    top: .9rem;
    left: .9rem;
    display: inline-flex;
    align-items: center;
    padding: .45rem .8rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, .82);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(15, 23, 42, .18);
    backdrop-filter: blur(6px);
    z-index: 2;
}

.home-nearby-card-body {
    padding: 1rem .95rem 1.05rem;
}

.home-nearby-card-title {
    margin: 0 0 .45rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
}

.home-nearby-card-text {
    font-size: .92rem;
    line-height: 1.45;
    color: #64748b;
}

@media (max-width: 1199.98px) {
    .home-nearby-slide {
        flex: 0 0 calc((100% - 2.5rem) / 3);
        max-width: calc((100% - 2.5rem) / 3);
    }
}

@media (max-width: 767.98px) {
    .home-nearby-slider {
        gap: 1rem;
    }

    .home-nearby-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .home-nearby-card-body {
        padding: .95rem .9rem 1rem;
    }

    .home-nearby-card-badge {
        top: .75rem;
        left: .75rem;
        font-size: .74rem;
        padding: .42rem .72rem;
    }
}
