* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: var(--font-body);
    background:
        radial-gradient(circle at 8% 8%, rgba(15, 118, 110, .16), transparent 38%),
        radial-gradient(circle at 92% 0%, rgba(245, 158, 11, .12), transparent 40%),
        var(--bg);
    padding-top: 76px;
}

body.header-style-overlay {
    padding-top: 76px;
}

body.header-style-glassy {
    padding-top: 76px;
}

body.page-is-home.header-style-overlay {
    padding-top: 0;
}

body.page-is-home.header-style-glassy {
    padding-top: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

.shell {
    width: min(1200px, calc(100% - 36px));
    margin: 0 auto;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    border-bottom: 1px solid var(--line);
    transition: background 0.45s ease, backdrop-filter 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease, color 0.35s ease;
}
.topbar--white {
    background: rgba(255, 255, 255, .9);
    backdrop-filter: none;
}
.topbar--white .menu a.active:not(.btn-primary) {
    background: var(--header-link-active-bg);
    color: var(--header-link-text);
}
.topbar--white .menu a:not(.btn-primary):hover {
    background: var(--header-link-hover-bg);
    color: var(--header-link-text);
}
.topbar--glassy {
    background: rgba(255, 255, 255, .34);
    border: none;
    border-bottom: none;
    border-radius: 0;
    box-shadow: 0 6px 24px rgba(15, 23, 42, .10);
    backdrop-filter: blur(10px);
}
.topbar--glassy .brand,
.topbar--glassy .menu a {
    color: var(--header-link-text);
}
.topbar--glassy .menu a:not(.btn-primary) {
    background: transparent;
    border: none;
    box-shadow: none;
}
.topbar--glassy .brand:hover {
    color: var(--zotel-brand);
}
.topbar--glassy .menu a:not(.btn-primary):hover {
    background: rgba(255, 255, 255, .2);
    border: none;
    box-shadow: none;
}
.topbar--glassy .menu a.active:not(.btn-primary) {
    background: rgba(255, 255, 255, .44);
    border: 1px solid rgba(255, 255, 255, .58);
    box-shadow: 0 4px 16px rgba(15, 23, 42, .08);
}
.topbar--glassy .menu a.btn-primary {
    color: var(--on-primary);
}
.topbar--overlay {
    background: rgba(0, 0, 0, 0.05) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    border: none;
    border-bottom: none;
}
.topbar--overlay .brand,
.topbar--overlay .menu a {
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.topbar--overlay .menu a:not(.btn-primary) {
    background: transparent;
    border: none;
    box-shadow: none;
    color: #fff;
}
.topbar--overlay .menu a:not(.btn-primary):hover {
    background: rgba(0, 0, 0, 0.12);
    border: none;
    box-shadow: none;
}
.topbar--overlay .menu a.active:not(.btn-primary) {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
.topbar--overlay .menu a.btn-primary {
    background: var(--header-cta-bg);
    color: var(--header-cta-text);
    text-shadow: none;
    border: none;
}
.topbar--overlay .brand:hover {
    color: #fff;
}
.topbar--overlay .menu-toggle {
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.topbar--scrolled {
    background: #fff !important;
    backdrop-filter: none !important;
    box-shadow: 0 1px 0 var(--line);
    border-bottom-color: var(--line) !important;
}
.topbar--scrolled.topbar--overlay,
.topbar--scrolled.topbar--glassy {
    border-bottom-color: var(--line) !important;
}
.topbar--scrolled.topbar--glassy {
    border-radius: 0;
}
.topbar--scrolled .brand,
.topbar--scrolled .menu a {
    color: #0f172a;
    text-shadow: none;
}
.topbar--scrolled .brand:hover {
    color: var(--zotel-brand);
}
.topbar--scrolled .menu a:not(.btn-primary) {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}
.topbar--scrolled.topbar--overlay .menu a:not(.btn-primary),
.topbar--scrolled.topbar--glassy .menu a:not(.btn-primary) {
    color: #0f172a;
}
.topbar--scrolled .menu a:not(.btn-primary):hover {
    background: var(--header-link-hover-bg);
    color: #0f172a;
}
.topbar--scrolled .menu a.active:not(.btn-primary) {
    background: var(--header-link-active-bg);
    color: #0f172a;
}
.topbar--scrolled .menu a.active:not(.btn-primary):hover {
    background: var(--header-link-active-bg);
    color: #0f172a;
}
.topbar--scrolled .menu a:hover {
    color: #0f172a;
}
.topbar--scrolled .menu a.btn-primary {
    color: var(--header-cta-text);
}

.topbar-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: transparent;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 21px;
    letter-spacing: -.01em;
    color: var(--header-link-text);
    transition: color .18s ease;
}
.brand:hover {
    color: var(--zotel-brand);
}
.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.brand-name {
    font-weight: 800;
    font-size: 21px;
    letter-spacing: -.01em;
}
.brand-subtitle {
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0;
    opacity: .9;
}

.brand img {
    width: 48px;
    height: 48px;
    border-radius: 0;
    object-fit: contain;
    border: 0;
    background: transparent;
}
.brand-fallback-badge {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 26px;
    line-height: 1;
    color: var(--on-primary);
    background: var(--primary);
    transition: background .18s ease;
}
.brand:hover .brand-fallback-badge {
    background: var(--zotel-brand);
}
.brand--logo-only img {
    width: auto;
    max-width: 200px;
    height: 48px;
    object-fit: contain;
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--header-link-text);
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
}

.menu {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: flex-end;
}

.header-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 6px;
}

.header-meta a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface) 90%, transparent);
    color: var(--header-link-text);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.menu a[data-book-cta="1"] {
    display: none;
}

.menu a {
    font-size: 14px;
    font-weight: 700;
    color: var(--header-link-text);
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 7px 11px;
    border-radius: 999px;
    transition: color 0.32s ease, background 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.menu a:not(.btn-primary):hover {
    color: var(--header-link-text);
    background: var(--header-link-hover-bg);
}

.menu a.active {
    background: var(--header-link-active-bg);
    color: var(--header-link-text);
}

.menu a.btn-primary {
    color: var(--header-cta-text);
}
.menu a.btn-primary:hover {
    color: var(--header-cta-text);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 11px 18px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform .18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--header-cta-bg);
    color: var(--on-primary);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--header-cta-bg) 28%, transparent);
}

.btn-primary:hover {
    background: var(--zotel-brand);
    border-color: var(--zotel-brand);
    box-shadow: 0 12px 28px color-mix(in srgb, var(--primary) 36%, transparent);
    color: var(--on-primary);
}

.header-book-cta {
    margin-left: 8px;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.btn-secondary {
    background: var(--surface);
    border-color: var(--line);
    color: var(--text);
}
.btn-secondary:hover {
    color: var(--zotel-brand);
    border-color: color-mix(in srgb, var(--zotel-brand) 34%, transparent);
}

.hero {
    position: relative;
    padding: 0 0 12px;
}

.hero-wrap {
    min-height: 320px;
    max-height: min(calc(100vh - 76px), 720px);
    border-radius: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    position: relative;
    background: #0f172a;
}

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

.hero-media video,
.hero-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .5s ease;
    background-size: cover;
    background-position: center;
}

.hero-slide.is-active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(15, 23, 42, .64), rgba(15, 23, 42, .28));
}

/* image_banner: fit viewport below header, no scroll; minimal overlay */
.hero.hero--image-banner {
    padding: 0;
    margin: 0;
}
.hero.hero--image-banner .hero-wrap {
    width: 100%;
    height: calc(100vh - 76px);
    min-height: calc(100vh - 76px);
    max-height: calc(100vh - 76px);
    overflow: hidden;
}
body.header-style-overlay .hero.hero--image-banner .hero-wrap,
body.header-style-glassy .hero.hero--image-banner .hero-wrap {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
}
/* In builder iframe: cap all image-banner heroes (including room detail) at 500px */
body.builder-preview .hero.hero--image-banner {
    max-height: 500px;
}
body.builder-preview .hero.hero--image-banner .hero-wrap {
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
}
body.builder-preview .hero.hero--image-banner .hero-content {
    min-height: 0 !important;
}
.hero.hero--image-banner .hero-slide {
    background-size: cover;
    background-position: center;
}
.hero.hero--image-banner .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, .06) 0%, transparent 35%, transparent 65%, rgba(0, 0, 0, .05) 100%);
}
.hero.hero--image-banner .hero-content {
    padding: 32px 24px;
}
/* Starter "No booking box": centered text panel when title/subtitle are enabled. */
.hero.hero--image-banner .hero-panel {
    background: rgba(15, 23, 42, .28);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    padding: 24px 28px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .12);
}
.hero.hero--image-banner .hero-content--no-booking {
    align-content: end;
    justify-items: center;
    text-align: center;
    padding-bottom: clamp(44px, 10vh, 110px);
}
.hero.hero--image-banner .hero-content--no-booking .hero-panel {
    width: min(760px, 92vw);
}

/* Room detail hero: full viewport below topbar on live site only; builder iframe uses 500px cap above */
body:not(.builder-preview) .hero.room-detail-page-hero.hero--image-banner {
    padding: 0;
    margin: 0;
    min-height: calc(100vh - 76px);
}
body:not(.builder-preview) .hero.room-detail-page-hero.hero--image-banner .hero-wrap {
    width: 100%;
    height: calc(100vh - 76px);
    min-height: calc(100vh - 76px);
    max-height: calc(100vh - 76px);
}
body:not(.builder-preview).header-style-overlay .hero.room-detail-page-hero.hero--image-banner,
body:not(.builder-preview).header-style-glassy .hero.room-detail-page-hero.hero--image-banner {
    min-height: 100vh;
}
body:not(.builder-preview).header-style-overlay .hero.room-detail-page-hero.hero--image-banner .hero-wrap,
body:not(.builder-preview).header-style-glassy .hero.room-detail-page-hero.hero--image-banner .hero-wrap {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
}

/* Image grid hero: one large + two stacked (same height as image-banner) */
.hero.hero--image-grid {
    position: relative;
    padding: 0;
    margin: 0;
    min-height: calc(100vh - 76px);
}
body.header-style-overlay .hero.hero--image-grid,
body.header-style-glassy .hero.hero--image-grid {
    min-height: 100vh;
}
.hero.hero--image-grid .hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    position: absolute;
    inset: 0;
    gap: 0;
}
.hero.hero--image-grid .hero-grid-main {
    grid-column: 1;
    grid-row: 1 / -1;
    background-size: cover;
    background-position: center;
}
.hero.hero--image-grid .hero-grid-top,
.hero.hero--image-grid .hero-grid-bottom {
    background-size: cover;
    background-position: center;
    position: relative;
}
.hero.hero--image-grid .hero-grid-view-all {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(15, 23, 42, .72);
    color: #fff;
    border-radius: var(--radius, 10px);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .12);
}
.hero.hero--image-grid .hero-grid-view-all:hover {
    background: rgba(15, 23, 42, .88);
    color: #fff;
}
.hero.hero--image-grid .hero-grid-view-all-icon {
    font-size: 1rem;
}
.hero.hero--image-grid .hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: clamp(18px, 3vw, 34px);
    z-index: 3;
    pointer-events: none;
}

.hero.hero--image-grid .hero-content .hero-panel {
    pointer-events: auto;
    width: min(760px, 64vw);
    margin: 0;
    background: linear-gradient(140deg, rgba(7, 12, 28, .72), rgba(15, 23, 42, .52));
    border: 1px solid rgba(255, 255, 255, .2);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
}
.hero.hero--image-grid .hero-content.hero-content--no-booking {
    justify-content: center;
    text-align: center;
    padding-bottom: clamp(44px, 10vh, 110px);
}
.hero.hero--image-grid .hero-content.hero-content--no-booking .hero-panel {
    width: min(760px, 92vw);
}

.hero.hero--image-grid .hero-content .hero-actions {
    margin-bottom: 14px;
}
.hero.hero--image-grid .hero-overlay--card {
    background: linear-gradient(180deg, rgba(0, 0, 0, .06) 0%, transparent 35%, transparent 65%, rgba(0, 0, 0, .05) 100%);
}
body.builder-preview .hero.hero--image-grid {
    height: 500px;
    min-height: 500px;
    max-height: 500px;
    overflow: hidden;
}
body.builder-preview .hero.hero--image-grid .hero-grid {
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
}

.booking-grid--stacked {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 100%;
    display: grid;
    align-content: center;
    padding: 42px;
    color: #fff;
}

.hero-content.hero-content--booking-right {
    justify-items: end;
}

.hero-panel {
    max-width: 720px;
    background: rgba(10, 16, 32, .32);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 18px;
    padding: 22px;
    backdrop-filter: blur(4px);
}

/* Hero booking card – dedicated overlay component (not shared with .booking-widget); full-width fields */
.hero-booking-card {
    max-width: 440px;
    width: 100%;
    background: rgba(15, 23, 42, .38);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 18px;
    padding: 28px 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .2), 0 0 0 1px rgba(0, 0, 0, .04);
    backdrop-filter: blur(12px);
}
.hero-booking-card__form {
    display: block;
    width: 100%;
}
.hero-booking-card__intro {
    margin-bottom: 22px;
    color: #fff;
}
.hero-booking-card__intro h1 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.05;
    font-weight: 700;
    overflow-wrap: anywhere;
}
.hero-booking-card__intro p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: 16px;
    line-height: 1.5;
}
.hero-content.hero-content--booking-right .hero-booking-card .hero-booking-card__intro h1 {
    font-size: clamp(28px, 3.4vw, 44px);
    line-height: 1.08;
}
.hero-booking-card--bottom {
    max-width: none;
    padding: 20px 24px;
}
.hero-booking-card__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
}
.hero-booking-card__fields--bottom {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: end;
}
.hero-booking-card__field {
    display: block;
    width: 100%;
    min-width: 0;
    margin-bottom: 0;
}
.hero-booking-card__field:last-of-type {
    margin-bottom: 0;
}
.hero-booking-card__submit {
    grid-column: 1 / -1;
    margin-top: 4px;
}
.hero-booking-card__fields--bottom .hero-booking-card__submit {
    grid-column: auto;
    margin-top: 0;
}
.hero-booking-card__label {
    display: block;
    width: 100%;
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.hero-booking-card .booking-date-input-wrap {
    gap: 0;
    min-height: 46px;
    border: 1px solid rgba(15, 23, 42, .14);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.hero-booking-card .booking-date-icon {
    width: 54px;
    min-height: 46px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.hero-booking-card .booking-date-inner {
    min-height: 46px;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.hero-booking-card .booking-stepper {
    min-height: 46px;
    border-color: rgba(15, 23, 42, .14);
    border-radius: 12px;
    background: #fff;
}

.hero-booking-card .booking-date-icon,
.hero-booking-card .booking-date-formatted,
.hero-booking-card .booking-stepper-btn,
.hero-booking-card .booking-stepper-value {
    color: var(--text);
}

.hero-booking-card .booking-stepper-btn {
    height: 46px;
}

/* Form elements share one hero booking treatment; only layout differs between right and bottom variants. */
.hero-booking-card__error {
    display: none;
    margin: 2px 0 0;
    font-size: 12px;
    font-weight: 600;
    color: #b91c1c;
}
.hero-booking-card__error.is-visible {
    display: block;
}
.hero-booking-card__btn {
    width: 100%;
    padding: 11px 24px;
}
.hero-content.hero-content--booking-right .hero-booking-card {
    margin-left: auto;
}

/* Hero booking bottom bar – single row, glass, anchored to bottom of hero */
.hero-booking-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 20px 0 24px;
}
.hero-booking-bottom__intro {
    color: #fff;
    margin: 0 auto 16px;
    max-width: 760px;
    text-align: center;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .28);
}
.hero-booking-bottom__intro h1 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(38px, 5.8vw, 62px);
    line-height: 1.04;
    font-weight: 700;
    overflow-wrap: anywhere;
}
.hero-booking-bottom__intro p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: 15px;
    line-height: 1.45;
}
.eyebrow {
    font-size: 12px;
    letter-spacing: .09em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
}

h1 {
    margin: 10px 0 12px;
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 68px);
    line-height: .95;
}

.hero-content p {
    margin: 0 0 18px;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .92);
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

section {
    padding: 34px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 10px;
    margin-bottom: 14px;
}

h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1;
}

.muted {
    color: var(--muted);
}

.panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px;
}

/* Content section block variants */
.content-section-media {
    position: relative;
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
    min-height: 200px;
}

.content-section-video {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: cover;
    display: block;
}

.content-section-img {
    width: 100%;
    min-height: 240px;
    background-size: cover;
    background-position: center;
}

.content-section-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.content-section-title {
    margin: 0;
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.content-section-subtitle {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.content-section-cta {
    margin-top: 1rem;
}

.content-section-cta-wrap {
    margin: 1rem 0 0;
}

.content-section-body {
    padding: 20px;
    line-height: 1.7;
}

.content-section-lead {
    margin-top: 8px;
    line-height: 1.6;
}

.content-section-with-gallery .section-head {
    flex-direction: column;
    align-items: flex-start;
}

.content-section-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.content-section-gallery-item {
    display: block;
    padding: 0;
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    background: none;
    aspect-ratio: 4/3;
}

.content-section-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-section-split {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: stretch;
}

.content-section-split--right {
    flex-direction: row-reverse;
}

.content-section-split-media {
    flex: 3 1 280px;
    min-height: 280px;
    border-radius: var(--radius);
    overflow: hidden;
}

.content-section-split-content {
    flex: 2 1 280px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.content-section-split-header {
    margin-bottom: 0.75rem;
}

.content-section-split-title {
    margin: 0 0 0.25rem;
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1;
}

.content-section-split-subtitle {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.4;
}

.content-section-split-body {
    flex: 1;
    line-height: 1.7;
    margin-top: 0;
}

.content-section-slide {
    width: 100%;
    height: 100%;
    min-height: 280px;
    background-size: cover;
    background-position: center;
}

.content-section-bg {
    min-height: 320px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}

.content-section-bg-overlay {
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    width: 100%;
}

.content-section-bg-overlay h2,
.content-section-bg-overlay p {
    margin: 0 0 8px;
    color: inherit;
}

.content-section-bg-overlay p:last-child {
    margin-bottom: 0;
}

.content-section-bg-cta {
    margin-top: 1rem;
}

.content-section-bg-cta .btn {
    background: #fff;
    color: var(--text, #1a1a1a);
}

/* Full-page background (parallax) – breaks out of container to viewport width */
.content-section-full-bleed-wrap {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.content-section-bg--parallax {
    min-height: 60vh;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    border-radius: 0;
}

/* In builder preview: cap parallax section height so rest of page is visible */
body.builder-preview .content-section-bg--parallax {
    min-height: 320px !important;
    max-height: 400px !important;
    height: 400px !important;
    background-attachment: scroll;
}

.content-section-two-col .content-section-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 16px;
}

@media (max-width: 640px) {
    .content-section-two-col .content-section-cols {
        grid-template-columns: 1fr;
    }
}

.content-section-col {
    line-height: 1.7;
}

.content-section-image-caption {
    text-align: center;
}

.content-section-caption-media {
    margin-bottom: 16px;
    border-radius: var(--radius);
    overflow: hidden;
}

.content-section-caption-media img {
    width: 100%;
    height: auto;
    display: block;
}

.content-section-caption-text h2 {
    margin-bottom: 8px;
}

.content-section-caption-text .content-section-cta-wrap {
    margin-top: 12px;
}

.about-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1.2fr .8fr;
}

.about-grid--full-width {
    grid-template-columns: 1fr;
}

.about-image-wrap {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.about-image {
    display: block;
    width: 100%;
    max-width: 100%;
    max-height: 320px;
    object-fit: cover;
}

.about-highlights {
    margin-top: 1.5rem;
}

.about-highlights-title {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.about-highlights-list {
    margin: 0;
    padding-left: 1.25rem;
    line-height: 1.8;
}

.amenities-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nearby-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.amenity {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
}

.amenity .amenity-icon {
    display: block;
    margin-bottom: 6px;
    font-size: 1.125rem;
    color: var(--primary);
    line-height: 1.2;
}

.amenity strong {
    display: block;
    margin-bottom: 2px;
    font-size: 0.9375rem;
    font-weight: 600;
}

.amenity .muted {
    font-size: 0.8125rem;
    line-height: 1.45;
}

.nearby-card {
    overflow: hidden;
    padding: 0;
}

.nearby-card-image {
    display: block;
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-bottom: 1px solid var(--line);
}

.nearby-card-body {
    padding: 12px 14px;
}

.nearby-card-distance {
    display: block;
    font-weight: 600;
}

.nearby-card-description {
    margin: 6px 0 0;
}

/* Nearby places: icon variant — list view (not card grid) */
.nearby-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .nearby-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.nearby-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.nearby-list-item:last-child {
    border-bottom: none;
}

.nearby-list--icon .nearby-list-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--primary) 12%, transparent);
    color: var(--primary);
    border-radius: 10px;
}

.nearby-list--icon .nearby-list-icon svg {
    width: 20px;
    height: 20px;
}

.nearby-list-content {
    min-width: 0;
}

.nearby-list-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
}

.nearby-list-head strong {
    font-size: 1rem;
    font-weight: 600;
}

.nearby-list-distance {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--muted);
}

.nearby-list-desc {
    margin: 6px 0 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--muted);
}

.section-head--row {
    flex-wrap: wrap;
}

.btn--sm {
    padding: 6px 14px;
    font-size: 0.875rem;
}

/* Amenities "View all" modal */
.amenities-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.amenities-modal[hidden] {
    display: none !important;
}

.amenities-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    cursor: pointer;
}

.amenities-modal-content {
    position: relative;
    width: 100%;
    max-width: 720px;
    max-height: 85vh;
    background: var(--surface);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.amenities-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
}

.amenities-modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.amenities-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--muted);
    padding: 0 4px;
}

.amenities-modal-close:hover {
    color: var(--text);
}

.amenities-modal-body {
    overflow-y: auto;
    padding: 20px;
}

.amenities-modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 640px) {
    .amenities-modal-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.amenities-modal-category {
    margin-bottom: 1.5rem;
}

.amenities-modal-category:last-child {
    margin-bottom: 0;
}

.amenities-modal-category-title {
    margin: 0 0 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
}

/* Amenities variant: list_cards – horizontal cards, icon left */
.amenities-list-cards {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
}

.amenity-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
}

.amenity-card-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-muted);
    color: var(--primary);
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1;
}

.amenity-card-body {
    min-width: 0;
}

.amenity-card-body strong {
    display: block;
    margin-bottom: 2px;
    font-size: 0.9375rem;
    font-weight: 600;
}

.amenity-card-body .muted {
    font-size: 0.8125rem;
    line-height: 1.45;
}

@media (min-width: 640px) {
    .amenities-list-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Amenities variant: compact_list – simple list, icon + name */
.amenities-compact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr;
}

.amenities-compact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
    font-size: 0.9375rem;
}

.amenities-compact-icon {
    flex-shrink: 0;
    width: 1.5rem;
    text-align: center;
    color: var(--primary);
    font-size: 0.9375rem;
    line-height: 1;
}

@media (min-width: 640px) {
    .amenities-compact-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Amenities variant: minimal_list – very compact, icon + name only */
.amenities-minimal-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}

.amenities-minimal-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--text);
}

.amenities-minimal-icon {
    flex-shrink: 0;
    color: var(--primary);
    font-size: 0.875rem;
    line-height: 1;
}

.rooms {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.room {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room:hover {
    box-shadow: var(--shadow);
    border-color: color-mix(in srgb, var(--primary) 25%, transparent);
}

.room-card-media {
    position: relative;
    width: 100%;
    height: 220px;
    background: var(--line);
    overflow: hidden;
}

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

.room-card-slider-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.room-card-slider-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    scroll-snap-align: start;
}

.room-card-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    color: var(--text);
    font-size: 14px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 2;
    opacity: 0.85;
    transition: opacity 0.2s ease, background 0.2s ease;
}

.room-card-slider-nav:hover {
    opacity: 1;
    background: var(--surface);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}

.room-card-slider-nav.prev {
    left: 8px;
}

.room-card-slider-nav.next {
    right: 8px;
}

.room img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.room-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.room-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 4px;
}

.room-head strong {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.01em;
}

.price {
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.room ul {
    margin: 8px 0 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 0.8125rem;
    line-height: 1.65;
}

.room .btn-secondary {
    margin-top: 12px;
}

.room .room-features-list {
    margin-top: 6px;
}

.room .room-description {
    margin: 2px 0 0;
    font-size: 0.92rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.room .room-cta {
    margin-top: auto;
}

.rooms-carousel {
    position: relative;
}

.rooms-carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, 340px);
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 2px 8px;
}

.rooms-carousel-track .room--carousel {
    scroll-snap-align: start;
    min-width: 0;
}

.rooms-carousel-nav {
    position: absolute;
    top: calc(50% - 18px);
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface) 86%, transparent);
    color: var(--text);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 2;
}

.rooms-carousel-nav.prev {
    left: -6px;
}

.rooms-carousel-nav.next {
    right: -6px;
}

.gallery {
    display: grid;
    gap: 10px;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 170px;
}

.gallery button,
.gallery .gallery-slide {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.gallery img,
.gallery .gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--line);
    transition: transform .2s ease;
}

.gallery img:hover,
.gallery .gallery-slide img:hover {
    transform: translateY(-2px);
}

.gallery--masonry img:first-child {
    grid-row: span 2;
}

.gallery-slider {
    position: relative;
}

.gallery-slider-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 1fr);
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 2px 8px;
}

.gallery-slider-track .gallery-slide {
    scroll-snap-align: start;
}

.gallery-slider-track .gallery-slide img {
    height: 230px;
}

.gallery-slider-nav {
    position: absolute;
    top: calc(50% - 18px);
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface) 86%, transparent);
    color: var(--text);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 2;
}

.gallery-slider-nav.prev {
    left: -6px;
}

.gallery-slider-nav.next {
    right: -6px;
}

.reviews {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-widget {
    display: grid;
    gap: 14px;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
}

.booking-widget.booking-widget--compact {
    display: block;
    grid-template-columns: none;
}

.booking-widget.booking-widget--compact .booking-form {
    display: block;
}

.booking-widget .booking-form {
    display: grid;
    gap: 10px;
}

.booking-widget .fields {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.booking-widget .field {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 12px;
    background: var(--surface);
    font-size: 13px;
    color: var(--text);
}

.booking-widget .booking-form label {
    display: block;
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 6px;
}

.booking-widget .booking-form input,
.booking-widget .booking-form select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 10px 12px;
    background: var(--surface);
    color: var(--text);
    font-size: 14px;
}

.booking-widget .booking-form input:focus,
.booking-widget .booking-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 20%, transparent);
}

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

.booking-widget .booking-grid.booking-grid--single-row {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: end;
    gap: 16px;
}

.booking-widget--compact .booking-field label {
    color: var(--text);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 6px;
}

.booking-widget .booking-grid.booking-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-stepper {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    overflow: hidden;
}

.booking-stepper-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 42px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--text);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.booking-stepper-btn:first-child {
    border-radius: 9px 0 0 9px;
}

.booking-stepper-btn:last-child {
    border-radius: 0 9px 9px 0;
}

.booking-stepper-btn:hover {
    background: color-mix(in srgb, var(--primary) 10%, transparent);
    color: var(--primary);
}

.booking-stepper-value {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: var(--text);
}

.btn-booking-search {
    width: 100%;
    padding: 11px 24px;
}

.booking-widget .booking-error {
    display: none;
    margin: 2px 0 0;
    color: #b91c1c;
    font-size: 12px;
    font-weight: 600;
}

.booking-widget .booking-error.is-visible {
    display: block;
}

.booking-date-input-wrap {
    position: relative;
    display: flex;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--surface);
    overflow: hidden;
}

.booking-date-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    color: var(--text);
    flex-shrink: 0;
}

.booking-date-inner {
    position: relative;
    flex: 1;
    min-width: 0;
}

.booking-date-formatted {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border: none;
    background: transparent;
    pointer-events: none;
    color: var(--text);
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.booking-date-native {
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    border: none;
    border-radius: 0;
    background: transparent;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-size: 16px;
    cursor: pointer;
}

.booking-date-native::-webkit-date-and-time-value {
    margin: 0;
}

.booking-date-native::-webkit-datetime-edit,
.booking-date-native::-webkit-datetime-edit-fields-wrapper,
.booking-date-native::-webkit-datetime-edit-text,
.booking-date-native::-webkit-datetime-edit-month-field,
.booking-date-native::-webkit-datetime-edit-day-field,
.booking-date-native::-webkit-datetime-edit-year-field {
    padding: 0;
    border: 0;
    background: transparent;
}

/* Hide native calendar icon (we show our own in .booking-date-icon); keep full-area clickable to open picker */
.booking-date-native::-webkit-calendar-picker-indicator {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    cursor: pointer;
    opacity: 0;
}

.custom-html {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px;
}

.review {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.25rem;
}

.review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-avatar--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-muted);
    color: var(--primary);
    font-size: 1.1rem;
}

.review-meta {
    min-width: 0;
}

.review-meta strong {
    display: block;
    margin-bottom: 2px;
}

.review-meta .muted {
    font-size: 0.85rem;
}

.review-quote {
    margin: 0 0 10px;
    line-height: 1.7;
}

.review-stars {
    color: #eab308;
    font-size: 0.9rem;
}

.review p {
    margin-top: 0;
    line-height: 1.7;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 1.25rem;
    margin-bottom: 0.75rem;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
}

.faq-item p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.contact {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
}
.contact .panel {
    border-radius: var(--radius);
    padding: 20px;
}
.contact .website-module-contact-form {
    --wmcf-label-color: var(--text);
    --wmcf-input-border: var(--line);
    --wmcf-input-bg: var(--surface);
    --wmcf-input-text: var(--text);
    --wmcf-submit-bg: var(--primary);
    --wmcf-submit-bg-hover: var(--zotel-brand);
    --wmcf-submit-text: var(--surface);
    --wmcf-success: var(--zotel-brand);
    --wmcf-error: #b91c1c;
}
.contact .website-module-contact-form__title {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.08;
}
.contact .website-module-contact-form__form {
    display: grid;
    gap: 10px;
}
.contact .website-module-contact-form__field {
    margin-bottom: 0;
}
.contact .website-module-contact-form__field label {
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 700;
}
.contact .website-module-contact-form__field input,
.contact .website-module-contact-form__field textarea {
    border-radius: var(--radius);
    border-width: 1px;
    padding: 12px 14px;
}
.contact .website-module-contact-form__field textarea {
    min-height: 120px;
    resize: vertical;
}
.contact .website-module-contact-form__actions {
    margin-top: 4px;
}
.contact .website-module-contact-form__submit {
    padding: 11px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid transparent;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--primary) 28%, transparent);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.contact .website-module-contact-form__submit:hover {
    transform: translateY(-1px);
    border-color: var(--zotel-brand);
    box-shadow: 0 12px 28px color-mix(in srgb, var(--zotel-brand) 36%, transparent);
}

.map {
    min-height: 280px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: color-mix(in srgb, var(--surface) 86%, var(--primary) 14%);
}

.map-link-fallback {
    display: grid;
    place-items: center;
    min-height: 340px;
    padding: 20px;
    text-align: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.map-empty {
    height: 100%;
    min-height: 280px;
    display: grid;
    place-items: center;
    color: var(--muted);
    padding: 20px;
    text-align: center;
}

.map iframe {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: 0;
}

/* Contact: one consolidated block (Our Location style) – no divider, phones row, then email, address, map CTA, social */
.contact-info-wrap {
    margin-top: 18px;
}
.contact-info {
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--surface);
}
.contact-info__section-label {
    margin: 0 0 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}
.contact-info__row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}
.contact-info__row:last-child {
    margin-bottom: 0;
}
.contact-info__row-icon {
    flex-shrink: 0;
    width: 18px;
    text-align: center;
    color: var(--primary);
    font-size: 12px;
}
.contact-info__row-value {
    color: var(--text);
    text-decoration: none;
    word-break: break-word;
    transition: color .18s ease;
}
a.contact-info__row-value:hover {
    color: var(--primary);
}
.contact-info__row--address .contact-info__row-value {
    max-width: 420px;
    line-height: 1.4;
}
.contact-info__row--cta {
    margin-top: 4px;
}
.contact-info__phones {
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 12px;
}
.contact-info__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}
.contact-info__chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: color-mix(in srgb, var(--primary) 8%, transparent);
}
.contact-info__chip-icon {
    font-size: 12px;
    color: var(--primary);
}
.contact-info__chip--whatsapp .contact-info__chip-icon {
    color: #25d366;
}
.contact-info__map-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.contact-info__map-btn i {
    font-size: 12px;
}
.contact-info__social {
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    padding-top: 10px;
    margin-top: 10px;
    border-top: 1px solid var(--line);
}
.contact-info__social-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
    margin-right: 4px;
}
.contact-info__social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.contact-info__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 15px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    text-decoration: none;
    transition: border-color .18s ease, background .18s ease, color .18s ease;
}
.contact-info__social-link:hover {
    border-color: var(--primary);
    background: color-mix(in srgb, var(--primary) 10%, transparent);
    color: var(--primary);
}

.site-footer {
    border-top: 1px solid var(--line);
    margin-top: 12px;
    background: var(--surface);
}

.site-footer-inner {
    padding: 26px 0 14px;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 18px;
}

.site-footer h4 {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.site-footer p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.site-footer section p + p {
    margin-top: 6px;
}

.site-footer-inline-link {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-footer-inline-link:hover {
    color: var(--zotel-brand);
}

.site-footer-social-sep {
    color: var(--muted);
}

.site-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.site-footer-links a {
    color: var(--muted);
    font-size: 13px;
}

.site-footer-links a:hover {
    color: var(--zotel-brand);
}

.site-footer-bottom {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.site-footer-powered a {
    color: var(--zotel-brand);
    font-weight: 700;
}
.site-footer-love {
    color: var(--zotel-brand);
    font-weight: 700;
    margin: 0 2px;
}

.wa-floating {
    position: fixed;
    right: max(16px, env(safe-area-inset-right, 0px));
    bottom: max(20px, env(safe-area-inset-bottom, 0px));
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.wa-floating:hover {
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.wa-floating__icon {
    display: block;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.wa-floating:hover .wa-floating__icon {
    color: #fff;
}

.call-floating {
    position: fixed;
    left: max(16px, env(safe-area-inset-left, 0px));
    bottom: max(20px, env(safe-area-inset-bottom, 0px));
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #0f766e;
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.call-floating:hover {
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.call-floating__icon {
    font-size: 1.35rem;
    line-height: 1;
}

@media print {
    .wa-floating,
    .call-floating {
        display: none !important;
    }

    .about-grid,
    .contact {
        grid-template-columns: 1fr;
    }

    .amenities-grid,
    .rooms,
    .reviews,
    .nearby-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .gallery--masonry img:first-child {
        grid-column: span 2;
    }

    .header-meta a[href^="mailto:"] {
        display: none;
    }
}

@media (min-width: 761px) {
    .drawer-overlay,
    .drawer-panel {
        display: none !important;
    }
}

@media (max-width: 760px) {
    .menu-toggle {
        display: inline-flex;
    }

    .menu {
        display: none;
    }

    .header-meta {
        display: none;
    }

    .header-book-cta {
        display: none;
    }

    .drawer-overlay {
        position: fixed;
        inset: 0;
        z-index: 40;
        background: rgba(15, 23, 42, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .drawer-overlay.is-open {
        opacity: 1;
        visibility: visible;
    }

    .drawer-panel {
        position: fixed;
        top: 0;
        right: 0;
        width: 88vw;
        max-width: 320px;
        height: 100%;
        max-height: 100vh;
        z-index: 50;
        background: var(--surface);
        box-shadow: -4px 0 24px rgba(15, 23, 42, 0.15);
        display: flex;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.3s ease-out;
        overflow: hidden;
    }

    .drawer-panel.is-open {
        transform: translateX(0);
    }

    .drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 18px;
        border-bottom: 1px solid var(--line);
        flex-shrink: 0;
    }

    .drawer-title {
        font-size: 16px;
        font-weight: 700;
        color: var(--text);
    }

    .drawer-close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 0;
        border: none;
        border-radius: 10px;
        background: transparent;
        color: var(--menu-text);
        cursor: pointer;
        transition: background 0.18s ease;
    }

    .drawer-close:hover {
        background: color-mix(in srgb, var(--primary) 12%, transparent);
    }

    .drawer-nav {
        flex: 1;
        overflow-y: auto;
        padding: 12px 0;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .drawer-link {
        display: block;
        padding: 14px 18px;
        font-size: 15px;
        font-weight: 700;
        color: var(--menu-text);
        text-decoration: none;
        transition: background 0.18s ease, color 0.18s ease;
    }

    .drawer-link:hover {
        background: color-mix(in srgb, var(--primary) 8%, transparent);
        color: var(--zotel-brand);
    }

    .drawer-link.active {
        background: color-mix(in srgb, var(--primary) 14%, transparent);
        color: var(--menu-text);
    }

    .drawer-link--cta {
        margin: 8px 18px 0;
        text-align: center;
        border-radius: 999px;
        padding: 12px 18px;
        background: var(--primary);
        color: var(--on-primary);
        box-shadow: 0 10px 24px color-mix(in srgb, var(--primary) 28%, transparent);
    }

    .drawer-link--cta:hover {
        background: var(--zotel-brand);
        color: var(--on-primary);
    }

    .drawer-footer {
        padding: 18px;
        border-top: 1px solid var(--line);
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex-shrink: 0;
    }

    .drawer-meta-link {
        font-size: 14px;
        font-weight: 600;
        color: var(--menu-text);
        text-decoration: none;
    }

    .drawer-meta-link:hover {
        color: var(--zotel-brand);
    }

    .drawer-cta {
        width: 100%;
        justify-content: center;
    }

    body.drawer-open {
        overflow: hidden;
    }

    .hero-wrap,
    .hero-content {
        min-height: 460px;
    }

    /* Mobile hero height: shorter band on phones so users reach content faster (home/marketing).
       Room detail keeps full-viewport immersive hero — see .room-detail-page-hero overrides below. */
    .hero.hero--image-banner:not(.room-detail-page-hero) .hero-wrap {
        height: auto;
        min-height: clamp(300px, 52vh, 480px);
        max-height: min(58vh, 520px);
        overflow: hidden;
    }

    body.header-style-overlay .hero.hero--image-banner:not(.room-detail-page-hero) .hero-wrap,
    body.header-style-glassy .hero.hero--image-banner:not(.room-detail-page-hero) .hero-wrap {
        min-height: clamp(300px, 52vh, 480px);
        max-height: min(58vh, 520px);
        height: auto;
    }

    .hero.hero--image-banner.room-detail-page-hero .hero-wrap {
        height: auto;
        min-height: calc(100vh - 76px);
        max-height: none;
        overflow: hidden;
    }

    body.header-style-overlay .hero.hero--image-banner.room-detail-page-hero .hero-wrap,
    body.header-style-glassy .hero.hero--image-banner.room-detail-page-hero .hero-wrap {
        min-height: 100vh;
    }

    /* Image-grid hero: same comfortable band (grid is direct child of section; no .hero-wrap) */
    .hero.hero--image-grid:not(.room-detail-page-hero) {
        min-height: clamp(300px, 52vh, 480px);
        max-height: min(58vh, 520px);
    }

    body.header-style-overlay .hero.hero--image-grid:not(.room-detail-page-hero),
    body.header-style-glassy .hero.hero--image-grid:not(.room-detail-page-hero) {
        min-height: clamp(300px, 52vh, 480px);
        max-height: min(58vh, 520px);
    }

    .hero.hero--image-banner .hero-media {
        position: absolute;
        inset: 0;
        height: 100%;
    }

    /* Bottom booking strip: align inset with booking-right card (.hero-content uses 16px on mobile). */
    .hero-booking-bottom {
        padding: 12px 16px 18px;
        left: 0;
        right: 0;
    }

    .hero-booking-bottom.shell {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .hero-booking-bottom__intro {
        margin-bottom: 12px;
        padding: 0 2px;
    }

    /* Match booking-right: bottom bar uses the same shared field partial, then switches to 2 columns on mobile. */
    .hero-booking-card__fields--bottom {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 10px;
        align-items: end;
    }

    .hero-booking-card__fields--bottom .hero-booking-card__submit {
        grid-column: span 2;
    }

    body.builder-preview .hero.hero--image-banner .hero-wrap,
    body.builder-preview .hero.hero--image-banner .hero-content {
        min-height: 500px !important;
    }

    .hero-content {
        min-height: 0;
        position: absolute;
        inset: 0;
        z-index: 2;
        display: flex;
        align-items: flex-end;
        padding: 16px;
        margin-top: 0;
    }

    .hero.hero--image-banner .hero-content.shell {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-panel {
        width: 100%;
        max-width: none;
        padding: 16px;
        margin: 0;
        max-height: calc(100% - 32px);
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    .hero-panel h1 {
        font-size: clamp(30px, 9vw, 42px);
        line-height: 1.05;
        overflow-wrap: anywhere;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.5;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    /*
     * Mobile: hero + booking card (overlay variant) → stack so the image stays visible,
     * then the booking form on the page surface (booking-led + brand cue on photo).
     */
    .hero.hero--image-banner:not(.room-detail-page-hero) .hero-wrap:has(.hero-content--booking-right) {
        display: flex;
        flex-direction: column;
        height: auto;
        max-height: none;
    }

    .hero.hero--image-banner:not(.room-detail-page-hero) .hero-wrap:has(.hero-content--booking-right) .hero-media {
        position: relative;
        flex: 0 0 auto;
        height: clamp(300px, 52vh, 480px);
        min-height: clamp(300px, 52vh, 480px);
        max-height: min(58vh, 520px);
    }

    .hero.hero--image-banner:not(.room-detail-page-hero) .hero-wrap:has(.hero-content--booking-right) .hero-content {
        position: relative;
        inset: auto;
        flex: 0 0 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 16px;
        background: var(--surface);
        color: var(--text);
        border-top: 1px solid var(--line);
    }

    .hero.hero--image-banner:not(.room-detail-page-hero) .hero-wrap:has(.hero-content--booking-right) .hero-booking-card {
        max-width: none;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius, 16px);
        box-shadow: var(--shadow);
        backdrop-filter: none;
    }

    .hero.hero--image-banner:not(.room-detail-page-hero) .hero-wrap:has(.hero-content--booking-right) .hero-booking-card__intro {
        color: var(--text);
    }

    .hero.hero--image-banner:not(.room-detail-page-hero) .hero-wrap:has(.hero-content--booking-right) .hero-booking-card__intro h1 {
        color: var(--text);
    }

    .hero.hero--image-banner:not(.room-detail-page-hero) .hero-wrap:has(.hero-content--booking-right) .hero-booking-card__intro p {
        color: var(--muted);
    }

    .hero.hero--image-banner:not(.room-detail-page-hero) .hero-wrap:has(.hero-content--booking-right) .hero-booking-card__label {
        color: var(--muted);
    }

    body.builder-preview .hero.hero--image-banner .hero-wrap:has(.hero-content--booking-right) {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
    }

    body.builder-preview .hero.hero--image-banner .hero-wrap:has(.hero-content--booking-right) .hero-content {
        min-height: 0 !important;
    }

    /* Image-grid + booking card: same stack pattern (section has no .hero-wrap). */
    .hero.hero--image-grid:not(.room-detail-page-hero):has(.hero-content--booking-right) {
        display: flex;
        flex-direction: column;
        min-height: 0;
        max-height: none;
    }

    .hero.hero--image-grid:not(.room-detail-page-hero):has(.hero-content--booking-right) .hero-grid {
        position: relative;
        inset: auto;
        flex: 0 0 auto;
        height: clamp(300px, 52vh, 480px);
        min-height: clamp(300px, 52vh, 480px);
        max-height: min(58vh, 520px);
    }

    .hero.hero--image-grid:not(.room-detail-page-hero):has(.hero-content--booking-right) .hero-content {
        position: relative;
        inset: auto;
        flex: 0 0 auto;
        min-height: 0;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 16px;
        background: var(--surface);
        color: var(--text);
        border-top: 1px solid var(--line);
        pointer-events: auto;
    }

    .hero.hero--image-grid:not(.room-detail-page-hero):has(.hero-content--booking-right) .hero-booking-card {
        max-width: none;
        width: 100%;
        margin: 0;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius, 16px);
        box-shadow: var(--shadow);
        backdrop-filter: none;
    }

    .hero.hero--image-grid:not(.room-detail-page-hero):has(.hero-content--booking-right) .hero-booking-card__intro {
        color: var(--text);
    }

    .hero.hero--image-grid:not(.room-detail-page-hero):has(.hero-content--booking-right) .hero-booking-card__intro h1 {
        color: var(--text);
    }

    .hero.hero--image-grid:not(.room-detail-page-hero):has(.hero-content--booking-right) .hero-booking-card__intro p {
        color: var(--muted);
    }

    .hero.hero--image-grid:not(.room-detail-page-hero):has(.hero-content--booking-right) .hero-booking-card__label {
        color: var(--muted);
    }

    /*
     * Mobile: "Booking bottom bar" → in-flow below hero (image banner or image grid),
     * with light surface styling (was absolute over the media band).
     */
    .hero.hero--image-banner:not(.room-detail-page-hero):has(.hero-booking-bottom) {
        display: flex;
        flex-direction: column;
        max-height: none;
    }

    .hero.hero--image-banner:not(.room-detail-page-hero):has(.hero-booking-bottom) .hero-wrap {
        flex: 0 0 auto;
    }

    .hero.hero--image-grid:not(.room-detail-page-hero):has(.hero-booking-bottom) {
        display: flex;
        flex-direction: column;
        min-height: 0;
        max-height: none;
    }

    .hero.hero--image-grid:not(.room-detail-page-hero):has(.hero-booking-bottom) > .hero-overlay {
        display: none;
    }

    .hero.hero--image-grid:not(.room-detail-page-hero):has(.hero-booking-bottom) .hero-grid {
        position: relative;
        inset: auto;
        flex: 0 0 auto;
        height: clamp(300px, 52vh, 480px);
        min-height: clamp(300px, 52vh, 480px);
        max-height: min(58vh, 520px);
    }

    .hero.hero--image-banner:not(.room-detail-page-hero):has(.hero-booking-bottom) .hero-booking-bottom,
    .hero.hero--image-grid:not(.room-detail-page-hero):has(.hero-booking-bottom) .hero-booking-bottom {
        position: relative;
        inset: auto;
        bottom: auto;
        left: auto;
        right: auto;
        flex: 0 0 auto;
        z-index: 2;
        background: var(--surface);
        border-top: 1px solid var(--line);
        padding-top: 16px;
        padding-bottom: 18px;
    }

    .hero.hero--image-banner:not(.room-detail-page-hero):has(.hero-booking-bottom) .hero-booking-bottom__intro,
    .hero.hero--image-grid:not(.room-detail-page-hero):has(.hero-booking-bottom) .hero-booking-bottom__intro {
        text-shadow: none;
    }

    .hero.hero--image-banner:not(.room-detail-page-hero):has(.hero-booking-bottom) .hero-booking-bottom__intro h1,
    .hero.hero--image-grid:not(.room-detail-page-hero):has(.hero-booking-bottom) .hero-booking-bottom__intro h1 {
        color: var(--text);
    }

    .hero.hero--image-banner:not(.room-detail-page-hero):has(.hero-booking-bottom) .hero-booking-bottom__intro p,
    .hero.hero--image-grid:not(.room-detail-page-hero):has(.hero-booking-bottom) .hero-booking-bottom__intro p {
        color: var(--muted);
    }

    .hero.hero--image-banner:not(.room-detail-page-hero) .hero-wrap:has(.hero-content--booking-right) .hero-booking-card,
    .hero.hero--image-grid:not(.room-detail-page-hero):has(.hero-content--booking-right) .hero-booking-card,
    .hero.hero--image-banner:not(.room-detail-page-hero):has(.hero-booking-bottom) .hero-booking-card--bottom,
    .hero.hero--image-grid:not(.room-detail-page-hero):has(.hero-booking-bottom) .hero-booking-card--bottom {
        padding: 22px;
        border-radius: var(--radius, 16px);
        background: var(--surface);
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
        backdrop-filter: none;
    }

    .hero.hero--image-banner:not(.room-detail-page-hero) .hero-wrap:has(.hero-content--booking-right) .hero-booking-card__label,
    .hero.hero--image-grid:not(.room-detail-page-hero):has(.hero-content--booking-right) .hero-booking-card__label,
    .hero.hero--image-banner:not(.room-detail-page-hero):has(.hero-booking-bottom) .hero-booking-card--bottom .hero-booking-card__label,
    .hero.hero--image-grid:not(.room-detail-page-hero):has(.hero-booking-bottom) .hero-booking-card--bottom .hero-booking-card__label {
        color: var(--muted);
    }

    body.builder-preview .hero.hero--image-banner:has(.hero-booking-bottom) {
        max-height: none;
    }

    body.builder-preview .hero.hero--image-banner:has(.hero-booking-bottom) .hero-wrap {
        height: auto !important;
        min-height: 280px !important;
        max-height: none !important;
    }

    body.builder-preview .hero.hero--image-grid:has(.hero-booking-bottom) {
        max-height: none;
    }

    .amenities-grid,
    .rooms,
    .reviews,
    .nearby-grid,
    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery--masonry img:first-child {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-slider-nav {
        display: none;
    }

    .booking-widget,
    .booking-widget.booking-widget--compact {
        grid-template-columns: 1fr;
    }

    .booking-widget .fields {
        grid-template-columns: 1fr 1fr;
    }

    .booking-widget .booking-grid.booking-grid--compact {
        grid-template-columns: 1fr 1fr;
    }

    .lightbox-nav {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }

    .lightbox-nav.prev {
        left: 10px;
    }

    .lightbox-nav.next {
        right: 10px;
    }

    .site-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .booking-widget .booking-grid,
    .booking-widget .booking-grid.booking-grid--compact {
        grid-template-columns: 1fr;
    }

    .booking-widget .booking-grid.booking-grid--single-row {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 10px;
    }

    .booking-widget .booking-grid.booking-grid--single-row .booking-submit-wrap {
        grid-column: span 2;
    }

    .booking-widget .booking-grid.booking-grid--single-row .booking-field {
        min-width: 0;
    }

    .booking-widget.booking-widget--compact .booking-form,
    .booking-widget .booking-date-input-wrap {
        min-width: 0;
    }

    .booking-widget .booking-form input,
    .booking-widget .booking-form select {
        padding: 8px 10px;
        font-size: 13px;
    }

    .booking-stepper {
        grid-template-columns: 36px 1fr 36px;
        min-height: 38px;
    }

    .booking-stepper-btn {
        height: 38px;
        font-size: 18px;
    }

    .booking-date-icon {
        padding: 0 8px;
    }

    .booking-date-formatted {
        padding: 0 8px;
        font-size: 13px;
    }

    .booking-date-native {
        min-height: 38px;
        padding: 8px 10px;
    }

    .site-footer-grid {
        grid-template-columns: 1fr;
    }
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, .86);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 18px;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: min(1200px, 96vw);
    max-height: 88vh;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
}

.lightbox-nav {
    position: absolute;
    top: calc(50% - 22px);
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .3);
    background: rgba(15, 23, 42, .7);
    color: #fff;
    border-radius: 999px;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
    user-select: none;
}

.lightbox-nav.prev {
    left: 18px;
}

.lightbox-nav.next {
    right: 18px;
}

.lightbox-counter {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(15, 23, 42, .6);
    color: #fff;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    letter-spacing: .04em;
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    border: 1px solid rgba(255, 255, 255, .3);
    background: rgba(15, 23, 42, .7);
    color: #fff;
    border-radius: 999px;
    padding: 8px 13px;
    cursor: pointer;
}

.blog-listing,
.blog-post-shell {
    padding: 120px 0 72px;
}

.blog-head {
    margin-bottom: 26px;
}

.blog-head h1 {
    margin: 6px 0 10px;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.blog-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.blog-card-cover img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
}

.blog-card-meta,
.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
}

.blog-card h3 {
    margin: 0;
    font-size: 1.22rem;
}

.blog-card p {
    margin: 0;
}

.blog-read-more {
    align-self: flex-start;
    margin-top: 4px;
}

.blog-empty-state {
    padding: 26px;
}

.blog-back-link {
    display: inline-flex;
    margin-bottom: 12px;
    font-weight: 600;
}

.blog-post {
    padding: 28px;
}

.blog-post-header h1 {
    margin: 8px 0 12px;
    font-size: clamp(2rem, 4vw, 2.9rem);
}

.blog-post-excerpt {
    max-width: 70ch;
    margin: 0;
    font-size: 1.05rem;
}

.blog-post-cover-wrap {
    margin: 22px 0;
}

.blog-post-cover {
    width: 100%;
    border-radius: 14px;
    aspect-ratio: 16 / 8;
    object-fit: cover;
    display: block;
}

.blog-post-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 18px;
}

.blog-post-gallery-item {
    border: 1px solid var(--line);
    background: #fff;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.blog-post-gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.blog-post-content {
    color: var(--text);
    line-height: 1.72;
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
    font-family: var(--font-heading);
    margin: 1.4em 0 .5em;
}

.blog-post-content p,
.blog-post-content ul,
.blog-post-content ol,
.blog-post-content blockquote {
    margin: 0 0 1rem;
}

.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .blog-listing,
    .blog-post-shell {
        padding: 102px 0 58px;
    }

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

    .blog-post {
        padding: 20px;
    }

    .blog-post-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Collection cards block – presentation from theme: uses .section-head + h2 + .muted (same as Rooms, Reviews). Theme can override .collection-cards .section-head etc. */
.collection-cards {
    padding: 34px 0;
}

.collection-cards .section-head p.muted {
    margin: 0.25rem 0 0;
}

.collection-cards-grid {
    display: grid;
    gap: 1.5rem;
}

.collection-cards--cols-2 .collection-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.collection-cards--cols-3 .collection-cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.collection-cards--cols-4 .collection-cards-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.collection-card {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

/* Default: card with optional small thumbnail on the left */
.collection-card--default {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.collection-card--default .collection-card-thumb {
    width: 120px;
    min-width: 120px;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg);
}

.collection-card--default .collection-card-thumb img,
.collection-card--default .collection-card-thumb-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-card--default .collection-card-body {
    flex: 1;
    min-width: 0;
}

/* With image: full-width image on top, then body */
.collection-card--with_image .collection-card-body {
    padding: 1.25rem;
}

/* Hero image: more prominent top visual, then compact body */
.collection-card--hero_image .collection-card-body {
    padding: 1rem 1.25rem 1.2rem;
}

.collection-card--hero_image .collection-card-media {
    aspect-ratio: 16/8;
    min-height: 210px;
}

.collection-card--hero_image .collection-card-title {
    font-size: 1.2rem;
}

.collection-card--hero_image .collection-card-description {
    font-size: 0.9rem;
    line-height: 1.45;
}

.collection-card-media {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.collection-card-media img,
.collection-card-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Minimal: no shadow, flat list-like, no image */
.collection-cards--minimal .collection-card {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    padding: 1rem 0;
    display: block;
}

.collection-cards--minimal .collection-card:last-child {
    border-bottom: none;
}

.collection-cards--minimal .collection-card-body {
    padding: 0;
}

.collection-cards--minimal .collection-card-title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.collection-cards--minimal .collection-card-description {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.collection-cards--minimal .collection-card-cta .btn {
    padding: 0.35rem 0.75rem;
    font-size: 0.8125rem;
}

.collection-card-body {
    padding: 1.25rem;
}

.collection-card-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin: 0 0 0.5rem;
}

.collection-card-title a {
    color: inherit;
}

.collection-card-title a:hover {
    color: var(--primary);
}

.collection-card-description {
    font-size: 0.9375rem;
    margin: 0 0 0.75rem;
    line-height: 1.5;
}

.collection-card-meta {
    font-size: 0.875rem;
    margin: 0 0 0.5rem;
    color: var(--muted);
}

.collection-card--faq .collection-card-question {
    margin-bottom: 0.5rem;
}

.collection-card-answer {
    font-size: 0.9375rem;
    line-height: 1.6;
    white-space: pre-line;
}

/* FAQ: Accordion variant – aligned with collection card styling (--surface, --radius, --shadow) */
.collection-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.collection-faq-details {
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--line);
}

.collection-faq-summary {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    padding: 1.25rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.collection-faq-summary:hover {
    background: color-mix(in srgb, var(--primary) 6%, transparent);
    color: var(--text);
}

.collection-faq-summary::-webkit-details-marker {
    display: none;
}

.collection-faq-summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--muted);
    flex-shrink: 0;
    line-height: 1;
}

.collection-faq-details[open] .collection-faq-summary::after {
    content: '−';
}

.collection-faq-answer {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    white-space: pre-line;
    color: var(--muted);
}

/* FAQ: Simple list variant – same typography as collection cards */

.collection-faq-dt {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin-top: 1.25rem;
    margin-bottom: 0.25rem;
}

.collection-faq-dt:first-child {
    margin-top: 0;
}

.collection-faq-dd {
    margin-left: 0;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--muted);
}

.collection-card-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.hero-stats {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.hero-stat {
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 12px;
    padding: 10px 12px;
    background: rgba(15, 23, 42, .58);
    backdrop-filter: blur(6px);
}

.hero-stat strong {
    display: block;
    font-size: 1rem;
    line-height: 1.1;
    color: #ffffff;
}

.hero-stat span {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, .86);
}

.reviews-ticker {
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: color-mix(in oklab, var(--surface) 96%, #ffffff);
}

.reviews-ticker-track {
    display: flex;
    gap: 14px;
    width: max-content;
    padding: 14px;
    animation: reviews-ticker-scroll 36s linear infinite;
}

.reviews-ticker:hover .reviews-ticker-track {
    animation-play-state: paused;
}

.review--ticker {
    min-width: 300px;
    max-width: 360px;
}

@keyframes reviews-ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.collection-carousel {
    position: relative;
}

.collection-carousel-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 2px;
}

.collection-carousel-track::-webkit-scrollbar {
    display: none;
}

.collection-card--carousel {
    min-width: min(320px, 85vw);
    flex: 0 0 min(320px, 85vw);
}

.collection-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid var(--line);
    background: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    cursor: pointer;
    z-index: 2;
}

.collection-carousel-nav.prev {
    left: -10px;
}

.collection-carousel-nav.next {
    right: -10px;
}

.room-detail {
    background: var(--bg);
    padding: 0;
}

.room-detail-price {
    margin: 0.35rem 0 0;
    font-weight: 800;
    font-size: 1.08rem;
}

.hero .room-detail-price {
    color: inherit;
}

.room-detail-overview,
.room-detail-description-section,
.room-detail-amenities-section,
.room-detail-gallery-section {
    padding: 30px 0 0;
}

.room-detail-specs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.room-detail-specs span {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 18px 20px;
    color: var(--text);
    font-size: .95rem;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.room-detail-description {
    max-width: 860px;
}

.room-detail-description p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.room-detail-amenities-grid .amenity {
    min-height: 124px;
}

@media (max-width: 768px) {
    .collection-cards--cols-2 .collection-cards-grid,
    .collection-cards--cols-3 .collection-cards-grid,
    .collection-cards--cols-4 .collection-cards-grid {
        grid-template-columns: 1fr;
    }

    .collection-card--default {
        flex-direction: column;
    }

    .collection-card--default .collection-card-thumb {
        width: 100%;
        min-width: unset;
        aspect-ratio: 16/10;
    }

    .collection-carousel-nav {
        display: none;
    }

    .hero.hero--image-grid .hero-content {
        align-items: flex-end;
        padding: 16px;
    }

    .hero.hero--image-grid .hero-content .hero-panel {
        width: 100%;
        max-width: none;
        padding: 16px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .room-detail-specs,
    .room-detail-amenities-grid {
        grid-template-columns: 1fr;
    }
}
