:root {
    --hm-accent: #cca04e;
    --hm-accent-dark: #8f6a28;
    --hm-accent-soft: #f4ead7;
    --hm-text: #231f18;
    --hm-muted: #6d6559;
    --hm-surface: #fffdfa;
    --hm-border: #e7dbc7;
    --hm-shadow: 0 18px 42px rgba(35, 31, 24, 0.08);
}

.hm-booking-form-wrapper,
.hm-rooms-grid {
    margin: 24px 0;
}

.hm-homepage-shell,
.hm-public-section {
    display: grid;
    gap: 28px;
}

.hm-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.9fr);
    gap: 28px;
    align-items: stretch;
    padding: 32px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(204, 160, 78, 0.2), transparent 28%),
        linear-gradient(140deg, #fffaf3 0%, #f8efe1 54%, #f3e7d2 100%);
    border: 1px solid var(--hm-border);
    box-shadow: var(--hm-shadow);
}

.hm-hero-copy {
    display: grid;
    align-content: center;
    gap: 12px;
    color: var(--hm-text);
}

.hm-hero-copy h1 {
    margin: 0;
    font-size: clamp(2.4rem, 5.8vw, 4.8rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
}

.hm-hero-copy p {
    margin: 0;
    color: var(--hm-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 62ch;
}

.hm-eyebrow,
.hm-section-heading span {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.78rem;
    color: var(--hm-accent-dark);
    font-weight: 700;
}

.hm-section-heading h2 {
    margin: 8px 0 10px;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 0.98;
    color: var(--hm-text);
}

.hm-section-heading p {
    margin: 0;
    color: var(--hm-muted);
    max-width: 64ch;
    line-height: 1.7;
}

.hm-hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.hm-hero-meta div,
.hm-hero-card,
.hm-contact-card,
.hm-location-card {
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(204, 160, 78, 0.26);
    box-shadow: 0 10px 28px rgba(35, 31, 24, 0.06);
    backdrop-filter: blur(8px);
}

.hm-hero-meta span,
.hm-card-label {
    display: block;
    margin-bottom: 8px;
    color: var(--hm-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hm-hero-meta strong,
.hm-hero-card strong {
    color: var(--hm-text);
    font-size: 1.05rem;
}

.hm-card-address {
    margin-top: 18px;
    color: var(--hm-muted);
}

.hm-hero-visual {
    position: relative;
    min-height: 420px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 22px 40px rgba(35, 31, 24, 0.16);
}

.hm-hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(35, 31, 24, 0.02) 0%, rgba(35, 31, 24, 0.28) 100%);
}

.hm-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hm-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.hm-link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border-radius: 999px;
    background: var(--hm-accent);
    color: #ffffff;
    text-decoration: none !important;
    font-weight: 700;
    border: 1px solid var(--hm-accent);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hm-link-button:hover,
.hm-booking-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(143, 106, 40, 0.22);
}

.hm-link-button-secondary {
    background: rgba(255, 255, 255, 0.8);
    color: var(--hm-accent-dark);
    border: 1px solid rgba(204, 160, 78, 0.4);
}

.hm-section-heading h2,
.hm-room-card h3,
.hm-ai-agent-card__head h3 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.hm-booking-form-wrapper {
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, #fffdfa 0%, #f8f2e8 100%);
    border: 1px solid var(--hm-border);
    box-shadow: var(--hm-shadow);
}

.hm-booking-form {
    display: grid;
    gap: 16px;
}

.hm-booking-form p {
    margin: 0;
}

.hm-booking-form label {
    color: var(--hm-text);
    font-weight: 600;
}

.hm-booking-form input,
.hm-booking-form select,
.hm-booking-form textarea,
.hm-booking-form button {
    width: 100%;
    box-sizing: border-box;
}

.hm-booking-form input,
.hm-booking-form select,
.hm-booking-form textarea {
    margin-top: 0;
    padding: 0 10px;
    border: 1px solid #dac8aa;
    border-radius: 12px;
    background: #ffffff;
}

.hm-booking-form button {
    padding: 15px 18px;
    border: 0;
    border-radius: 999px;
    background: var(--hm-accent);
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.hm-booking-availability-note {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid transparent;
    font-size: 0.94rem;
    line-height: 1.5;
}

.hm-booking-availability-note[hidden] {
    display: none;
}

.hm-booking-availability-note.is-info {
    background: rgba(204, 160, 78, 0.12);
    border-color: rgba(204, 160, 78, 0.28);
    color: var(--hm-accent-dark);
}

.hm-booking-availability-note.is-error {
    background: #fdeceb;
    border-color: #efb4ae;
    color: #8b1e14;
}

.hm-frontend-notice {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 12px;
}

.hm-frontend-notice-success {
    background: #f4ead7;
    color: var(--hm-accent-dark);
}

.hm-frontend-notice-error {
    background: #fdeceb;
    color: #8b1e14;
}

.hm-rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.hm-room-card {
    overflow: hidden;
    border: 1px solid var(--hm-border);
    border-radius: 22px;
    background: var(--hm-surface);
    box-shadow: var(--hm-shadow);
}

.hm-room-card-media {
    position: relative;
    overflow: hidden;
}

.hm-room-card-media.is-placeholder {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 30%),
        linear-gradient(145deg, #1a1713 0%, #2f261c 62%, #cca04e 100%);
}

.hm-room-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(35, 31, 24, 0) 0%, rgba(35, 31, 24, 0.18) 100%);
}

.hm-room-card-media img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.hm-room-card:hover .hm-room-card-media img {
    transform: scale(1.04);
}

.hm-room-card-overlay {
    position: absolute;
    inset: auto 16px 16px 16px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.hm-room-badge,
.hm-room-price,
.hm-room-gallery-count {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.72);
    color: #ffffff;
    font-size: 0.82rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hm-room-gallery-count {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    background: rgba(204, 160, 78, 0.92);
    color: #231f18;
    font-weight: 700;
}

.hm-room-gallery-controls {
    position: absolute;
    inset: auto 14px 82px 14px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
}

.hm-room-gallery-control {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.48);
    color: #ffffff;
    cursor: pointer;
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hm-room-gallery-control:hover,
.hm-room-gallery-control:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.82);
    background: rgba(17, 17, 17, 0.68);
    box-shadow: 0 10px 20px rgba(143, 106, 40, 0.18);
}

.hm-room-gallery-control i {
    color: inherit;
    font-size: 0.95rem;
}

.hm-room-card h3,
.hm-room-card p,
.hm-room-card ul,
.hm-room-card a {
    margin-left: 22px;
    margin-right: 22px;
    text-decoration: none;
}

.hm-room-card h3 {
    margin-top: 18px;
    margin-bottom: 10px;
    color: var(--hm-text);
    font-size: 1.45rem;
}

.hm-room-card p {
    color: var(--hm-muted);
    line-height: 1.7;
}

.hm-room-card ul {
    display: grid;
    gap: 8px;
    padding-left: 18px;
    color: var(--hm-text);
}

.hm-room-card a {
    margin-top: 8px;
    margin-bottom: 22px;
}

.hm-room-card-content {
    display: grid;
    gap: 10px;
}

.hm-contact-grid,
.hm-location-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.hm-contact-card h3,
.hm-location-card h3 {
    margin-top: 0;
    color: var(--hm-text);
}

.hm-contact-card p,
.hm-location-card p {
    color: var(--hm-muted);
    line-height: 1.7;
}

.hm-location-map iframe,
.hm-map-placeholder {
    width: 100%;
    min-height: 360px;
    border: 0;
    border-radius: 20px;
    background: linear-gradient(180deg, #f7efe1 0%, #efe1c7 100%);
    box-shadow: var(--hm-shadow);
}

.hm-map-placeholder {
    display: grid;
    place-items: center;
    padding: 24px;
    color: var(--hm-muted);
}

@media (max-width: 980px) {
    .hm-hero,
    .hm-contact-grid,
    .hm-location-layout {
        grid-template-columns: 1fr;
    }

    .hm-hero-meta {
        grid-template-columns: 1fr;
    }

    .hm-hero-visual {
        min-height: 320px;
    }
}

.hm-homepage-shell,
.hm-public-section,
.hm-booking-form-wrapper,
.hm-room-card,
.hm-contact-card,
.hm-location-card,
.hm-info-card,
.hm-empty-state {
    font-family: "Montserrat", sans-serif;
}

.hm-hero-copy h1,
.hm-contact-card h3,
.hm-location-card h3,
.hm-empty-state h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

.elementor-widget-shortcode .hm-homepage-shell,
.elementor-widget-shortcode .hm-public-section,
.elementor-widget-shortcode .hm-booking-form-wrapper {
    width: 100%;
    max-width: none;
}

.home .hm-homepage-shell ~ .hm-rooms-grid,
.home .hm-homepage-shell ~ .hm-booking-form-wrapper,
.home .hm-homepage-shell ~ .hm-public-section,
.home .hm-homepage-shell ~ p {
    display: none;
}

.elementor-widget-shortcode .hm-rooms-grid .hm-room-card,
.elementor-widget-shortcode .hm-rooms-grid .hm-room-card p,
.elementor-widget-shortcode .hm-rooms-grid .hm-room-card span,
.elementor-widget-shortcode .hm-rooms-grid .hm-room-card a,
.elementor-widget-shortcode .hm-rooms-grid .hm-room-card li,
.elementor-widget-shortcode .hm-rooms-grid .hm-room-card strong {
    font-family: "Montserrat", sans-serif;
}

.elementor-widget-shortcode .hm-rooms-grid .hm-room-card-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 0 28px 28px;
}

.elementor-widget-shortcode .hm-rooms-grid .hm-room-card-header {
    gap: 10px;
    min-height: 0;
    margin-top: 26px;
    align-content: start;
}

.elementor-widget-shortcode .hm-rooms-grid .hm-room-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3.3vw, 2.65rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 0.98;
}

.elementor-widget-shortcode .hm-rooms-grid .hm-room-highlight {
    font-size: 1.02rem;
    line-height: 1.55;
    font-weight: 600;
    color: #2b241c;
}

.elementor-widget-shortcode .hm-rooms-grid .hm-room-description {
    line-height: 1.8;
    min-height: 0;
}

.elementor-widget-shortcode .hm-rooms-grid .hm-room-facts {
    margin-top: 2px;
}

.elementor-widget-shortcode .hm-rooms-grid .hm-room-amenities {
    margin-top: -2px;
}

.elementor-widget-shortcode .hm-rooms-grid .hm-link-button {
    width: 100%;
    min-height: 58px;
    padding: 16px 24px;
    text-decoration: none !important;
}

.hm-hero {
    gap: 36px;
    padding: 40px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(204, 160, 78, 0.28), transparent 26%),
        linear-gradient(135deg, #fff8ef 0%, #f6ebdc 56%, #eed8b5 100%);
}

.hm-hero-badge {
    display: inline-flex;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(35, 31, 24, 0.08);
    color: var(--hm-text);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hm-hero-visual-wrap {
    display: grid;
    gap: 18px;
    align-content: stretch;
}

.hm-hero-highlights,
.hm-service-strip,
.hm-booking-benefits,
.hm-contact-highlights,
.hm-location-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hm-hero-highlights span,
.hm-service-strip span,
.hm-booking-benefits span,
.hm-contact-highlights span,
.hm-location-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(204, 160, 78, 0.3);
    color: var(--hm-text);
    font-size: 0.92rem;
}

.hm-hero-highlights i,
.hm-service-strip i,
.hm-booking-benefits i,
.hm-contact-highlights i,
.hm-location-highlights i,
.hm-link-button i,
.hm-contact-card h3 i,
.hm-location-card h3 i,
.hm-location-meta-item i,
.hm-info-card i,
.hm-map-placeholder strong i,
.hm-hero-meta span i {
    color: var(--hm-accent-dark);
}

.hm-service-strip {
    padding: 14px 18px;
    border-radius: 24px;
    background: #fffdfa;
    border: 1px solid var(--hm-border);
    box-shadow: var(--hm-shadow);
}

.hm-home-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
    gap: 32px;
    align-items: stretch;
}

.hm-home-story__content,
.hm-home-story__visual,
.hm-home-cta,
.hm-contact-lead,
.hm-location-card,
.hm-location-map,
.hm-home-row-card {
    padding: 32px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.98) 0%, rgba(248, 239, 225, 0.92) 100%);
    border: 1px solid rgba(204, 160, 78, 0.2);
    box-shadow: 0 24px 50px rgba(29, 24, 17, 0.08);
}

.hm-home-story__content {
    display: grid;
    gap: 22px;
    align-content: start;
}

.hm-home-story__content h2,
.hm-home-cta h2,
.hm-contact-lead h3,
.hm-location-card h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #18130f;
}

.hm-home-story__content h2,
.hm-home-cta h2 {
    font-size: clamp(2.6rem, 4.6vw, 4rem);
    line-height: 0.95;
}

.hm-contact-lead h3,
.hm-location-card h3 {
    font-size: clamp(2rem, 3.8vw, 3.1rem);
    line-height: 0.98;
}

.hm-home-story__content p,
.hm-home-cta p,
.hm-contact-lead p,
.hm-location-card > p {
    margin: 0;
    color: var(--hm-muted);
    font-size: 1rem;
    line-height: 1.85;
}

.hm-home-story__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.hm-home-story__stats article {
    display: grid;
    gap: 8px;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(204, 160, 78, 0.2);
}

.hm-home-story__stats strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1;
    color: #18130f;
}

.hm-home-story__stats span {
    color: var(--hm-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

.hm-home-story__services {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hm-home-story__services span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(204, 160, 78, 0.18);
    color: #2b241c;
}

.hm-home-story__services i {
    color: var(--hm-accent-dark);
}

.hm-home-story__visual {
    position: relative;
    display: grid;
    gap: 18px;
    align-content: end;
    min-height: 100%;
    overflow: hidden;
}

.hm-home-story__image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hm-home-story__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(19, 15, 11, 0.06) 0%, rgba(19, 15, 11, 0.48) 100%);
}

.hm-home-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hm-home-story__quote {
    position: relative;
    z-index: 1;
    margin-left: auto;
    max-width: 320px;
    display: grid;
    gap: 10px;
    padding: 22px 24px;
    border-radius: 24px;
    background: rgba(18, 15, 11, 0.84);
    color: #fff7eb;
    box-shadow: 0 22px 42px rgba(16, 13, 10, 0.22);
}

.hm-home-story__quote strong {
    font-size: 1.05rem;
    line-height: 1.6;
}

.hm-home-row-card {
    overflow: hidden;
}

.hm-home-row-card .hm-public-section {
    gap: 18px;
}

.hm-home-row-card .hm-section-heading h2 {
    font-size: clamp(2.1rem, 4vw, 3rem);
}

.hm-home-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    background: linear-gradient(135deg, #16120e 0%, #231c15 100%);
    color: #fff7eb;
}

.hm-home-cta h2,
.hm-home-cta p,
.hm-home-cta .hm-eyebrow {
    color: inherit;
}

.hm-home-cta p {
    color: rgba(255, 247, 235, 0.8);
}

.hm-home-cta .hm-link-button {
    min-width: 260px;
    background: #cca04e;
    border-color: #cca04e;
    color: #18130f;
    box-shadow: 0 20px 34px rgba(204, 160, 78, 0.24);
}

.hm-contact-stage,
.hm-location-stage {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: 24px;
    align-items: stretch;
}

.hm-contact-lead,
.hm-location-card {
    display: grid;
    gap: 18px;
}

.hm-contact-grid {
    gap: 18px;
}

.hm-contact-card {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    align-items: start;
    padding: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(204, 160, 78, 0.18);
}

.hm-contact-card__icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(204, 160, 78, 0.12);
    color: var(--hm-accent-dark);
}

.hm-contact-card__icon i {
    font-size: 1.05rem;
}

.hm-contact-card__body {
    display: grid;
    gap: 10px;
}

.hm-contact-card__body h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    line-height: 0.98;
    color: #18130f;
}

.hm-contact-card__body p,
.hm-contact-card__body a {
    margin: 0;
    color: #2a231c;
    font-size: 0.98rem;
    line-height: 1.8;
    text-decoration: none;
}

.hm-location-stage {
    grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
}

.hm-location-card {
    align-content: start;
}

.hm-location-meta {
    gap: 14px;
}

.hm-location-meta-item {
    display: inline-flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    color: #2a231c;
    line-height: 1.75;
}

.hm-location-meta-item i {
    margin-top: 4px;
}

.hm-location-highlights {
    display: grid;
    gap: 10px;
}

.hm-location-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(204, 160, 78, 0.18);
    color: #2b241c;
}

.hm-location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hm-location-map {
    overflow: hidden;
    min-height: 100%;
}

.hm-location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: 24px;
}

.hm-map-placeholder {
    min-height: 100%;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
}

.hm-home-row-card,
.hm-booking-panel,
.hm-empty-state {
    padding: 28px;
    border-radius: 28px;
    background: #fffdfa;
    border: 1px solid var(--hm-border);
    box-shadow: var(--hm-shadow);
}

.hm-empty-state {
    display: grid;
    gap: 14px;
    text-align: center;
}

.hm-empty-state-label {
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hm-accent-dark);
    font-size: 0.78rem;
    font-weight: 800;
}

.hm-empty-state-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hm-room-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hm-room-card-overlay {
    position: absolute;
    inset: auto 18px 18px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.hm-room-badge,
.hm-room-price {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--hm-text);
    font-weight: 800;
    font-size: 0.84rem;
}

.hm-room-price {
    background: rgba(35, 31, 24, 0.78);
    color: #fff;
}

.hm-room-card-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 18px;
    padding: 0 28px 28px;
}

.hm-room-card h3,
.hm-room-card p,
.hm-room-card ul,
.hm-room-card a {
    margin: 0;
}

.hm-room-card-header {
    display: grid;
    gap: 10px;
    margin-top: 26px;
}

.hm-room-highlight {
    color: #2b241c;
    font-weight: 600;
    font-size: 1.02rem;
    line-height: 1.55;
}

.hm-room-description {
    color: var(--hm-muted);
    font-size: 0.97rem;
    line-height: 1.8;
}

.hm-room-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(204, 160, 78, 0.18);
}

.hm-room-fact-item {
    display: inline-flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 8px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--hm-text);
    font-size: 0.9rem;
    text-align: center;
    min-height: 58px;
}

.hm-room-facts i,
.hm-room-amenities i {
    color: var(--hm-accent-dark);
    font-size: 0.85rem;
    width: 14px;
    text-align: center;
}

.hm-room-fact-item strong {
    font-weight: 600;
    font-size: 0.84rem;
    line-height: 1.35;
}

.hm-room-amenities {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 14px;
    padding: 0;
    list-style: none;
}

.hm-room-amenities li {
    display: inline-flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    text-align: center;
    min-height: 58px;
}

.hm-room-amenities i {
    width: auto;
    font-size: 1.05rem;
}

.hm-room-amenities span {
    display: block;
    font-size: 0.84rem;
    line-height: 1.35;
}

.hm-room-card {
    border-radius: 30px;
    border-color: rgba(204, 160, 78, 0.2);
    background:
        linear-gradient(180deg, rgba(255, 253, 250, 0.98) 0%, rgba(250, 244, 235, 0.98) 100%);
    box-shadow: 0 28px 56px rgba(28, 22, 16, 0.09);
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.hm-room-card:hover {
    transform: translateY(-4px);
    border-color: rgba(204, 160, 78, 0.32);
    box-shadow: 0 34px 70px rgba(28, 22, 16, 0.13);
}

.hm-room-card-media {
    min-height: 280px;
    background: linear-gradient(135deg, #efe2cd 0%, #c49a61 100%);
}

.hm-room-card-media::after {
    background: linear-gradient(180deg, rgba(17, 14, 10, 0.04) 0%, rgba(17, 14, 10, 0.28) 100%);
}

.hm-room-card-media img {
    min-height: 280px;
}

.hm-room-gallery-count {
    top: 18px;
    right: 18px;
    padding: 9px 14px;
    background: rgba(247, 241, 231, 0.96);
    color: #1b1712;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(18, 16, 12, 0.16);
}

.hm-room-gallery-controls {
    inset: auto 16px 92px 16px;
}

.hm-room-gallery-control {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(16, 13, 10, 0.42);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.hm-room-gallery-control:hover {
    background: rgba(16, 13, 10, 0.62);
}

.hm-room-card-overlay {
    inset: auto 18px 18px 18px;
    gap: 12px;
    justify-content: space-between;
}

.hm-room-badge,
.hm-room-price {
    padding: 10px 15px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.hm-room-badge {
    background: rgba(255, 250, 242, 0.94);
    color: #221c16;
}

.hm-room-price {
    background: rgba(24, 19, 15, 0.82);
    color: #fff8ee;
}

.hm-room-card h3 {
    font-size: clamp(2rem, 3.3vw, 2.65rem);
    line-height: 0.98;
    color: #18130f;
}

.hm-room-card .hm-link-button {
    width: 100%;
    min-height: 58px;
    margin-top: auto;
    justify-content: center;
    background: #18130f;
    border-color: #18130f;
    color: #fff7eb;
    box-shadow: 0 18px 34px rgba(24, 19, 15, 0.18);
}

.hm-room-card .hm-link-button:hover,
.hm-room-card .hm-link-button:focus {
    color: #fff7eb;
    box-shadow: 0 22px 42px rgba(24, 19, 15, 0.24);
}

@media (max-width: 640px) {
    .hm-room-amenities {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.hm-booking-form-wrapper {
    position: relative;
    overflow: hidden;
    padding: 40px;
    border-radius: 36px;
    background:
        radial-gradient(circle at top left, rgba(204, 160, 78, 0.14), transparent 26%),
        linear-gradient(180deg, #fffdfa 0%, #f7efe2 100%);
    border: 1px solid rgba(204, 160, 78, 0.2);
    box-shadow: 0 24px 50px rgba(29, 24, 17, 0.08);
}

.hm-booking-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
    gap: 34px;
    align-items: start;
}

.hm-booking-intro,
.hm-booking-panel {
    display: grid;
    gap: 20px;
}

.hm-booking-contact-cards {
    display: grid;
    gap: 14px;
}

.hm-booking-intro .hm-section-heading h2 {
    font-size: clamp(3rem, 5vw, 4.4rem);
    line-height: 0.95;
    margin-bottom: 14px;
}

.hm-booking-intro .hm-section-heading p {
    max-width: 30rem;
    font-size: 1.02rem;
    line-height: 1.8;
}

.hm-booking-benefits span {
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 253, 249, 0.78);
    border-color: rgba(204, 160, 78, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.hm-info-card {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 4px 14px;
    align-items: center;
    min-height: 90px;
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(247, 239, 227, 0.74));
    border: 1px solid rgba(204, 160, 78, 0.22);
    color: var(--hm-text);
    text-decoration: none;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.hm-info-card i {
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: center;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(204, 160, 78, 0.12);
    font-size: 1rem;
}

.hm-info-card strong,
.hm-info-card span {
    display: block;
    grid-column: 2;
}

.hm-info-card strong {
    color: var(--hm-text);
    line-height: 1.25;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #8a7040;
}

.hm-info-card span {
    color: #2a231c;
    line-height: 1.55;
    font-size: 1rem;
}

.hm-info-card:hover {
    transform: translateY(-2px);
    border-color: rgba(204, 160, 78, 0.34);
    box-shadow: 0 18px 36px rgba(30, 24, 18, 0.08);
}

.hm-booking-panel {
    position: relative;
    padding: 34px;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255, 253, 250, 0.98) 0%, rgba(249, 243, 234, 0.98) 100%);
    border: 1px solid rgba(204, 160, 78, 0.22);
    box-shadow: 0 26px 54px rgba(28, 22, 16, 0.09);
}

.hm-booking-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(204, 160, 78, 0.08), transparent);
    pointer-events: none;
}

.hm-booking-panel > * {
    position: relative;
    z-index: 1;
}

.hm-form-grid {
    display: grid;
    gap: 18px;
}

.hm-form-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hm-booking-form {
    gap: 20px;
}

.hm-booking-form p {
    display: grid;
    gap: 10px;
}

.hm-booking-form label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #84683a;
}

.hm-booking-form input,
.hm-booking-form select,
.hm-booking-form textarea {
    margin-top: 0;
    min-height: 58px;
    border-radius: 18px;
    border: 1px solid rgba(204, 160, 78, 0.26);
    background: #fffdfa;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    color: #211b15;
    font-size: 0.98rem;
    transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.hm-booking-form .hm-flatpickr-input {
    width: 100%;
    min-height: 58px;
    padding: 0 42px 0 14px;
    border: 1px solid rgba(204, 160, 78, 0.26);
    border-radius: 18px;
    background: #fffdfa;
    color: var(--hm-text);
    box-sizing: border-box;
    font-size: 0.98rem;
}

.hm-booking-form select,
.hm-booking-form input {
    padding-left: 14px;
}

.hm-booking-form textarea {
    min-height: 132px;
    padding: 14px 16px;
    resize: vertical;
}

.hm-booking-form input:focus,
.hm-booking-form select:focus,
.hm-booking-form textarea:focus,
.hm-booking-form .hm-flatpickr-input:focus {
    outline: none;
    border-color: rgba(143, 106, 40, 0.56);
    box-shadow: 0 0 0 4px rgba(204, 160, 78, 0.12);
}

.flatpickr-calendar {
    border: 1px solid rgba(204, 160, 78, 0.22);
    border-radius: 20px;
    box-shadow: 0 22px 42px rgba(35, 31, 24, 0.14);
}

.flatpickr-day.hm-booked-day,
.flatpickr-day.hm-booked-day:hover,
.flatpickr-day.hm-booked-day:focus {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #b91c1c;
}

.flatpickr-day.hm-booked-day.flatpickr-disabled,
.flatpickr-day.hm-booked-day.flatpickr-disabled:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #b91c1c;
    opacity: 1;
}

.hm-form-submit {
    margin-top: 6px;
}

.hm-form-submit button,
.hm-link-button {
    min-height: 50px;
}

.hm-form-submit button {
    min-height: 60px;
    border-radius: 999px;
    background: #18130f;
    color: #fff7eb;
    box-shadow: 0 20px 36px rgba(24, 19, 15, 0.16);
}

.hm-form-submit button:hover,
.hm-form-submit button:focus {
    color: #fff7eb;
    box-shadow: 0 24px 42px rgba(24, 19, 15, 0.22);
}

.hm-form-paypal {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.hm-form-paypal-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 58px;
    padding: 0 24px;
    border: 1px solid rgba(204, 160, 78, 0.32);
    border-radius: 999px;
    background: linear-gradient(180deg, #ffc439 0%, #f1b934 100%);
    color: #18130f;
    font-family: "Montserrat", sans-serif;
    font-size: 0.96rem;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: 0 18px 34px rgba(204, 160, 78, 0.22);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hm-form-paypal-button:hover,
.hm-form-paypal-button:focus {
    transform: translateY(-1px);
    color: #18130f;
    box-shadow: 0 22px 38px rgba(204, 160, 78, 0.28);
}

.hm-form-paypal-note {
    margin: 0;
    color: var(--hm-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.hm-contact-section .hm-contact-card p a,
.hm-location-card a,
.hm-info-card {
    color: inherit;
}

.hm-room-card a.hm-link-button,
.hm-room-card a.hm-link-button:hover,
.hm-room-card a.hm-link-button:focus,
.hm-room-card a.hm-link-button:active {
    text-decoration: none !important;
}

.hm-contact-bottom {
    margin-top: 4px;
}

.hm-map-placeholder {
    gap: 14px;
    text-align: center;
}

.hm-map-placeholder strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hm-location-card {
    display: grid;
    gap: 18px;
    align-content: start;
}

.hm-location-card .hm-link-button {
    width: fit-content;
}

.hm-contact-card h3,
.hm-location-card h3 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hm-location-meta {
    display: grid;
    gap: 12px;
}

.hm-location-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.hm-location-meta-item span {
    color: var(--hm-muted);
}

.hm-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hm-home-info-stack {
    grid-template-columns: 1fr;
    gap: 20px;
}

.hm-home-row-card {
    display: grid;
    gap: 18px;
}

.hm-home-row-card .hm-public-section {
    gap: 20px;
}

.hm-home-row-card .hm-section-heading h2 {
    margin-bottom: 0;
}

.hm-home-row-card .hm-section-heading p {
    max-width: none;
}

.hm-home-row-card .hm-contact-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.hm-home-row-card .hm-contact-card,
.hm-home-row-card .hm-location-card {
    padding: 22px;
    border-radius: 22px;
}

.hm-home-row-card .hm-contact-card h3,
.hm-home-row-card .hm-location-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.hm-home-row-card .hm-location-layout {
    grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1.28fr);
    gap: 18px;
    align-items: stretch;
}

.hm-home-row-card .hm-location-map iframe,
.hm-home-row-card .hm-map-placeholder {
    min-height: 300px;
}

.hm-home-row-card .hm-location-card .hm-link-button {
    margin-top: 6px;
}

@media (max-width: 1100px) {
    .hm-booking-layout {
        grid-template-columns: 1fr;
    }

    .hm-home-row-card .hm-contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hm-home-row-card .hm-location-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .hm-hero {
        padding: 28px;
        border-radius: 28px;
    }

    .hm-form-grid-two {
        grid-template-columns: 1fr;
    }

    .hm-home-row-card .hm-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Header motion */
body {
    --ps-header-admin-offset: 0px;
    --ps-header-height: 120px;
}

body.admin-bar {
    --ps-header-admin-offset: 32px;
}

@media (max-width: 782px) {
    body.admin-bar {
        --ps-header-admin-offset: 46px;
    }
}

#masthead {
    position: fixed !important;
    top: var(--ps-header-admin-offset) !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9990;
    transform: translate3d(0, 0, 0);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    will-change: transform;
}

body {
    padding-top: calc(var(--ps-header-height) + var(--ps-header-admin-offset));
}

body.admin-bar #masthead,
body.ast-primary-sticky-header-active #masthead,
body.ast-sticky-active #masthead {
    top: var(--ps-header-admin-offset) !important;
}

#masthead .ast-main-header-wrap,
#masthead .ast-primary-header-bar {
    background: rgba(17, 17, 17, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

#masthead .ast-primary-header-bar {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

#masthead .ast-above-header-bar {
    max-height: 40px;
    overflow: hidden;
    min-height: 0;
    opacity: 1;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #cca04e;
    transition: max-height 0.3s ease, opacity 0.25s ease, border-color 0.25s ease, border-width 0.25s ease, padding 0.25s ease;
}

body.ps-header-ready:not(.ps-header-at-top) #masthead .ast-above-header-bar {
    max-height: 0;
    min-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom-width: 0;
    border-bottom-style: none;
    border-bottom-color: transparent;
}

body.ps-header-hidden #masthead {
    transform: translate3d(0, calc(-100% - 8px), 0);
}

body.ast-primary-sticky-header-active #masthead,
body.ast-sticky-active #masthead {
    top: var(--ps-header-admin-offset);
}

@media (max-width: 921px) {
    body {
        --ps-header-height: 80px;
    }
}

/* Global footer */
.site-footer {
    display: none !important;
}

.hm-site-footer,
.hm-site-footer * {
    box-sizing: border-box;
}

.hm-site-footer {
    position: relative;
    margin-top: 48px;
    background:
        radial-gradient(circle at top right, rgba(204, 160, 78, 0.2), transparent 30%),
        linear-gradient(135deg, #0e0c09 0%, #18140f 52%, #211a11 100%);
    color: #fff7eb;
    overflow: hidden;
}

.hm-site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 28%);
    pointer-events: none;
}

.hm-site-footer__inner {
    position: relative;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 54px 0 22px;
}

.hm-site-footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 0.88fr));
    gap: 24px;
    align-items: start;
}

.hm-site-footer__brand,
.hm-site-footer__links,
.hm-site-footer__contacts,
.hm-site-footer__cta {
    background: rgba(255, 248, 236, 0.04);
    border: 1px solid rgba(204, 160, 78, 0.15);
    border-radius: 28px;
    padding: 28px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hm-site-footer__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #cca04e;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hm-site-footer__eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: rgba(204, 160, 78, 0.45);
}

.hm-site-footer__brand h2,
.hm-site-footer__links h3,
.hm-site-footer__contacts h3,
.hm-site-footer__cta h3 {
    margin: 0;
    color: #fff7eb;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.03em;
}

.hm-site-footer__brand h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.96;
}

.hm-site-footer__brand p,
.hm-site-footer__cta p {
    margin: 14px 0 0;
    color: rgba(255, 247, 235, 0.78);
    font-size: 15px;
    line-height: 1.8;
}

.hm-site-footer__address {
    margin-top: 8px !important;
    color: rgba(255, 247, 235, 0.92);
    font-weight: 600;
}

.hm-site-footer__service-list {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.hm-site-footer__service-list > span,
.hm-site-footer__contacts li {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
}

.hm-site-footer__service-list i,
.hm-site-footer__contacts i {
    color: #cca04e;
    line-height: 1.5;
}

.hm-site-footer__service-list span span,
.hm-site-footer__contacts span,
.hm-site-footer__contacts a {
    color: rgba(255, 247, 235, 0.84);
    font-size: 14px;
    line-height: 1.7;
    text-decoration: none;
}

.hm-site-footer__links ul,
.hm-site-footer__contacts ul {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.hm-site-footer__links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 247, 235, 0.84);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.hm-site-footer__links a::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(204, 160, 78, 0.8);
    flex: 0 0 auto;
}

.hm-site-footer__links a:hover,
.hm-site-footer__contacts a:hover,
.hm-site-footer__bottom a:hover {
    color: #cca04e;
}

.hm-site-footer__links a:hover {
    transform: translateX(2px);
}

.hm-site-footer__cta {
    background: linear-gradient(180deg, rgba(204, 160, 78, 0.12), rgba(255, 248, 236, 0.04));
}

.hm-site-footer__cta .hm-link-button {
    margin-top: 22px;
    width: 100%;
    justify-content: center;
    text-decoration: none;
}

.hm-site-footer__cta-actions {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.hm-site-footer__cta-actions .hm-link-button {
    margin-top: 0;
}

.hm-site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
    padding: 18px 6px 0;
    border-top: 1px solid rgba(204, 160, 78, 0.14);
    color: rgba(255, 247, 235, 0.66);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hm-site-footer__bottom p {
    margin: 0;
}

.hm-site-footer__bottom a {
    color: rgba(255, 247, 235, 0.66);
    text-decoration: none;
}

#ps-home-boutique,
#ps-home-signature,
#ps-web-gallery {
    font-family: 'Montserrat', sans-serif;
}

#ps-home-boutique h2,
#ps-home-signature h2,
#ps-web-gallery h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #18130f;
}

#ps-home-boutique .ps-stat,
#ps-home-signature .ps-card,
#ps-home-boutique .ps-note {
    box-shadow: 0 22px 44px rgba(29, 24, 17, 0.08);
}

#ps-home-boutique .ps-btn,
#ps-home-signature .ps-cta a,
#ps-web-gallery .ps-web-gallery__link {
    box-shadow: 0 18px 34px rgba(19, 15, 11, 0.14);
    text-decoration: none !important;
}

.hm-ai-agent-shell {
    position: fixed;
    left: 22px;
    bottom: 24px;
    z-index: 9998;
    display: grid;
    justify-items: start;
    gap: 14px;
}

.hm-ai-agent-launcher {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 72px;
    padding: 10px 20px 10px 10px;
    border: 1px solid rgba(204, 160, 78, 0.26);
    border-radius: 999px;
    background-color: #18130f !important;
    background-image: linear-gradient(180deg, rgba(18, 16, 12, 0.98), rgba(31, 25, 19, 0.98)) !important;
    color: #fffdfa !important;
    box-shadow: 0 20px 40px rgba(17, 14, 9, 0.28);
    cursor: pointer;
    text-decoration: none !important;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.hm-ai-agent-launcher:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(17, 14, 9, 0.34);
}

.hm-ai-agent-launcher__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(204, 160, 78, 0.22), rgba(204, 160, 78, 0.36));
    color: #cca04e;
    flex: 0 0 auto;
}

.hm-ai-agent-launcher__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hm-ai-agent-launcher__avatar i {
    font-size: 18px;
}

.hm-ai-agent-launcher__label {
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.hm-ai-agent-drawer {
    width: min(438px, calc(100vw - 32px));
    opacity: 0;
    transform: translateX(-14px) translateY(12px) scale(0.985);
    transform-origin: left bottom;
    pointer-events: none;
    transition: opacity 0.26s ease, transform 0.26s ease;
    background: transparent;
}

.hm-ai-agent-shell.is-open .hm-ai-agent-drawer {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
    pointer-events: auto;
}

.hm-ai-agent-card {
    display: grid;
    gap: 18px;
    padding: 26px;
    border: 1px solid rgba(204, 160, 78, 0.22);
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(204, 160, 78, 0.12), transparent 34%),
        linear-gradient(180deg, #fffdfa 0%, #f7efe2 100%);
    box-shadow: 0 28px 70px rgba(25, 20, 12, 0.22);
    backdrop-filter: blur(10px);
}

.hm-ai-agent-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.hm-ai-agent-card__head span {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--hm-accent-dark);
    font-family: "Montserrat", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hm-ai-agent-card__head h3 {
    margin: 0;
    color: var(--hm-text);
    font-size: clamp(2rem, 4vw, 2.6rem);
    line-height: 0.98;
    max-width: 11ch;
}

.hm-ai-agent-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(204, 160, 78, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    color: var(--hm-text);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hm-ai-agent-close:hover {
    transform: translateY(-1px);
    background: #fffdfa;
}

.hm-ai-agent-thread {
    display: grid;
    gap: 12px;
    max-height: 360px;
    overflow-y: auto;
    padding-right: 4px;
}

.hm-ai-agent-message {
    display: flex;
    animation: hmFadeUp 0.32s ease both;
}

.hm-ai-agent-message.is-user {
    justify-content: flex-end;
}

.hm-ai-agent-message__bubble {
    max-width: min(92%, 520px);
    padding: 14px 16px;
    border-radius: 22px;
    background: rgba(204, 160, 78, 0.11);
    color: #231d16;
    font-family: "Montserrat", sans-serif;
    font-size: 0.94rem;
    line-height: 1.68;
    text-decoration: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.hm-ai-agent-message.is-user .hm-ai-agent-message__bubble {
    background: linear-gradient(180deg, #231d17, #17120e);
    color: #fffdfa;
}

.hm-ai-agent-composer {
    display: grid;
    gap: 12px;
}

.hm-ai-agent-composer textarea {
    width: 100%;
    min-height: 110px;
    padding: 16px 18px;
    border: 1px solid rgba(204, 160, 78, 0.26);
    border-radius: 22px;
    background: #fffdfa;
    color: var(--hm-text);
    font-family: "Montserrat", sans-serif;
    font-size: 0.95rem;
    box-sizing: border-box;
    resize: vertical;
    transition: border-color 0.24s ease, box-shadow 0.24s ease;
}

.hm-ai-agent-composer textarea:focus {
    outline: none;
    border-color: rgba(143, 106, 40, 0.56);
    box-shadow: 0 0 0 4px rgba(204, 160, 78, 0.12);
}

.hm-ai-agent-actions {
    display: flex;
    justify-content: flex-start;
}

.hm-ai-agent-actions .hm-link-button {
    width: 100%;
    min-width: 0;
    justify-content: center;
    background: #cca04e;
    border-color: #cca04e;
    color: #18130f;
    box-shadow: 0 18px 34px rgba(204, 160, 78, 0.28);
    text-decoration: none;
}

.hm-ai-agent-actions .hm-link-button.is-loading {
    opacity: 0.75;
    pointer-events: none;
}

.hm-ai-agent-typing {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 18px;
}

.hm-ai-agent-typing span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(80, 60, 26, 0.52);
    animation: hmTypingDot 1.1s infinite ease-in-out;
}

.hm-ai-agent-typing span:nth-child(2) {
    animation-delay: 0.15s;
}

.hm-ai-agent-typing span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes hmTypingDot {
    0%, 80%, 100% {
        opacity: 0.28;
        transform: translateY(0);
    }
    40% {
        opacity: 1;
        transform: translateY(-2px);
    }
}

@keyframes hmFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Font Awesome 5 fallback for Elementor sections that still use v6 aliases. */
.fa-location-dot::before {
    content: "\f3c5";
}

@media (max-width: 1100px) {
    .hm-home-story,
    .hm-contact-stage,
    .hm-location-stage,
    .hm-home-cta,
    .hm-booking-layout {
        grid-template-columns: 1fr;
    }

    .hm-booking-intro .hm-section-heading p {
        max-width: none;
    }

    .hm-home-cta .hm-link-button {
        min-width: 0;
        width: 100%;
    }
}

@media (max-width: 1180px) {
    .hm-site-footer__top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hm-site-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .hm-home-story__content,
    .hm-home-story__visual,
    .hm-home-cta,
    .hm-contact-lead,
    .hm-location-card,
    .hm-location-map,
    .hm-home-row-card {
        padding: 22px;
        border-radius: 24px;
    }

    .hm-home-story__stats,
    .hm-home-story__services {
        grid-template-columns: 1fr;
    }

    .hm-contact-card {
        grid-template-columns: 1fr;
    }

    .hm-contact-card__icon {
        width: 48px;
        height: 48px;
    }

    .hm-contact-card__body h3 {
        font-size: 1.4rem;
    }

    .hm-room-card-content {
        padding: 0 22px 22px;
    }

    .hm-room-card h3 {
        font-size: 1.9rem;
    }

    .hm-room-card-media,
    .hm-room-card-media img {
        min-height: 220px;
    }

    .hm-booking-form-wrapper {
        padding: 26px 20px;
        border-radius: 28px;
    }

    .hm-booking-panel {
        padding: 24px 20px;
        border-radius: 24px;
    }

    .hm-booking-intro .hm-section-heading h2 {
        font-size: 2.65rem;
    }

    .hm-form-grid-two {
        grid-template-columns: 1fr;
    }

    .hm-site-footer {
        margin-top: 36px;
    }

    .hm-site-footer__inner {
        width: min(1240px, calc(100% - 20px));
        padding: 36px 0 18px;
    }

    .hm-site-footer__top {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hm-site-footer__brand,
    .hm-site-footer__links,
    .hm-site-footer__contacts,
    .hm-site-footer__cta {
        padding: 22px;
        border-radius: 22px;
    }

    .hm-site-footer__bottom {
        flex-direction: column;
        gap: 10px;
        font-size: 11px;
    }

    .hm-ai-agent-shell {
        left: 10px;
        right: 10px;
        bottom: 14px;
    }

    .hm-ai-agent-drawer {
        width: min(100vw - 20px, 438px);
    }

    .hm-ai-agent-launcher {
        min-height: 60px;
        padding: 8px 14px 8px 8px;
    }

    .hm-ai-agent-launcher__avatar {
        width: 44px;
        height: 44px;
    }

    .hm-ai-agent-launcher__label {
        font-size: 0.88rem;
    }

    .hm-ai-agent-card {
        padding: 18px;
        border-radius: 20px;
    }

    .hm-ai-agent-card__head {
        gap: 12px;
    }

    .hm-ai-agent-card__head h3 {
        font-size: 1.85rem;
    }

    .hm-ai-agent-actions .hm-link-button {
        width: 100%;
        min-width: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hm-room-card,
    .hm-link-button,
    .hm-info-card,
    .hm-ai-agent-launcher,
    .hm-ai-agent-drawer,
    .hm-ai-agent-message {
        animation: none !important;
        transition: none !important;
    }
}
