:root {
    --bg: #f6f3ed;
    --bg-elevated: #fbf8f2;
    --surface: #ffffff;
    --surface-muted: #f1ebe1;
    --line: rgba(26, 26, 26, 0.09);
    --line-strong: rgba(26, 26, 26, 0.16);
    --text: #161616;
    --text-soft: #5f635f;
    --text-faint: #7b7f79;
    --amber: #b9873d;
    --amber-deep: #93662a;
    --amber-soft: #f3e6d1;
    --success: #25d366;
    --shadow-soft: 0 18px 55px rgba(17, 20, 24, 0.08);
    --shadow-panel: 0 28px 80px rgba(17, 20, 24, 0.1);
    --radius-lg: 26px;
    --radius-md: 20px;
    --radius-sm: 14px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top right, rgba(224, 179, 90, 0.15), transparent 28%),
        radial-gradient(circle at left center, rgba(17, 17, 17, 0.03), transparent 35%),
        var(--bg);
    color: var(--text);
}

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

img,
svg {
    display: block;
    max-width: 100%;
}

::selection {
    background: rgba(185, 135, 61, 0.2);
    color: var(--text);
}

.container-shell {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.section-shell {
    padding: 4.75rem 0;
}

.section-shell--tight {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
}

.header-spacer {
    height: 86px;
}

.stack-xs,
.stack-sm,
.stack-md,
.stack-lg,
.stack-xl {
    display: flex;
    flex-direction: column;
}

.stack-xs {
    gap: 0.5rem;
}

.stack-sm {
    gap: 0.85rem;
}

.stack-md {
    gap: 1.15rem;
}

.stack-lg {
    gap: 1.75rem;
}

.stack-xl {
    gap: 2.5rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.55rem 0.95rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--amber-deep);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow--light {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #f6e4be;
}

.display-title,
.section-title {
    margin: 0;
    font-family: 'Fraunces', Georgia, serif;
    letter-spacing: -0.03em;
    color: var(--text);
}

.display-title {
    font-size: clamp(2.65rem, 5vw, 4.95rem);
    line-height: 0.98;
}

.display-title--room {
    font-size: clamp(2.45rem, 4.6vw, 4.2rem);
}

.section-title {
    font-size: clamp(1.65rem, 3vw, 2.55rem);
    line-height: 1.05;
}

.section-title--compact {
    font-size: clamp(1.4rem, 2.4vw, 1.95rem);
}

.section-title--light {
    color: #fff7ec;
}

.lead-copy,
.body-copy {
    margin: 0;
    color: var(--text-soft);
}

.lead-copy {
    font-size: clamp(1rem, 1.6vw, 1.16rem);
    line-height: 1.75;
}

.lead-copy--light {
    color: rgba(255, 248, 233, 0.78);
}

.lead-copy--room {
    color: rgba(255, 247, 235, 0.88);
}

.body-copy {
    font-size: 0.98rem;
    line-height: 1.75;
}

.body-copy--dark {
    color: var(--text);
}

.body-copy--light {
    color: rgba(255, 248, 233, 0.72);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
    background: var(--text);
    color: #fff8ed;
    box-shadow: 0 18px 35px rgba(17, 17, 17, 0.15);
}

.button-primary:hover {
    background: #000;
}

.button-secondary {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
    color: var(--text);
}

.button-secondary:hover {
    border-color: var(--amber);
    color: var(--amber-deep);
}

.button-secondary--light {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #fff7ec;
}

.button-whatsapp {
    background: var(--success);
    color: #ffffff;
    box-shadow: 0 18px 35px rgba(37, 211, 102, 0.22);
}

.button-whatsapp:hover {
    background: #1fac57;
}

.button-block {
    width: 100%;
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 60;
    border-bottom: 1px solid transparent;
    background: rgba(246, 243, 237, 0.72);
    backdrop-filter: blur(18px);
    transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
    border-color: var(--line);
    background: rgba(251, 248, 242, 0.92);
    box-shadow: var(--shadow-soft);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 86px;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-lockup--footer {
    align-items: flex-start;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, #d8ae63 0%, #9f6c28 100%);
    color: #fff7ec;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.brand-name {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-subtitle {
    color: var(--text-faint);
    font-size: 0.82rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.site-nav__link {
    color: var(--text-soft);
    font-size: 0.94rem;
    font-weight: 700;
    transition: color 160ms ease;
}

.site-nav__link:hover,
.site-nav__link--active {
    color: var(--text);
}

.site-nav__link--active {
    position: relative;
}

.site-nav__link--active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.5rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--amber) 0%, transparent 100%);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    padding: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--text);
    transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-nav__panel {
    margin: 0 0 1rem;
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
}

.mobile-nav__links,
.mobile-nav__actions {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.mobile-nav__intro {
    margin-bottom: 1rem;
}

.mobile-nav__link {
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid transparent;
    background: var(--bg-elevated);
    color: var(--text);
    font-weight: 700;
}

.mobile-nav__link--active {
    border-color: rgba(185, 135, 61, 0.26);
    background: rgba(243, 230, 209, 0.76);
}

.page-hero {
    padding-top: 5.6rem;
}

.page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 420px);
    gap: 2rem;
    align-items: center;
}

.hero-panel {
    position: relative;
    overflow: hidden;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top right, rgba(219, 180, 105, 0.18), transparent 32%),
        linear-gradient(135deg, rgba(17, 17, 17, 0.96), rgba(38, 31, 20, 0.92));
    box-shadow: var(--shadow-panel);
}

.hero-panel__badge {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #f7e0b7;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-panel__visual {
    position: relative;
    min-height: 220px;
    margin-top: 1rem;
}

.hero-panel__ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
}

.hero-panel__ring--one {
    inset: 0 1rem 1rem 0;
}

.hero-panel__ring--two {
    inset: 1.5rem 3rem 2.8rem 1rem;
}

.hero-panel__chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff7ec;
    font-size: 0.85rem;
    font-weight: 700;
}

.hero-panel__chip:nth-of-type(1) {
    top: 1rem;
    left: 0.5rem;
}

.hero-panel__chip:nth-of-type(2) {
    top: 5.5rem;
    right: 0.5rem;
}

.hero-panel__chip:nth-of-type(3) {
    bottom: 0.9rem;
    left: 4rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.stat-card {
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 30px rgba(17, 20, 24, 0.05);
}

.stat-card__value {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.stat-card__label {
    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.45;
}

.trust-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.trust-strip__item {
    padding: 1.2rem 1.3rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
}

.trust-strip__value {
    margin-bottom: 0.45rem;
    color: var(--text);
    font-size: 1.18rem;
    font-weight: 800;
}

.trust-strip__label {
    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.5;
}

.surface-card {
    padding: 1.4rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 14px 36px rgba(17, 20, 24, 0.06);
}

.surface-card--sticky {
    position: sticky;
    top: 108px;
}

.feature-grid {
    display: grid;
    gap: 1rem;
}

.feature-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    min-height: 100%;
    padding: 1.15rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
}

.feature-card--soft {
    background: rgba(249, 243, 232, 0.64);
}

.icon-badge {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(185, 135, 61, 0.18), rgba(17, 17, 17, 0.04));
    position: relative;
}

.icon-badge::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--amber), var(--amber-deep));
}

.icon-badge--small {
    width: 34px;
    height: 34px;
}

.content-grid,
.info-grid {
    display: grid;
    gap: 1rem;
}

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

.info-grid--triple {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
    padding: 1rem 1.1rem;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
}

.info-card__label {
    display: block;
    color: var(--text-faint);
    font-size: 0.82rem;
    margin-bottom: 0.35rem;
}

.info-card__value {
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.pricing-line {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
}

.pricing-line__value {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.pricing-line__suffix {
    color: var(--text-faint);
    font-size: 0.95rem;
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: var(--surface-muted);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 700;
}

.chip--light {
    background: rgba(255, 255, 255, 0.1);
    color: #fff7ec;
}

.list-check,
.amenity-list,
.bullet-list {
    display: grid;
    gap: 0.85rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.list-check li,
.amenity-list li,
.bullet-list li {
    display: flex;
    gap: 0.75rem;
    color: var(--text-soft);
    line-height: 1.65;
}

.list-check li::before,
.amenity-list li::before,
.bullet-list li::before {
    content: '';
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    margin-top: 0.52rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber), var(--amber-deep));
}

.room-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.85fr);
    gap: 1.5rem;
    align-items: start;
}

/* ========== ROOM GALLERY (photo grid) ========== */
.room-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.room-gallery__main {
    grid-column: 1 / -1;
}

.room-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.room-gallery__main img {
    max-height: 420px;
}

.room-gallery__thumb img {
    height: 160px;
}

/* ========== ROOM SHOWCASE (rooms.php listing) ========== */
.room-showcase {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(17, 20, 24, 0.06);
}

.room-showcase__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    min-height: 420px;
}

.room-showcase__grid--reverse {
    direction: rtl;
}

.room-showcase__grid--reverse > * {
    direction: ltr;
}

.room-showcase__gallery {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 0.5rem;
    padding: 0.5rem;
}

.room-showcase__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 4px);
    min-height: 260px;
}

.room-showcase__thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.room-showcase__thumbs img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: calc(var(--radius-sm, 14px) - 2px);
}

.room-showcase__info {
    padding: 2rem 2rem 2rem 1.5rem;
}

.review-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 40px rgba(17, 20, 24, 0.06);
}

.review-card__quote {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.8;
}

.review-card__meta {
    color: var(--text-faint);
    font-size: 0.88rem;
}

.faq-list {
    display: grid;
    gap: 0.9rem;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.8);
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.3rem;
    border: 0;
    background: transparent;
    color: var(--text);
    font-size: 0.98rem;
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.faq-trigger__icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--amber-deep);
    font-size: 1rem;
    transition: transform 180ms ease, background-color 180ms ease;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 180ms ease;
}

.faq-answer__inner {
    min-height: 0;
    overflow: hidden;
    padding: 0 1.3rem;
}

.faq-answer__inner p {
    margin: 0;
    padding: 0 0 1.3rem;
    color: var(--text-soft);
    line-height: 1.8;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.is-open .faq-trigger__icon {
    transform: rotate(45deg);
    background: rgba(185, 135, 61, 0.08);
}

.final-cta {
    padding: 2rem;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(224, 179, 90, 0.24), transparent 26%),
        linear-gradient(145deg, rgba(17, 17, 17, 0.98), rgba(46, 35, 20, 0.95));
    box-shadow: var(--shadow-panel);
}

.site-footer {
    padding: 2.5rem 0 1.5rem;
    color: rgba(255, 247, 236, 0.7);
    background: linear-gradient(180deg, #171717 0%, #0f0f0f 100%);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
    padding-bottom: 1.5rem;
}

.site-footer__link {
    color: rgba(255, 247, 236, 0.8);
    font-size: 0.95rem;
    transition: color 160ms ease;
}

.site-footer__link:hover {
    color: #fff8ed;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 247, 236, 0.45);
    font-size: 0.82rem;
}

.mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 1rem;
    z-index: 50;
    width: min(1120px, calc(100% - 1.2rem));
    margin: 0 auto;
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 28px 70px rgba(17, 20, 24, 0.15);
    transform: translateY(130%);
    transition: transform 220ms ease;
}

.mobile-cta.visible {
    transform: translateY(0);
}

.mobile-cta__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-cta__label {
    color: var(--text-faint);
    font-size: 0.8rem;
}

.mobile-cta__price {
    font-size: 1rem;
    line-height: 1.2;
}

.mobile-cta__actions {
    display: flex;
    gap: 0.55rem;
}

.mobile-cta__secondary,
.mobile-cta__primary {
    min-height: 46px;
    padding-inline: 1rem;
}

.stay-type-selector {
    display: grid;
    gap: 0.65rem;
}

.stay-type-option {
    display: flex;
    gap: 0.85rem;
    padding: 0.95rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
    transition: border-color 180ms ease, box-shadow 180ms ease;
    cursor: pointer;
}

.stay-type-option:hover {
    box-shadow: 0 4px 16px rgba(17, 20, 24, 0.05);
}

.stay-type-option.selected {
    border-color: rgba(185, 135, 61, 0.44);
    box-shadow: 0 0 0 4px rgba(185, 135, 61, 0.11);
}

.stay-type-option__radio {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 0.15rem;
    border-radius: 999px;
    border: 2px solid var(--line-strong);
    position: relative;
}

.stay-type-option.selected .stay-type-option__radio {
    border-color: var(--amber);
}

.stay-type-option.selected .stay-type-option__radio::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber), var(--amber-deep));
}

.stay-type-option__body {
    display: grid;
    gap: 0.25rem;
}

.booking-room-card {
    display: flex;
    gap: 1rem;
    padding: 1.15rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.84);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
    cursor: pointer;
}

.booking-room-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(17, 20, 24, 0.06);
}

.booking-room-card.selected {
    border-color: rgba(185, 135, 61, 0.44);
    box-shadow: 0 0 0 4px rgba(185, 135, 61, 0.11);
}

.booking-room-card.is-disabled {
    opacity: 0.58;
    cursor: not-allowed;
    background: rgba(244, 241, 234, 0.84);
}

.booking-room-card.is-disabled:hover {
    transform: none;
    box-shadow: none;
}

.booking-room-card__radio {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    margin-top: 0.2rem;
    border-radius: 999px;
    border: 2px solid var(--line-strong);
    position: relative;
}

.booking-room-card.selected .booking-room-card__radio {
    border-color: var(--amber);
}

.booking-room-card.selected .booking-room-card__radio::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber), var(--amber-deep));
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.38fr) minmax(300px, 0.82fr);
    gap: 1.5rem;
    align-items: start;
}

.booking-form-stack,
.status-stack,
.step-list {
    display: grid;
    gap: 1rem;
}

.booking-room-card__body {
    flex: 1 1 auto;
    min-width: 0;
    display: grid;
    gap: 0.8rem;
}

.booking-room-card__top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.booking-room-card__price {
    text-align: right;
    flex: 0 0 auto;
}

.booking-room-card__price strong {
    display: block;
    font-size: 1.1rem;
    letter-spacing: -0.03em;
}

.booking-room-card__price span {
    color: var(--text-faint);
    font-size: 0.78rem;
}

.booking-room-card__status {
    color: var(--text-faint);
    font-size: 0.84rem;
    line-height: 1.55;
}

.booking-room-card__status.is-open {
    color: #35654f;
}

.booking-room-card__status.is-closed {
    color: #a35b17;
    font-weight: 600;
}

.booking-summary {
    position: sticky;
    top: 108px;
}

.booking-summary__line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.booking-summary__line:last-child {
    border-bottom: 0;
}

.booking-summary__line span:first-child {
    color: var(--text-faint);
    font-size: 0.9rem;
}

.booking-summary__line strong {
    font-size: 0.95rem;
    text-align: right;
}

.booking-summary__total {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(26, 26, 26, 0.08);
}

.booking-summary__total-value {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.booking-mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 1rem;
    z-index: 50;
    width: min(1120px, calc(100% - 1.2rem));
    margin: 0 auto;
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    background: rgba(17, 17, 17, 0.94);
    box-shadow: 0 28px 80px rgba(17, 20, 24, 0.2);
    transform: translateY(130%);
    transition: transform 220ms ease;
}

.booking-mobile-bar.visible {
    transform: translateY(0);
}

.booking-mobile-bar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.booking-mobile-bar__label {
    color: rgba(255, 247, 236, 0.72);
    font-size: 0.8rem;
}

.booking-mobile-bar__price {
    color: #fff8ed;
    font-size: 1.05rem;
    font-weight: 800;
}

.empty-state,
.success-card,
.status-card {
    padding: 1.45rem;
}

.empty-state {
    text-align: center;
}

.summary-grid {
    display: grid;
    gap: 1rem;
}

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

.step-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.step-list li {
    display: flex;
    gap: 0.85rem;
    color: var(--text-soft);
    line-height: 1.7;
}

.step-list__number {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber), var(--amber-deep));
    color: #fff8ed;
    font-size: 0.78rem;
    font-weight: 800;
}

.status-card__row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
}

.status-card__row:last-child {
    border-bottom: 0;
}

.status-card__row span:first-child {
    color: var(--text-faint);
    font-size: 0.9rem;
}

.status-card__row strong {
    text-align: right;
}

.contact-form-grid {
    display: grid;
    gap: 1rem;
}

.contact-form-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-card,
.map-card,
.success-card,
.status-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 16px 40px rgba(17, 20, 24, 0.06);
}

.contact-card {
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.contact-card__value {
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.map-card {
    min-height: 360px;
    padding: 1.4rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(241, 235, 225, 0.9));
}

.map-card__placeholder {
    height: 100%;
    min-height: 320px;
    border: 1px dashed rgba(185, 135, 61, 0.28);
    border-radius: 22px;
    background:
        radial-gradient(circle at 20% 25%, rgba(185, 135, 61, 0.14), transparent 20%),
        radial-gradient(circle at 80% 75%, rgba(17, 17, 17, 0.06), transparent 18%),
        rgba(255, 255, 255, 0.62);
    position: relative;
    overflow: hidden;
}

.map-card__placeholder::before,
.map-card__placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
}

.map-card__placeholder::before {
    background:
        linear-gradient(115deg, transparent 0 44%, rgba(185, 135, 61, 0.15) 44% 49%, transparent 49% 100%),
        linear-gradient(25deg, transparent 0 56%, rgba(17, 17, 17, 0.06) 56% 61%, transparent 61% 100%);
}

.map-card__placeholder::after {
    width: 24px;
    height: 24px;
    inset: auto auto 46% 52%;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber), var(--amber-deep));
    box-shadow: 0 0 0 10px rgba(185, 135, 61, 0.18);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    color: var(--text-faint);
    font-size: 0.88rem;
}

.breadcrumb strong {
    color: var(--text);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 540ms ease, transform 540ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

input,
select,
textarea {
    font: inherit;
}

input[type='date']::-webkit-calendar-picker-indicator {
    opacity: 0.55;
    cursor: pointer;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.98rem 1rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--text);
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(185, 135, 61, 0.42);
    box-shadow: 0 0 0 4px rgba(185, 135, 61, 0.1);
    background: #fff;
}

.summary-kicker {
    color: var(--text-faint);
    font-size: 0.8rem;
}

.legacy-safe-note {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(243, 230, 209, 0.55);
    color: var(--text-soft);
    font-size: 0.88rem;
    line-height: 1.65;
}

.booking-live-note {
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(245, 248, 242, 0.9);
    border: 1px solid rgba(104, 122, 96, 0.14);
    color: var(--text-soft);
    font-size: 0.86rem;
    line-height: 1.6;
}

.booking-live-note.is-loading {
    background: rgba(248, 243, 230, 0.92);
    border-color: rgba(185, 135, 61, 0.18);
}

.booking-live-note.is-ok {
    background: rgba(238, 247, 241, 0.96);
    border-color: rgba(75, 125, 92, 0.18);
    color: #2f5e47;
}

.booking-live-note.is-warning {
    background: rgba(250, 241, 226, 0.96);
    border-color: rgba(185, 135, 61, 0.18);
    color: #8e5c1d;
}

.booking-live-note.is-error {
    background: rgba(250, 236, 236, 0.96);
    border-color: rgba(176, 85, 85, 0.16);
    color: #9a4747;
}

/* ========== HERO CINEMATIC ========== */
.hero-cinematic {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

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

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

.hero-cinematic__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(17, 17, 17, 0.18) 0%, rgba(17, 17, 17, 0.52) 55%, rgba(17, 17, 17, 0.88) 100%);
}

.hero-cinematic__content {
    position: relative;
    z-index: 1;
    padding-bottom: 4.5rem;
    padding-top: 8rem;
}

/* ========== AVAILABILITY SEARCH BAR ========== */
.availability-search-section {
    margin-top: -2.5rem;
    position: relative;
    z-index: 10;
}

.availability-bar {
    padding: 1.4rem 1.6rem;
}

.availability-bar__form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

.availability-bar__field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.availability-bar__label {
    color: var(--text-faint);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.availability-bar__action {
    display: flex;
    align-items: flex-end;
}

/* ========== ROOM CARD V2 (photo-first) ========== */
.room-card-v2 {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(17, 20, 24, 0.06);
    transition: transform 260ms ease, box-shadow 260ms ease;
}

.room-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-panel);
}

.room-card-v2__image {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.room-card-v2__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 440ms ease;
}

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

.room-card-v2__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.72);
    backdrop-filter: blur(8px);
    color: #f4dfba;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.room-card-v2__body {
    padding: 1.35rem;
}

@media (max-width: 1080px) {
    .page-hero__grid,
    .room-layout,
    .booking-layout,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .site-nav,
    .site-header__secondary,
    .site-header__primary {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

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

    .availability-bar__form {
        grid-template-columns: 1fr 1fr;
    }

    .room-showcase__grid,
    .room-showcase__grid--reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .room-showcase__info {
        padding: 1.5rem;
    }
}

@media (max-width: 820px) {
    .section-shell {
        padding: 4rem 0;
    }

    .trust-strip__grid,
    .summary-grid--two,
    .contact-form-grid--two,
    .feature-grid--two,
    .feature-grid--three,
    .content-grid,
    .info-grid--triple,
    .stat-grid {
        grid-template-columns: 1fr;
    }

    .room-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .room-gallery__main img {
        max-height: 320px;
    }

    .room-gallery__thumb img {
        height: 120px;
    }

    .site-footer__bottom {
        flex-direction: column;
    }
}

@media (max-width: 720px) {
    .container-shell {
        width: min(100% - 1.2rem, 1180px);
    }

    .display-title {
        font-size: clamp(2.35rem, 9vw, 3.35rem);
    }

    .hero-cinematic__content {
        padding-bottom: 3rem;
    }

    .availability-search-section {
        margin-top: -1.5rem;
    }

    .availability-bar__form {
        grid-template-columns: 1fr;
    }

    .button-row,
    .mobile-cta__content,
    .booking-mobile-bar__content {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-room-card__top,
    .mini-header__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-room-card__price {
        text-align: left;
    }

    .mobile-cta__actions {
        width: 100%;
    }

    .mobile-cta__secondary,
    .mobile-cta__primary {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .mobile-cta,
    .booking-mobile-bar {
        bottom: 0.8rem;
    }

    .hero-panel,
    .surface-card,
    .map-card,
    .final-cta,
    .review-card,
    .contact-card,
    .status-card {
        border-radius: 22px;
    }
}

@media (min-width: 769px) {
    .mobile-nav,
    .mobile-cta,
    .booking-mobile-bar {
        display: none;
    }
}

@media print {
    .site-header,
    .mobile-cta,
    .booking-mobile-bar {
        display: none !important;
    }
}
