/* ==========================================================
   Indra Manel Family Holiday Resort
   Palette: black | white | #ac8781 | #f1aab0
   ========================================================== */

:root {
    --primary: #000000;
    --black: #000000;
    --dark-2: #1a1a1a;
    --pink: #f1aab0;
    --pink-dark: #e8969e;
    --rose: #ac8781;
    --rose-dark: #96726c;
    --heading: #000000;
    --text: #5a5555;
    --line: #ebe4e3;
    --gray-bg: #faf8f8;
    --white: #ffffff;
    --surface: #ffffff;
    --on-dark: #ffffff;
    --serif: 'Roboto', 'Segoe UI', sans-serif;
    --sans: 'Roboto', 'Segoe UI', sans-serif;
    --ease: cubic-bezier(.25, .65, .35, 1);
    --overlay-hero: linear-gradient(90deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .38) 55%, rgba(0, 0, 0, .6) 100%);
    --overlay-photo: rgba(0, 0, 0, .66);
    --overlay-dark: rgba(0, 0, 0, .94);
    --ambient-a: rgba(241, 170, 176, .06);
    --ambient-b: rgba(172, 135, 129, .04);
    --top-text: #d4c4c0;
    --surface-shadow: rgba(0, 0, 0, .1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--pink) #141414;
}
html::-webkit-scrollbar {
    width: 10px;
}
html::-webkit-scrollbar-track {
    background: #141414;
}
html::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--pink) 0%, var(--rose) 100%);
    border-radius: 999px;
    border: 2px solid #141414;
}
html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--pink-dark) 0%, var(--rose-dark) 100%);
}

body {
    font-family: var(--sans);
    font-size: 16px;
    color: var(--text);
    background: var(--surface);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background-color 1.4s ease, color 1.4s ease;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--serif); color: var(--heading); font-weight: 600; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1170px; margin: 0 auto; padding: 0 15px; }

::selection { background: var(--pink); color: var(--black); }

/* ============ CURTAIN PAGE TRANSITION ============ */
.curtain { position: fixed; inset: 0; z-index: 10000; display: flex; pointer-events: none; }
.curtain-panel {
    flex: 1;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .5s var(--ease);
}
.curtain.in .curtain-panel { transform-origin: bottom; }
.curtain.active { pointer-events: all; }
.curtain.active .curtain-panel { transform: scaleY(1); }
.curtain-panel:nth-child(2) { transition-delay: .06s; }
.curtain-panel:nth-child(3) { transition-delay: .12s; }
.curtain-logo {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(.75);
    opacity: 0;
    transition: opacity .3s ease .15s, transform .4s var(--ease) .15s;
    z-index: 1;
}
.curtain-logo img {
    display: block;
    width: min(220px, 55vw);
    height: auto;
}
.curtain.active .curtain-logo { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ============ TOP BAR ============ */
.top-bar { background: var(--primary); }
.top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
}
.top-info { display: flex; gap: 28px; font-size: .875rem; color: var(--white); }
.top-info li { display: flex; align-items: center; gap: 8px; }
.top-info a { color: var(--white); }
.top-info i { color: var(--white); font-size: .85rem; }
.top-info a:hover { color: var(--pink); }
.top-time {
    padding: 4px 14px;
    border: 1px solid rgba(241, 170, 176, .35);
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: border-color 1.4s ease, background 1.4s ease;
}
.top-time i { font-size: .82rem; }
.top-book {
    background: var(--pink);
    color: var(--primary);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 30px;
    align-self: stretch;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: background .3s ease;
}
.top-book:hover { background: var(--pink-dark); }

/* ============ NAVBAR ============ */
.navbar {
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow .3s ease;
}
.navbar.solid { box-shadow: 0 6px 24px rgba(0, 0, 0, .1); }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 20px;
}
.brand { display: flex; align-items: center; }
.brand-logo {
    height: 52px;
    width: auto;
    display: block;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
    position: relative;
    padding: 28px 16px;
    font-size: .875rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    transition: color .3s ease;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 16px; right: 16px; bottom: 18px;
    height: 2px;
    background: var(--rose);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--rose); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    padding: 10px;
}
.burger span {
    width: 25px; height: 2px;
    background: var(--primary);
    transition: transform .3s var(--ease), opacity .3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ BUTTONS ============ */
.btn {
    display: inline-block;
    background: var(--pink);
    color: var(--primary);
    font-family: var(--sans);
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 32px;
    border: 0;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    transition: background .3s ease, transform .3s var(--ease);
}
.btn:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
}
.btn-block { width: 100%; text-align: center; }

.ripple-wave {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    transform: scale(0);
    animation: ripple-out .65s ease-out forwards;
    pointer-events: none;
}
.filter:hover .ripple-wave,
.filter.active .ripple-wave {
    background: rgba(241, 170, 176, .45);
}
@keyframes ripple-out {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.primary-link, .more-link {
    display: inline-block;
    font-size: .8125rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--rose);
    position: relative;
    padding-bottom: 4px;
}
.primary-link::after, .more-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: currentColor;
    transform: scaleX(.4);
    transform-origin: left;
    transition: transform .35s var(--ease);
}
.primary-link:hover::after, .more-link:hover::after { transform: scaleX(1); }

/* ============ SECTION TITLES ============ */
.section { padding: 90px 0; position: relative; overflow: hidden; }
.section.gray { background: var(--gray-bg); }
.section-title { text-align: center; margin-bottom: 60px; }
.section-title span {
    display: block;
    font-size: .875rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 14px;
}
.section-title h2 {
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 1.25;
}
.section-title.left { text-align: left; }
.section-title.small h2 { font-size: 1.8rem; }
.lede { font-size: 1.05rem; margin-bottom: 28px; }

/* ============ HERO ============ */
.hero { position: relative; min-height: 680px; display: flex; align-items: center; overflow: visible; }
.hero-slider { position: absolute; inset: 0; }
.hs-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.1s ease, transform 6.5s linear;
}
.hs-slide.is-active { opacity: 1; transform: scale(1); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-hero);
    transition: background 1.6s ease;
}
.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding-top: 70px;
    padding-bottom: 70px;
    overflow: visible;
}
.hero-text h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    font-weight: 700;
    color: var(--on-dark);
    line-height: 1.15;
    margin-bottom: 22px;
}
.hero-text p {
    color: rgba(255, 255, 255, .85);
    font-size: 1.05rem;
    max-width: 520px;
    margin-bottom: 34px;
}

/* Booking widget — always dark on hero photo */
.hero-booking {
    background: #1a1a1a;
    border: 1px solid #2a2424;
    padding: 40px 35px;
    border-radius: 2px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
    max-width: 360px;
    justify-self: end;
    width: 100%;
    position: relative;
    overflow: visible;
    z-index: 3;
    color: #ffffff;
}
.hero-booking form {
    position: relative;
    overflow: visible;
}
.hero-booking.bp-open {
    z-index: 50;
}
.hero-booking h3 {
    font-size: 1.35rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #2a2424;
    color: #ffffff;
}
.bp-fields-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bp-picker-body {
    position: relative;
    margin-bottom: 16px;
}
.bp-picker-body .sb-panel {
    z-index: 20;
}
.hero-booking .bp-field-block {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #2a2424;
    border-radius: 2px;
    background: #141414;
    text-align: left;
    gap: 4px;
    color: #ffffff;
}
.hero-booking .bp-field-block .sb-label {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
}
.hero-booking .bp-field-block .sb-value .sb-display {
    font-size: .95rem;
    font-weight: 500;
    color: #ffffff;
}
.hero-booking .bp-field-block .sb-value > i {
    font-size: .95rem;
    color: #ffffff;
}
.hero-booking .bp-field-block.is-active {
    border-color: var(--rose);
    background: rgba(241, 170, 176, .12);
}
.hero-booking .bp-picker-body .sb-panel {
    left: 0;
    right: 0;
    top: auto;
    bottom: calc(100% + 6px);
}
.hero-booking .bp-picker-body .sb-cal-months {
    grid-template-columns: 1fr;
    gap: 14px;
}
.hero-booking .bp-picker-body .sb-cal-months .sb-month:nth-child(2) {
    display: none;
}
.hero-booking .bp-picker-body .sb-calendar {
    padding: 34px 12px 12px;
}
.hero-booking .bp-picker-body .sb-guests-panel {
    left: 0;
    right: 0;
    width: auto;
}
.hb-room-field {
    position: relative;
    margin-bottom: 16px;
    z-index: 2;
}
.hero-booking .hb-room-field.is-open {
    z-index: 40;
}
.hero-booking .hb-room-field .sb-room-panel {
    position: absolute;
    top: auto;
    bottom: calc(100% + 6px);
    left: 0;
    right: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 6px;
    max-height: 220px;
    overflow-x: hidden;
    overflow-y: auto;
    background: #1a1a1a;
    border: 1px solid #2a2424;
    border-radius: 8px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, .45);
    z-index: 50;
}
.hero-booking .hb-room-field .sb-room-panel.is-open {
    display: flex;
}
.hero-booking .sb-room-option {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 12px 14px;
    border: 0;
    outline: 0;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    font-family: var(--sans);
    font-size: .9rem;
    font-weight: 500;
    color: #ffffff;
    text-align: left;
    border-radius: 6px;
    cursor: pointer;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background .2s ease;
}
.hero-booking .sb-room-option:hover,
.hero-booking .sb-room-option.is-selected {
    background: rgba(241, 170, 176, .25);
}
.hero-booking .hb-picker-val,
.hero-booking .bp-field-block .sb-value > i {
    color: #ffffff;
}
.hero-booking .bp-field-block.sb-field {
    border-radius: 2px;
    flex: none;
    width: 100%;
    padding: 12px 14px;
}
.hb-field { margin-bottom: 16px; }
.hb-field label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 6px;
}
.hb-field input, .hb-field select {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 2px;
    font-family: var(--sans);
    font-size: .95rem;
    color: var(--heading);
    background: var(--surface);
    transition: border-color .3s ease;
}
.hb-field input:focus, .hb-field select:focus { outline: 0; border-color: var(--rose); }
.hero-booking .btn { margin-top: 8px; }

/* Sticky booking bar (home, after hero) */
.sticky-booking {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h, 126px);
    z-index: 990;
    padding: 14px 0;
    transform: translateY(calc(-100% - 20px));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .45s var(--ease), opacity .35s ease, visibility .35s;
}
.sticky-booking.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.sticky-booking-wrap {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
}
.sticky-booking-form {
    display: flex;
    align-items: stretch;
    background: var(--white);
    border-radius: 999px;
    box-shadow:
        0 16px 44px rgba(0, 0, 0, .32),
        0 6px 18px rgba(0, 0, 0, .2);
    padding: 5px 5px 5px 0;
}
.sb-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    padding: 15px 30px;
    min-width: 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    margin: 0;
    font-family: var(--sans);
    border-radius: 999px;
    transition: background .25s ease;
}
.sb-field.is-active {
    background: rgba(241, 170, 176, .22);
}
.sb-label {
    font-size: .7rem;
    font-weight: 400;
    color: #9a9a9a;
    letter-spacing: .01em;
    line-height: 1.2;
}
.sb-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 22px;
}
.sb-display {
    font-size: .98rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sticky-booking-form .sb-display,
.sticky-booking-form .sb-value > i {
    color: var(--primary);
}
.sb-value > i {
    font-size: .92rem;
    flex-shrink: 0;
}
.sb-divider {
    width: 1px;
    background: #e8e8e8;
    margin: 16px 0;
    flex-shrink: 0;
}
.sb-search {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-shrink: 0;
    align-self: center;
    margin-right: 5px;
    padding: 17px 30px;
    border: 0;
    border-radius: 999px;
    background: var(--black);
    color: var(--white);
    font-family: var(--sans);
    font-size: .92rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: background .3s ease;
}
.sb-search:hover { background: #1a1a1a; }
.sb-search i { font-size: .82rem; }

/* Dropdown panels */
.sb-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
    z-index: 5;
    animation: sb-panel-in .25s var(--ease);
}
@keyframes sb-panel-in {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}
.sb-calendar {
    padding: 38px 18px 16px;
    position: relative;
    max-width: 560px;
}
.sb-cal-head {
    position: absolute;
    top: 12px;
    left: 18px;
    right: 18px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}
.sb-cal-head .sb-cal-arrow { pointer-events: auto; }
.sb-cal-arrow {
    width: 28px;
    height: 28px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: .62rem;
    transition: border-color .2s ease, background .2s ease;
}
.sb-cal-arrow:hover {
    border-color: var(--rose);
    background: rgba(241, 170, 176, .12);
}
.sb-cal-months {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 22px;
}
.sb-month-title {
    text-align: center;
    font-size: .82rem;
    font-weight: 500;
    color: #6b6b6b;
    margin-bottom: 10px;
}
.sb-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    margin-bottom: 4px;
}
.sb-weekdays span {
    text-align: center;
    font-size: .64rem;
    font-weight: 500;
    color: #b0b0b0;
    padding: 2px 0;
}
.sb-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
}
.sb-day {
    aspect-ratio: 1;
    max-width: 30px;
    max-height: 30px;
    width: 100%;
    margin: 0 auto;
    border: 0;
    background: transparent;
    border-radius: 50%;
    font-family: var(--sans);
    font-size: .72rem;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: color .2s ease;
}
.sb-day.is-other { color: #d0d0d0; }
.sb-day.is-disabled {
    color: #ddd;
    cursor: not-allowed;
    pointer-events: none;
}
.sb-day.in-range::before {
    content: '';
    position: absolute;
    inset: 0 -1px;
    background: rgba(241, 170, 176, .28);
    z-index: -1;
    border-radius: 0;
}
.sb-day.is-start.in-range::before {
    border-radius: 50% 0 0 50%;
    left: 50%;
}
.sb-day.is-end.in-range::before {
    border-radius: 0 50% 50% 0;
    right: 50%;
}
.sb-day.is-start.is-end.in-range::before { border-radius: 50%; inset: 0; }
.sb-day.is-today:not(.is-start):not(.is-end) {
    box-shadow: inset 0 0 0 1.5px var(--rose);
}
.sb-day.is-start,
.sb-day.is-end {
    background: var(--rose);
    color: var(--white);
}
.sb-day:not(.is-disabled):not(.is-start):not(.is-end):hover {
    background: rgba(241, 170, 176, .35);
}

.sb-guests-panel {
    left: auto;
    right: 110px;
    width: min(340px, 100%);
    padding: 18px 22px;
}
.sb-guest-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
}
.sb-guest-row + .sb-guest-row {
    border-top: 1px solid var(--line);
}
.sb-guest-row > i {
    width: 20px;
    text-align: center;
    color: var(--primary);
    font-size: 1rem;
}
.sb-guest-label {
    flex: 1;
    font-size: .95rem;
    font-weight: 500;
    color: var(--primary);
}
.sb-counter {
    display: flex;
    align-items: center;
    gap: 14px;
}
.sb-count-btn {
    width: 34px;
    height: 34px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    font-size: 1.15rem;
    line-height: 1;
    display: grid;
    place-items: center;
    transition: border-color .2s ease, background .2s ease;
}
.sb-count-btn:hover {
    border-color: var(--rose);
    background: rgba(241, 170, 176, .15);
}
.sb-count-val {
    min-width: 30px;
    height: 30px;
    padding: 0 6px;
    display: grid;
    place-items: center;
    background: rgba(241, 170, 176, .3);
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--primary);
}

.hero-arrows { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hs-prev, .hs-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px; height: 50px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    background: transparent;
    color: var(--on-dark);
    font-size: 1rem;
    pointer-events: all;
    overflow: hidden;
    transition: background .3s ease, border-color .3s ease, color .3s ease;
}
.hs-prev { left: 26px; }
.hs-next { right: 26px; }
.hs-prev:hover, .hs-next:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--primary);
}

/* ============ ABOUT ============ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 70px;
    align-items: center;
}
.about-text .section-title { margin-bottom: 30px; }
.about-text .f-para { margin-bottom: 18px; }
.about-text .s-para { margin-bottom: 34px; }
.about-pics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.about-pics img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 2px;
}
.about-pics img:nth-child(2) { margin-top: 40px; height: 380px; }

/* ============ SERVICES ============ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.services-grid.four { grid-template-columns: repeat(4, 1fr); }
.service-item {
    text-align: center;
    padding: 46px 34px;
    border: 1px solid transparent;
    transition: border-color .35s ease, box-shadow .35s ease, transform .35s var(--ease);
}
.service-item:hover {
    border-color: #cfeeda;
    box-shadow: 0 18px 46px rgba(0, 0, 0, .08);
    transform: translateY(-4px);
}
.service-item i {
    font-size: 2.4rem;
    color: var(--rose);
    margin-bottom: 22px;
}
.service-item h4 { font-size: 1.25rem; margin-bottom: 12px; }
.service-item p { font-size: .95rem; }

/* ============ HP ROOMS (DARK HOVER GRID) ============ */
.hp-rooms {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.hp-room {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.hp-room::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--overlay-dark) 0%, color-mix(in srgb, var(--overlay-dark) 30%, transparent) 55%, transparent 100%);
    transition: background .4s ease, opacity 1.6s ease;
}
.hp-room:hover::before {
    background: linear-gradient(to top, var(--overlay-dark) 0%, color-mix(in srgb, var(--overlay-dark) 65%, transparent) 65%, color-mix(in srgb, var(--overlay-dark) 22%, transparent) 100%);
}
.hp-room-content {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 30px 28px;
    transform: translateY(98px);
    transition: transform .5s var(--ease);
}
.hp-room:hover .hp-room-content { transform: translateY(0); }
.hp-room-content h3 { color: var(--on-dark); font-size: 1.35rem; margin-bottom: 8px; }
.hp-room-content h2 {
    color: var(--pink);
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.hp-room-content h2 span {
    font-family: var(--sans);
    font-size: .85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .75);
}
.hp-room-content table { border-collapse: collapse; margin-bottom: 18px; }
.hp-room-content td {
    font-size: .875rem;
    color: rgba(255, 255, 255, .85);
    padding: 4px 0;
    vertical-align: top;
}
.hp-room-content .rc-label { width: 90px; color: rgba(255, 255, 255, .55); }
.hp-room-content .more-link { color: var(--pink); }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--gray-bg); }
.ts-slider {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    min-height: 260px;
    padding-bottom: 50px;
}
.ts-item {
    position: absolute;
    inset: 0 0 50px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: opacity .6s ease, transform .6s var(--ease), visibility .6s;
}
.ts-item.is-active { opacity: 1; visibility: visible; transform: translateY(0); }
.ts-item p { font-size: 1.08rem; margin-bottom: 26px; }
.ts-stars { color: var(--rose); font-size: .9rem; letter-spacing: 4px; margin-bottom: 18px; }
.ts-item h5 {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.ts-dots {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.ts-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 0;
    background: #c2d4c7;
    transition: background .3s ease, transform .3s ease;
}
.ts-dot.active { background: var(--rose); transform: scale(1.25); }

/* ============ NEWS ============ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 24px;
}
.news-card {
    position: relative;
    grid-row: span 1;
    background-size: cover;
    background-position: center;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.news-card.tall { grid-row: span 2; }
.news-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .22) 60%, transparent 100%);
    transition: background .35s ease;
}
.news-card:hover::before { background: linear-gradient(to top, rgba(0, 0, 0, .96), rgba(0, 0, 0, .4)); }
.news-meta { position: relative; padding: 24px; }
.news-cat {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 8px;
}
.news-meta h4 {
    color: var(--on-dark);
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 8px;
    transition: color .3s ease;
}
.news-card:hover .news-meta h4 { color: var(--pink); }
.news-meta p { font-size: .8rem; color: rgba(255, 255, 255, .7); }
.news-meta i { margin-right: 6px; }

/* ============ BREADCRUMB (INNER PAGE HERO) ============ */
.breadcrumb {
    position: relative;
    padding: 130px 0 110px;
    overflow: hidden;
    text-align: center;
}
.breadcrumb-bg {
    position: absolute;
    inset: -18% 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}
.breadcrumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--overlay-photo);
    transition: background 1.6s ease;
}
.breadcrumb-inner { position: relative; z-index: 2; }
.breadcrumb h2 {
    color: var(--on-dark);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.bt-option { font-size: .9rem; color: rgba(255, 255, 255, .75); }
.bt-option a {
    color: var(--on-dark);
    font-weight: 600;
    position: relative;
    margin-right: 20px;
}
.bt-option a::after {
    content: '\\203A';
    position: absolute;
    right: -14px;
    color: rgba(255, 255, 255, .6);
}
.bt-option a:hover { color: var(--pink); }
.bt-option span { color: var(--pink); }

/* ============ ROOMS PAGE ============ */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.room-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 2px;
    overflow: hidden;
    transition: box-shadow .35s ease, transform .35s var(--ease);
}
.room-item:hover {
    box-shadow: 0 22px 56px rgba(0, 0, 0, .14);
    transform: translateY(-5px);
}
.ri-pic { overflow: hidden; }
.ri-pic img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform .7s var(--ease);
}
.room-item:hover .ri-pic img { transform: scale(1.07); }
.ri-text { padding: 26px 26px 30px; }
.ri-text h4 { font-size: 1.3rem; margin-bottom: 6px; }
.ri-text h3 {
    color: var(--rose);
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 16px;
}
.ri-text h3 span {
    font-family: var(--sans);
    font-size: .8rem;
    font-weight: 400;
    color: var(--text);
}
.ri-text table { border-collapse: collapse; margin-bottom: 14px; width: 100%; }
.ri-text td { font-size: .875rem; padding: 4px 0; vertical-align: top; }
.ri-label { width: 92px; color: var(--heading); font-weight: 600; }
.ri-text p { font-size: .92rem; margin-bottom: 18px; }

/* ============ CTA ============ */
.cta { position: relative; padding: 100px 0; overflow: hidden; text-align: center; }
.cta-bg {
    position: absolute;
    inset: -18% 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}
.cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--overlay-photo);
    transition: background 1.6s ease;
}
.cta-inner { position: relative; z-index: 2; }
.cta-inner h2 { color: var(--on-dark); font-size: 2.4rem; margin-bottom: 14px; }
.cta-inner p {
    color: rgba(255, 255, 255, .8);
    max-width: 520px;
    margin: 0 auto 30px;
}

/* ============ GALLERY ============ */
.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 50px;
}
.filter {
    padding: 10px 24px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: var(--surface);
    color: var(--primary);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
}
.filter:hover, .filter.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--pink);
}
.masonry { columns: 3; column-gap: 20px; }
.shot {
    position: relative;
    margin-bottom: 20px;
    border-radius: 2px;
    overflow: hidden;
    break-inside: avoid;
}
.shot.hide { display: none; }
.shot img { width: 100%; transition: transform .7s var(--ease); }
.shot:hover img { transform: scale(1.06); }
.shot figcaption {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .88), rgba(0, 0, 0, .12));
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 18px;
    color: var(--white);
    font-size: .9rem;
    opacity: 0;
    transition: opacity .35s ease;
}
.shot:hover figcaption { opacity: 1; }
.zoom {
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 0;
    background: var(--pink);
    color: var(--primary);
    font-size: .95rem;
    position: relative;
    overflow: hidden;
    transition: background .3s ease, transform .3s var(--ease);
}
.zoom:hover { background: var(--pink-dark); transform: scale(1.12); }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9500;
    background: rgba(0, 0, 0, .94);
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
    max-width: min(1100px, 92vw);
    max-height: 86vh;
    border-radius: 2px;
    transform: scale(.88);
    transition: transform .45s cubic-bezier(.34, 1.45, .64, 1);
}
.lightbox.open img { transform: scale(1); }
.lightbox-x {
    position: absolute;
    top: 26px; right: 30px;
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, .12);
    color: var(--white);
    font-size: 1.5rem;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}
.lightbox-x:hover { background: var(--pink); color: var(--primary); transform: rotate(90deg); }

/* ============ CONTACT ============ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: start;
}
.contact-side .section-title { margin-bottom: 24px; }
.contact-list { margin-top: 10px; }
.contact-list li {
    display: flex;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list i {
    width: 46px; height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--rose);
    border-radius: 50%;
    color: var(--rose);
    font-size: 1rem;
}
.contact-list h6 {
    font-family: var(--sans);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.contact-list p { font-size: .95rem; }
.contact-list a { color: var(--rose); }
.contact-list a:hover { text-decoration: underline; }
.map iframe { display: block; filter: saturate(.85); }

/* ============ PANELS & FORMS ============ */
.panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 42px;
}
.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--heading);
    margin-bottom: 8px;
}
.field input, .field select, .field textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: var(--surface);
    font-family: var(--sans);
    font-size: .95rem;
    color: var(--heading);
    transition: border-color .3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: 0;
    border-color: var(--rose);
}
.field textarea { resize: vertical; }

.notice {
    padding: 16px 20px;
    border-radius: 2px;
    margin-bottom: 24px;
    font-size: .95rem;
}
.notice-err { background: #fdf0ef; border: 1px solid #f0c4c0; color: #b23a31; }
.notice-ok {
    background: var(--gray-bg);
    border: 1px solid #c4e6cf;
    color: var(--heading);
    text-align: center;
    padding: 40px 30px;
}
.notice-ok h3 { font-size: 1.5rem; margin: 14px 0 8px; }
.notice-icon {
    display: inline-grid;
    place-items: center;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--rose);
    color: var(--white);
    font-size: 1.3rem;
}

/* ============ BOOKING ============ */
.booking-grid {
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    gap: 36px;
    align-items: start;
}
.booking-grid .section-title { margin-bottom: 26px; }
.booking-aside { display: flex; flex-direction: column; gap: 24px; }
.aside-card {
    background: var(--gray-bg);
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 32px;
}
.aside-card h3 { font-size: 1.3rem; margin-bottom: 14px; }
.ticks li { padding: 7px 0 7px 28px; position: relative; font-size: .95rem; }
.ticks li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--rose);
}
.aside-phone {
    display: block;
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--rose);
    margin: 10px 0 4px;
}
.muted { font-size: .85rem; }

.success-panel { max-width: 640px; margin: 0 auto; text-align: center; padding: 60px 48px; }
.success-tick {
    display: inline-grid;
    place-items: center;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: var(--rose);
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 24px;
    animation: pop .6s cubic-bezier(.34, 1.56, .64, 1);
}
@keyframes pop { from { transform: scale(0) rotate(-30deg); } to { transform: scale(1) rotate(0); } }
.success-panel h2 { font-size: 2rem; margin-bottom: 16px; }
.success-panel p { margin-bottom: 12px; }
.success-panel .btn { margin-top: 22px; }

/* ============ FOOTER ============ */
.footer { background: var(--primary); color: #93ab9a; }
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1.1fr .9fr 1.1fr;
    gap: 44px;
    padding: 75px 0 60px;
}
.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}
.footer-logo-img {
    height: 48px;
    width: auto;
    display: block;
}
.footer-about p { font-size: .92rem; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px; height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid #21381f;
    border-radius: 50%;
    font-size: .85rem;
    transition: all .3s ease;
}
.footer-social a:hover {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--primary);
    transform: translateY(-3px);
}
.footer-col h6 {
    font-family: var(--sans);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 22px;
}
.footer-col p { font-size: .9rem; margin-bottom: 16px; }
.footer-contact li, .footer-links li { margin-bottom: 12px; font-size: .9rem; }
.footer-contact i { color: var(--pink); width: 20px; margin-right: 8px; }
.footer-contact a:hover, .footer-links a:hover { color: var(--pink); }
.newsletter { display: flex; }
.newsletter input {
    flex: 1;
    min-width: 0;
    height: 48px;
    padding: 0 16px;
    background: transparent;
    border: 1px solid #21381f;
    border-right: 0;
    border-radius: 2px 0 0 2px;
    color: var(--white);
    font-family: var(--sans);
    font-size: .9rem;
}
.newsletter input::placeholder { color: #8a7a76; }
.newsletter input:focus { outline: 0; border-color: var(--pink); }
.newsletter button {
    width: 52px;
    background: var(--pink);
    border: 0;
    border-radius: 0 2px 2px 0;
    color: var(--primary);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: background .3s ease;
}
.newsletter button:hover { background: var(--pink-dark); }
.footer-bottom { background: var(--black); padding: 20px 0; font-size: .85rem; }
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom ul { display: flex; gap: 26px; }
.footer-bottom a:hover { color: var(--pink); }

/* ============ FLOATING RATING & SHARE ============ */
.float-widgets {
    position: fixed;
    inset: auto 0 24px 0;
    z-index: 985;
    pointer-events: none;
}
.float-widgets-left,
.float-widgets-right {
    position: fixed;
    bottom: 24px;
    z-index: 985;
    pointer-events: auto;
}
.float-widgets-left {
    left: 20px;
}
.float-widgets-right {
    right: 20px;
}
.float-google {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, .14);
    max-width: 240px;
    transition: transform .3s var(--ease), box-shadow .3s ease;
}
.float-google:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .18);
}
.float-google-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gray-bg);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
    color: #4285f4;
    flex-shrink: 0;
}
.float-google-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.float-stars {
    display: flex;
    gap: 2px;
    color: #f4b400;
    font-size: .72rem;
    line-height: 1;
}
.float-rating-text {
    font-size: .72rem;
    color: var(--text);
    line-height: 1.3;
    white-space: nowrap;
}
.float-rating-text strong {
    color: var(--primary);
    font-weight: 700;
}
.float-share {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.float-share-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border: 0;
    border-radius: 999px;
    background: var(--black);
    color: var(--white);
    font-family: var(--sans);
    font-size: .82rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
    position: relative;
    overflow: hidden;
    transition: background .3s ease, transform .3s var(--ease);
}
.float-share-toggle:hover { background: #1a1a1a; }
.float-share-toggle.is-open {
    background: var(--rose);
    color: var(--white);
}
.float-share-menu {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .16);
    animation: float-share-in .25s var(--ease);
}
@keyframes float-share-in {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.float-share-item {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: .95rem;
    color: var(--white);
    background: var(--primary);
    transition: transform .25s var(--ease), background .25s ease;
}
a.float-share-item:hover,
button.float-share-item:hover {
    transform: scale(1.08);
}
.float-share-item.is-facebook { background: #1877f2; }
.float-share-item.is-whatsapp { background: #25d366; }
.float-share-item.is-x { background: #000000; }
.float-share-item.is-email { background: var(--rose); }
.float-share-item.is-copy { background: var(--pink); color: var(--primary); }
.float-share-item.is-copy.is-done { background: var(--rose); color: var(--white); }

@media (max-width: 768px) {
    .float-widgets-left {
        left: 12px;
        bottom: 16px;
    }
    .float-widgets-right {
        right: 12px;
        bottom: 16px;
    }
    .float-google {
        padding: 10px 12px;
        max-width: 210px;
    }
    .float-google-icon {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }
    .float-rating-text { font-size: .68rem; }
    .float-share-toggle {
        padding: 11px 16px;
        font-size: .78rem;
    }
    .float-share-toggle span { display: none; }
    .float-share-toggle { border-radius: 50%; width: 46px; height: 46px; justify-content: center; padding: 0; }
}

/* ============ MOUSE MOTION ============ */
.mouse-cursor-dot,
.mouse-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10001;
    border-radius: 50%;
    will-change: transform;
}
.mouse-cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--pink);
    box-shadow: 0 0 12px rgba(241, 170, 176, .55);
}
.mouse-cursor-ring {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(241, 170, 176, .45);
    transition: width .25s ease, height .25s ease, border-color .25s ease, opacity .25s ease;
}
.mouse-cursor-ring.is-hover {
    width: 52px;
    height: 52px;
    border-color: rgba(172, 135, 129, .65);
    opacity: .85;
}
.mouse-tilt {
    transform-style: preserve-3d;
    transition: transform .35s var(--ease), box-shadow .35s ease;
}
.mouse-tilt.is-tilting {
    transition: transform .08s linear;
}
.time-ambient::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        520px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(241, 170, 176, .09),
        transparent 42%
    );
    opacity: 0;
    transition: opacity .5s ease;
}
body.has-mouse-motion .time-ambient::after {
    opacity: 1;
}
.hero-text,
.hero-booking,
.hs-slide.is-active {
    will-change: transform, background-position;
}
@media (pointer: coarse) {
    .mouse-cursor-dot,
    .mouse-cursor-ring { display: none !important; }
}

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 108px;
    z-index: 984;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    font-size: 1rem;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .22);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .35s ease, visibility .35s ease, transform .35s var(--ease), background .3s ease;
}
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--rose);
}
@media (max-width: 768px) {
    .back-to-top {
        right: 12px;
        bottom: 88px;
        width: 42px;
        height: 42px;
        font-size: .9rem;
    }
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .85s var(--ease), transform .85s var(--ease);
    will-change: opacity, transform;
}
.reveal[data-dir="left"] { transform: translateX(-46px); }
.reveal[data-dir="right"] { transform: translateX(46px); }
.reveal.shown { opacity: 1; transform: translate(0, 0); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
    .hp-rooms { grid-template-columns: repeat(2, 1fr); }
    .hp-room { height: 480px; }
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid.four { grid-template-columns: repeat(2, 1fr); }
    .masonry { columns: 2; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .hero-booking { justify-self: start; max-width: 100%; }
    .about-grid { grid-template-columns: 1fr; gap: 44px; }
    .contact-grid { grid-template-columns: 1fr; gap: 44px; }
    .booking-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .sticky-booking-form {
        flex-wrap: wrap;
        border-radius: 24px;
        padding: 10px;
        gap: 0;
    }
    .sb-field {
        flex: 1 1 45%;
        padding: 12px 16px;
        border-radius: 16px;
    }
    .sb-divider { display: none; }
    .sb-search {
        flex: 1 1 100%;
        width: 100%;
        margin: 6px 0 0;
        padding: 14px 24px;
        border-radius: 16px;
    }
    .sb-cal-months { grid-template-columns: 1fr; gap: 16px; }
    .sb-calendar { max-width: 100%; }
    .sb-guests-panel { right: 0; left: 0; width: auto; }
}

@media (max-width: 768px) {
    .top-info li:nth-child(2) { display: none; }
    .burger { display: flex; }
    .nav-links {
        position: fixed;
        top: 0; right: 0;
        height: 100dvh;
        width: min(320px, 84vw);
        background: var(--dark-2);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 4px;
        padding: 40px 30px;
        transform: translateX(105%);
        transition: transform .4s var(--ease);
        z-index: 1050;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links a {
        width: 100%;
        padding: 14px 16px;
        color: rgba(255, 255, 255, .85);
        font-size: .95rem;
    }
    .nav-links a::after { display: none; }
    .nav-links a:hover, .nav-links a.active { color: var(--pink); }
    .burger { position: relative; z-index: 1100; }
    .burger.open span { background: var(--white); }

    .section { padding: 60px 0; }
    .section-title h2 { font-size: 2.1rem; }
    .services-grid, .services-grid.four { grid-template-columns: 1fr; }
    .service-item { padding: 36px 24px; }
    .hp-rooms { grid-template-columns: 1fr; }
    .hp-room { height: 420px; }
    .hp-room-content { transform: translateY(0); }
    .rooms-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .news-card.tall { grid-row: span 1; }
    .field-row { grid-template-columns: 1fr; gap: 0; }
    .panel { padding: 28px 22px; }
    .breadcrumb h2 { font-size: 2.2rem; }
    .footer-top { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom-inner { justify-content: center; text-align: center; }
    .about-pics img:nth-child(2) { margin-top: 0; }
    .hs-prev, .hs-next { display: none; }
}

@media (max-width: 520px) {
    .masonry { columns: 1; }
    .top-info { font-size: .8rem; }
    .top-book { padding: 12px 18px; font-size: .72rem; }
    .top-time span { display: none; }
    .sb-field { flex: 1 1 100%; }
    .sticky-booking { padding: 10px 0; }
}

/* ==========================================================
   TIME-OF-DAY DYNAMIC THEME
   morning 05:00–11:59 | afternoon 12:00–16:59
   evening 17:00–19:59 | night 20:00–04:59
   ========================================================== */

.time-ambient {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 15% 0%, var(--ambient-a) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 100%, var(--ambient-b) 0%, transparent 50%);
    transition: background 2s ease;
}

.top-bar, .navbar, .footer, .section.gray, .panel, .hero-booking,
.room-item, .service-item, .testimonials, .aside-card, .quote {
    transition: background-color 1.4s ease, color 1.4s ease, border-color 1.4s ease, box-shadow 1.4s ease;
}

/* —— Morning & afternoon: default palette —— */
[data-time="morning"] .top-time,
[data-time="afternoon"] .top-time {
    background: rgba(241, 170, 176, .1);
    border-color: rgba(241, 170, 176, .3);
}

/* —— Evening: warm rose tones —— */
[data-time="evening"] {
    --primary: #000000;
    --pink: #f1aab0;
    --pink-dark: #e8969e;
    --rose: #c49a94;
    --rose-dark: #ac8781;
    --heading: #000000;
    --text: #5a5555;
    --gray-bg: #fdf5f4;
    --line: #ead9d6;
    --top-text: #b8a09a;
    --overlay-hero: linear-gradient(95deg, rgba(0, 0, 0, .82) 0%, rgba(172, 135, 129, .35) 42%, rgba(0, 0, 0, .72) 100%);
    --overlay-photo: rgba(40, 28, 24, .64);
    --overlay-dark: rgba(0, 0, 0, .95);
    --ambient-a: rgba(241, 170, 176, .14);
    --ambient-b: rgba(172, 135, 129, .08);
    --surface-shadow: rgba(40, 28, 24, .12);
}
[data-time="evening"] .top-time {
    background: rgba(241, 170, 176, .12);
    border-color: rgba(172, 135, 129, .35);
}

/* —— Night: dark mode with pink accents —— */
[data-time="night"] {
    --primary: #000000;
    --dark-2: #141414;
    --pink: #f1aab0;
    --pink-dark: #e8969e;
    --rose: #ac8781;
    --rose-dark: #96726c;
    --heading: #f5f0ef;
    --text: #a89a96;
    --line: #2a2424;
    --gray-bg: #141414;
    --surface: #1a1a1a;
    --top-text: #8a7a76;
    --overlay-hero: linear-gradient(95deg, rgba(0, 0, 0, .9) 0%, rgba(172, 135, 129, .28) 50%, rgba(0, 0, 0, .88) 100%);
    --overlay-photo: rgba(0, 0, 0, .78);
    --overlay-dark: rgba(0, 0, 0, .96);
    --ambient-a: rgba(241, 170, 176, .06);
    --ambient-b: rgba(172, 135, 129, .05);
    --surface-shadow: rgba(0, 0, 0, .35);
}
[data-time="night"] .top-time {
    background: rgba(241, 170, 176, .08);
    border-color: rgba(241, 170, 176, .25);
}
[data-time="night"] .navbar {
    background: var(--surface);
    border-bottom-color: var(--line);
}
[data-time="night"] .navbar.solid {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .4);
}
[data-time="night"] .nav-links a { color: var(--heading); }
[data-time="night"] .nav-links a:hover,
[data-time="night"] .nav-links a.active { color: var(--pink); }
[data-time="night"] .nav-links a::after { background: var(--pink); }
[data-time="night"] .burger span { background: var(--heading); }
[data-time="night"] .hero-booking {
    background: #1a1a1a;
    border: 1px solid #2a2424;
}
[data-time="night"] .hero-booking h3 {
    color: #ffffff;
    border-bottom-color: #2a2424;
}
[data-time="night"] .hero-booking .bp-field-block {
    background: #141414;
    border-color: #2a2424;
}
[data-time="night"] .hero-booking .bp-field-block.is-active {
    background: rgba(241, 170, 176, .1);
    border-color: var(--rose);
}
[data-time="night"] .hb-field label { color: var(--text); }
[data-time="night"] .hb-field input,
[data-time="night"] .hb-field select {
    background: #141414;
    border-color: var(--line);
    color: var(--heading);
}
[data-time="night"] .panel,
[data-time="night"] .room-item,
[data-time="night"] .service-item,
[data-time="night"] .aside-card {
    border-color: var(--line);
}
[data-time="night"] .field input,
[data-time="night"] .field select,
[data-time="night"] .field textarea {
    background: #141414;
    border-color: var(--line);
    color: var(--heading);
}
[data-time="night"] .field label { color: var(--heading); }
[data-time="night"] .filter {
    background: var(--surface);
    border-color: var(--line);
    color: var(--heading);
}
[data-time="night"] .hero-text h1,
[data-time="night"] .hero-text p,
[data-time="night"] .breadcrumb h2,
[data-time="night"] .cta-inner h2,
[data-time="night"] .cta-inner p {
    color: #ffffff;
}
[data-time="night"] .filter:hover,
[data-time="night"] .filter.active {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--primary);
}
[data-time="night"] .notice-ok {
    background: #1f1a1a;
    border-color: #3d2e2c;
}
[data-time="night"] .time-ambient::before,
[data-time="night"] .time-ambient::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: var(--pink);
    opacity: .35;
    animation: twinkle 4s ease-in-out infinite;
}
[data-time="night"] .time-ambient::before {
    width: 2px; height: 2px;
    top: 12%; left: 18%;
    box-shadow:
        120px 80px 0 0 var(--pink),
        280px 40px 0 0 var(--pink),
        450px 120px 0 0 var(--pink),
        60px 200px 0 0 var(--pink),
        340px 180px 0 0 var(--pink);
}
[data-time="night"] .time-ambient::after {
    width: 1px; height: 1px;
    top: 8%; right: 22%;
    animation-delay: -2s;
    box-shadow:
        80px 60px 0 0 var(--pink),
        200px 140px 0 0 var(--pink),
        380px 90px 0 0 var(--pink);
}
@keyframes twinkle {
    0%, 100% { opacity: .2; }
    50% { opacity: .55; }
}

/* Smooth palette cross-fade on html */
html {
    transition: background-color 1.4s ease;
}

/* Hero booking — force light text on dark card */
.hero-booking .hb-picker-val,
.hero-booking .sb-display,
.hero-booking .sb-value > i {
    color: #ffffff !important;
}
.hero-booking .sb-label {
    color: rgba(255, 255, 255, .6) !important;
}
