/* Tripti Hotel brand logo sizing */
.rx-inner-menu-desk .rx-header-btn img,
.rx-social-media .rx-logo img {
    width: auto;
    max-width: 150px;
    max-height: 70px;
    object-fit: contain;
}

.admin-sidebar-logo {
    max-height: 58px;
    max-width: 150px;
}

body.dark-sidebar.enlarge-menu .left-sidebar .admin-sidebar-logo {
    max-height: 40px;
    max-width: 48px;
}

.admin-auth-page--split .admin-auth-card-logo img,
.admin-auth-card-logo img {
    max-height: 70px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
}

/* Site header — glass overlay + sticky state */
.site-header {
    position: relative;
    width: 100%;
    z-index: 999;
}

.site-header .rx-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 65%, transparent 100%);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
    z-index: 16;
    transition: background 0.35s ease, padding 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.site-header .rx-header.header-fixed {
    position: fixed !important;
    top: 0 !important;
    padding: 10px 0 !important;
    background: rgba(10, 8, 6, 0.94) !important;
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    border-bottom: 1px solid rgba(157, 126, 84, 0.28);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
    z-index: 1000;
}

.site-header .rx-inner-menu-desk {
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-header .rx-header-logo {
    flex-shrink: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header .rx-header-logo:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.site-header .rx-header-logo img {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.site-header .rx-main-menu {
    align-items: center;
    gap: 20px;
}

.site-header .site-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header .site-nav .nav-item {
    margin-right: 22px;
}

.site-header .site-nav .nav-item:last-child {
    margin-right: 0;
}

.site-header .site-nav .nav-link {
    padding: 6px 0;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    white-space: nowrap;
    position: relative;
    letter-spacing: 0.02em;
    transition: color 0.2s ease;
}

.site-header .site-nav .nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #9d7e54;
    border-radius: 2px;
    transition: width 0.25s ease;
}

.site-header .site-nav .nav-item:hover .nav-link,
.site-header .site-nav .nav-link.active {
    color: #d4b88a;
}

.site-header .site-nav .nav-item:hover .nav-link::before,
.site-header .site-nav .nav-link.active::before {
    width: 100%;
}

.site-header .header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.site-header .header-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-header .header-phone-link:hover {
    color: #d4b88a;
    transform: translateY(-1px);
}

.site-header .header-phone-link i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(157, 126, 84, 0.92);
    font-size: 17px;
    flex-shrink: 0;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.site-header .header-phone-link:hover i {
    background: #b8956a;
    box-shadow: 0 4px 12px rgba(157, 126, 84, 0.35);
}

.site-header .rx-inner-menu-desk .navbar-toggler {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.site-header .rx-inner-menu-desk .navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.7);
}

.site-header .rx-inner-menu-desk .navbar-toggler .rx-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.site-header .rx-inner-menu-desk .navbar-toggler i {
    color: #fff;
    font-size: 20px;
    line-height: 1;
}

.site-header .rx-main-menu .navbar-nav .nav-link {
    font-weight: 500;
    letter-spacing: 0.02em;
}

.site-header .rx-main-menu .navbar-nav .nav-link.active,
.site-header .rx-main-menu .nav-item.active > .nav-link {
    color: var(--rx-primary, #c19d5c);
}

.site-header .header-button .rx-btn-one,
.site-header .header-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    white-space: nowrap;
    background: #9d7e54;
    border-color: #9d7e54;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.site-header .header-book-btn i {
    font-size: 16px;
    line-height: 1;
}

.site-header .header-button .rx-btn-one:hover,
.site-header .header-book-btn:hover {
    background: #b8956a;
    border-color: #b8956a;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(157, 126, 84, 0.38);
}

.rx-mobile-menu-overlay {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.site-header .rx-mobile-menu {
    width: min(320px, 88vw);
    padding: 0;
    background: #fff;
    box-shadow: 12px 0 40px rgba(17, 17, 17, 0.18);
}

.site-header .rx-mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #1a1510 0%, #2a2218 100%);
    border-bottom: 1px solid rgba(157, 126, 84, 0.22);
}

.site-header .rx-mobile-menu-logo {
    display: inline-flex;
    align-items: center;
    max-width: 150px;
}

.site-header .rx-mobile-menu-logo img {
    width: auto;
    max-height: 52px;
    max-width: 150px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.site-header .rx-mobile-menu-head .rx-close-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-header .rx-mobile-menu-head .rx-close-menu:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.35);
    color: #d4b88a;
}

.site-header .rx-menu-inner {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0 12px;
}

.site-header .rx-menu-contact {
    padding: 0 16px;
}

.rx-mobile-contact-bar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
    padding: 14px;
    border-radius: 12px;
    background: #f8f6f3;
    border: 1px solid #ece8e2;
}

.rx-mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.rx-mobile-contact-item:hover {
    color: #9d7e54;
}

.rx-mobile-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #fff;
    color: #9d7e54;
    box-shadow: 0 2px 8px rgba(157, 126, 84, 0.12);
    flex-shrink: 0;
}

.rx-mobile-contact-icon i {
    font-size: 17px;
    line-height: 1;
}

.rx-mobile-contact-text {
    line-height: 1.4;
    word-break: break-word;
}

.site-header .rx-mobile-nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header .rx-mobile-nav-item {
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
}

.site-header .rx-mobile-nav-item:last-child {
    border-bottom: 0;
}

.site-header .rx-mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 !important;
    padding: 14px 12px !important;
    border: 0 !important;
    border-radius: 0 !important;
    color: #333 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}

.site-header .rx-mobile-nav-link > i:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #f5f5f5;
    color: #666;
    font-size: 17px;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-header .rx-mobile-nav-link .rx-mobile-nav-arrow {
    margin-left: auto;
    font-size: 18px;
    color: #bbb;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-header .rx-mobile-nav-item.active > .rx-mobile-nav-link,
.site-header .rx-mobile-nav-link.active {
    color: #9d7e54 !important;
    background: rgba(157, 126, 84, 0.06);
    box-shadow: inset 3px 0 0 #9d7e54;
    padding-left: 16px !important;
    font-weight: 600 !important;
}

.site-header .rx-mobile-nav-item.active > .rx-mobile-nav-link > i:first-child,
.site-header .rx-mobile-nav-link.active > i:first-child {
    background: rgba(157, 126, 84, 0.14);
    color: #9d7e54;
}

.site-header .rx-mobile-nav-item.active > .rx-mobile-nav-link .rx-mobile-nav-arrow,
.site-header .rx-mobile-nav-link.active .rx-mobile-nav-arrow {
    color: #9d7e54;
    transform: translateX(2px);
}

.site-header .rx-mobile-nav-link:hover {
    color: #9d7e54 !important;
    background: #fafafa;
}

.site-header .rx-mobile-nav-link:hover > i:first-child {
    background: rgba(157, 126, 84, 0.1);
    color: #9d7e54;
}

.site-header .rx-mobile-menu-foot {
    padding: 16px;
    border-top: 1px solid #eee;
    background: #fff;
}

.rx-mobile-book-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 48px;
    padding: 12px 18px !important;
    border: 1px solid #9d7e54 !important;
    border-radius: 10px !important;
    background: #9d7e54 !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 0.03em;
    text-decoration: none;
    text-transform: none !important;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.rx-mobile-book-btn:hover {
    background: #b8956a !important;
    border-color: #b8956a !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.rx-mobile-book-btn i {
    font-size: 17px;
    line-height: 1;
}

/* Legacy mobile menu overrides */
.rx-mobile-menu .rx-menu-title {
    display: none;
}

.site-header .rx-mobile-menu .rx-menu-inner .rx-menu-contact ul li a:not(.rx-mobile-nav-link):not(.rx-mobile-contact-item):not(.rx-mobile-book-btn) {
    margin-bottom: 0;
    padding: 10px 12px;
    border: 0;
    border-radius: 0;
}

.site-header .rx-mobile-menu .rx-menu-inner .rx-menu-contact ul li .sub-menu li a {
    padding: 10px 12px 10px 58px !important;
    border: 0 !important;
    border-radius: 0 !important;
    font-size: 14px !important;
}

/* Hero — dynamic slides + CTAs */
.rx-slide-dynamic {
    position: relative;
}

.rx-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(105deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

.section-hero .rx-slide-dynamic {
    display: flex;
    flex-direction: column;
}

.section-hero .rx-slide-dynamic .rx-hero-contact {
    z-index: 3;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    padding: 110px 0 50px;
}

.section-hero .rx-slide-dynamic .rx-hero-contact .container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.section-hero .rx-slide-dynamic .rx-hero-contact .container > .row {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 160px);
}

.section-hero .rx-slide-dynamic .rx-hero-contact .container > .row > .col-lg-8 {
    flex: 1;
    display: flex;
    align-items: center;
}

.section-hero .hero-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section-hero .hero-lead {
    max-width: 560px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.7;
}

.section-hero .hero-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
    margin-top: auto;
    padding-top: 24px;
}

.section-hero .hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 0;
}

.section-hero .hero-footer .booking-now {
    margin-left: auto;
}

.section-hero .hero-actions .hero-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 8px 22px;
    white-space: nowrap;
}

.section-hero .hero-actions .hero-cta-btn i {
    font-size: 16px;
    line-height: 1;
}

.section-hero .hero-reservation-card {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.section-hero .hero-reservation-card:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.65);
    transform: translateY(-1px);
}

.section-hero .hero-reservation-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.08);
}

.section-hero .hero-reservation-icon i {
    font-size: 20px;
    color: #fff;
}

.section-hero .hero-reservation-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.section-hero .hero-reservation-label {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
}

.section-hero .hero-reservation-phone {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

/* Hero slider — visible prev/next arrows */
.section-hero {
    overflow: visible;
}

.section-hero .rx-slider {
    overflow: hidden;
}

.section-hero .prev-slick-img,
.section-hero .next-slick-img {
    display: none !important;
}

.section-hero button.slick-prev,
.section-hero button.slick-next {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    margin: 0;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.55) !important;
    border-radius: 50%;
    z-index: 20 !important;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.section-hero button.slick-prev {
    left: 40px !important;
    right: auto !important;
}

.section-hero button.slick-next {
    left: auto !important;
    right: 40px !important;
}

.section-hero button.slick-prev::before,
.section-hero button.slick-next::before {
    display: none !important;
    content: none !important;
}

.section-hero button.slick-prev:hover,
.section-hero button.slick-next:hover {
    background: rgba(255, 255, 255, 0.28) !important;
    border-color: #fff !important;
}

.section-hero button.slick-prev .prev-slick-arrow,
.section-hero button.slick-next .next-slick-arrow {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: static;
    font-size: 0 !important;
    color: #fff;
    line-height: 1;
    pointer-events: none;
}

.section-hero button.slick-prev .prev-slick-arrow span,
.section-hero button.slick-next .next-slick-arrow span {
    display: block;
    font-size: 28px !important;
    color: #fff;
    line-height: 1;
    margin-top: -2px;
}

.section-hero .rx-slider .rx-slide {
    min-height: 100vh;
    max-height: none;
}

@media (max-width: 1399px) {
    .site-header .site-nav .nav-item {
        margin-right: 16px;
    }

    .site-header .site-nav .nav-link {
        font-size: 13px;
    }

    .site-header .header-phone-link span {
        font-size: 14px;
    }
}

@media (max-width: 1199px) {
    .site-header .site-nav .nav-item {
        margin-right: 12px;
    }

    .site-header .site-nav .nav-link {
        font-size: 12px;
    }

    .site-header .header-phone-link {
        display: none;
    }

    .site-header .header-actions {
        gap: 0;
    }

    .site-header .header-button .rx-btn-one,
    .site-header .header-book-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .site-header .rx-inner-menu-desk .navbar-toggler {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .site-header .rx-main-menu {
        display: none;
    }

    .rx-slider .rx-slide {
        min-height: 78vh;
        height: auto;
    }

    .section-hero .rx-hero-contact {
        padding-top: 90px;
        padding-bottom: 40px;
    }

    .section-hero .rx-slide-dynamic .rx-hero-contact .container > .row {
        min-height: calc(78vh - 130px);
    }

    .section-hero .rx-slide-dynamic .rx-hero-contact {
        justify-content: stretch;
    }

    .section-hero .hero-lead {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .section-hero .hero-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-hero .hero-footer .booking-now {
        margin-left: 0;
        width: 100%;
    }

    .section-hero .hero-reservation-card {
        width: 100%;
        justify-content: flex-start;
    }

    .section-hero .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .section-hero .hero-actions .rx-btn-one,
    .section-hero .hero-actions .hero-cta-btn {
        width: 100%;
        text-align: center;
    }

    .section-hero button.slick-prev {
        left: 16px !important;
    }

    .section-hero button.slick-next {
        right: 16px !important;
    }
}

/* Home — About section (professional) */
.home-about-professional {
    background: #fff;
}

.home-about-image {
    border-radius: 8px;
    overflow: hidden;
}

.home-about-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.home-about-copy {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.home-about-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9d7e54;
}

.home-about-title {
    margin-bottom: 18px;
    font-family: "Playfair Display", serif;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 500;
    color: #111;
}

.home-about-title span {
    color: #9d7e54;
}

.home-about-text {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.85;
    color: #5c5c5c;
}

.home-about-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid #e8e8e8;
}

.home-about-metric {
    padding: 0 16px;
    text-align: center;
    border-right: 1px solid #e8e8e8;
}

.home-about-metric:first-child {
    padding-left: 0;
}

.home-about-metric:last-child {
    padding-right: 0;
    border-right: 0;
}

.home-about-metric strong {
    display: block;
    margin-bottom: 6px;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 600;
    color: #111;
}

.home-about-metric span {
    display: block;
    font-size: 11px;
    line-height: 1.45;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888;
}

.home-about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    padding: 12px 28px;
    border-radius: 8px;
    background: #9d7e54;
    border: 1px solid #9d7e54;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.home-about-btn:hover {
    background: #8a6d49;
    border-color: #8a6d49;
    color: #fff;
}

@media (max-width: 991px) {
    .home-about-title {
        font-size: 34px;
    }

    .home-about-copy {
        max-width: none;
        padding-top: 8px;
    }
}

@media (max-width: 575px) {
    .home-about-image img {
        aspect-ratio: 16 / 11;
    }

    .home-about-metrics {
        grid-template-columns: 1fr;
        gap: 20px;
        border-top: 0;
        padding-top: 8px;
    }

    .home-about-metric {
        padding: 0;
        border-right: 0;
        border-bottom: 1px solid #ececec;
        padding-bottom: 16px;
        text-align: left;
    }

    .home-about-metric:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .home-about-btn {
        width: 100%;
    }
}

/* About page */
.about-page-section {
    background: #fff;
}

.about-page-image-wrap {
    position: relative;
}

.about-page-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.08);
}

.about-page-image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.about-page-experience-badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    min-width: 120px;
    padding: 18px 20px;
    border-radius: 12px;
    background: #9d7e54;
    color: #fff;
    text-align: center;
    box-shadow: 0 12px 28px rgba(157, 126, 84, 0.35);
}

.about-page-experience-badge strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 500;
}

.about-page-experience-badge span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.4;
}

.about-page-description {
    font-size: 16px;
    line-height: 1.85;
    color: #5c5c5c;
}

.about-page-description p {
    margin-bottom: 14px;
}

.about-page-description p:last-child {
    margin-bottom: 0;
}

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

.about-page-metrics .home-about-metric:nth-child(2) {
    border-right: 0;
}

.about-page-metrics .home-about-metric:nth-child(3),
.about-page-metrics .home-about-metric:nth-child(4) {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
}

.about-page-metrics .home-about-metric:nth-child(4) {
    border-right: 0;
}

.about-page-mv-row {
    margin-top: 56px;
}

.about-page-mv-card {
    height: 100%;
    padding: 32px 28px;
    border-radius: 12px;
    border: 1px solid #ececec;
    background: #fafafa;
}

.about-page-mv-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(157, 126, 84, 0.12);
    color: #9d7e54;
    font-size: 22px;
}

.about-page-mv-card h2 {
    margin-bottom: 12px;
    font-family: "Playfair Display", serif;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 500;
    color: #111;
}

.about-page-mv-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.about-page-contact-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 56px;
    padding: 32px 36px;
    border-radius: 12px;
    background: #111;
    color: #fff;
}

.about-page-contact-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(157, 126, 84, 0.2);
    color: #d4b896;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.about-page-contact-copy h2 {
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 500;
    color: #fff;
}

.about-page-contact-copy p {
    margin: 0;
    max-width: 480px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}

.about-page-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 260px;
}

.about-page-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.about-page-contact-item:hover {
    color: #d4b896;
}

.about-page-contact-item i {
    color: #9d7e54;
    font-size: 18px;
}

.about-page-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    padding: 12px 24px;
    border-radius: 8px;
    background: #9d7e54;
    border: 1px solid #9d7e54;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.about-page-contact-btn:hover {
    background: #8a6d49;
    border-color: #8a6d49;
    color: #fff;
}

@media (max-width: 991px) {
    .about-page-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-page-contact-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-page-contact-actions {
        width: 100%;
    }

    .about-page-contact-btn {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .about-page-metrics {
        grid-template-columns: 1fr;
    }

    .about-page-metrics .home-about-metric {
        border-right: 0 !important;
        padding: 16px 0 !important;
        margin-top: 0 !important;
        border-top: 1px solid #e8e8e8 !important;
    }

    .about-page-metrics .home-about-metric:first-child {
        border-top: 0 !important;
        padding-top: 0 !important;
    }

    .about-page-experience-badge {
        right: 16px;
        bottom: 16px;
        padding: 14px 16px;
    }

    .about-page-experience-badge strong {
        font-size: 28px;
    }
}

/* Home — Rooms section */
.home-rooms-section {
    background: #fafafa;
}

.home-rooms-header {
    max-width: 640px;
    margin: 0 auto 40px;
}

.home-rooms-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9d7e54;
}

.home-rooms-title {
    margin-bottom: 14px;
    font-family: "Playfair Display", serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 500;
    color: #111;
}

.home-rooms-title span {
    color: #9d7e54;
}

.home-rooms-intro {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #666;
}

.home-room-card {
    height: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(17, 17, 17, 0.1);
}

.home-room-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.home-room-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.72);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-room-card-category {
    display: inline-block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9d7e54;
}

.home-room-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
    font-size: 13px;
    color: #777;
}

.home-room-card-meta li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.home-room-card-meta i {
    color: #9d7e54;
}

.home-room-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.home-room-card-body {
    padding: 22px 22px 24px;
}

.home-room-card-title {
    margin-bottom: 6px;
    font-family: "Playfair Display", serif;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 500;
    color: #111;
}

.home-room-card-price {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #9d7e54;
}

.home-room-card-text {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-room-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.home-room-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    background: #9d7e54;
    border: 1px solid #9d7e54;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.home-room-btn:hover {
    background: #8a6d49;
    border-color: #8a6d49;
    color: #fff;
}

.home-room-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-room-link:hover {
    color: #9d7e54;
}

.home-rooms-footer {
    margin-top: 36px;
}

.home-rooms-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    border: 1px solid #111;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.home-rooms-view-all:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

@media (max-width: 991px) {
    .home-rooms-title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .home-room-card-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home-room-btn,
    .home-room-link {
        justify-content: center;
        width: 100%;
    }

    .home-rooms-view-all {
        width: 100%;
    }
}

/* Home — Amenities section */
.home-amenities-section {
    background: #fff;
}

.home-amenities-header {
    max-width: 640px;
    margin: 0 auto 44px;
}

.home-amenities-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9d7e54;
}

.home-amenities-title {
    margin-bottom: 14px;
    font-family: "Playfair Display", serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 500;
    color: #111;
}

.home-amenities-title span {
    color: #9d7e54;
}

.home-amenities-intro {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #666;
}

.home-amenities-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 48px;
    align-items: center;
}

.home-amenities-visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #f3f3f3;
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.08);
}

.home-amenities-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.home-amenities-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.home-amenities-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-amenities-dots {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.home-amenities-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.home-amenities-dot.is-active {
    background: #111;
    border-color: #111;
    transform: scale(1.1);
}

.home-amenities-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.home-amenities-tabs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.home-amenities-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ececec;
    border-radius: 10px;
    background: #fafafa;
    color: #666;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.home-amenities-tab i {
    width: 18px;
    color: #9d7e54;
    font-size: 15px;
    text-align: center;
}

.home-amenities-tab-num {
    min-width: 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #9d7e54;
}

.home-amenities-tab.is-active {
    background: #fff;
    border-color: #9d7e54;
    color: #111;
    box-shadow: 0 8px 20px rgba(157, 126, 84, 0.12);
}

.home-amenities-panels {
    position: relative;
    min-height: 180px;
}

.home-amenities-panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

.home-amenities-panel.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.home-amenities-panel-title {
    margin-bottom: 14px;
    font-family: "Playfair Display", serif;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 500;
    color: #111;
}

.home-amenities-panel-text {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.75;
    color: #666;
}

.home-amenities-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    border: 1px solid #111;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.home-amenities-btn:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

@media (max-width: 991px) {
    .home-amenities-showcase {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .home-amenities-title,
    .home-amenities-panel-title {
        font-size: 32px;
    }

    .home-amenities-tabs {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .home-amenities-tab {
        width: auto;
        flex: 1 1 calc(50% - 4px);
        min-width: 140px;
        padding: 12px 14px;
        font-size: 14px;
    }

    .home-amenities-tab span:not(.home-amenities-tab-num) {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 575px) {
    .home-amenities-tab {
        flex: 1 1 100%;
    }

    .home-amenities-btn {
        width: 100%;
    }
}

/* Home — Testimonials section */
.home-testimonials-section {
    background: #fafafa;
}

.home-testimonials-header {
    max-width: 640px;
    margin: 0 auto 40px;
}

.home-testimonials-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9d7e54;
}

.home-testimonials-title {
    margin-bottom: 18px;
    font-family: "Playfair Display", serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 500;
    color: #111;
}

.home-testimonials-title span {
    color: #9d7e54;
}

.home-testimonials-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 16px;
    font-size: 14px;
    color: #666;
}

.home-testimonials-meta-label {
    font-weight: 600;
    color: #111;
}

.home-testimonials-meta-stars {
    display: inline-flex;
    gap: 3px;
    color: #9d7e54;
    font-size: 13px;
}

.home-testimonials-showcase {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.home-testimonials-track {
    position: relative;
    flex: 1;
    min-height: 360px;
}

.home-testimonials-slide {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: center;
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(16px);
    transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.45s ease;
}

.home-testimonials-slide.is-active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.home-testimonials-visual {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #ececec;
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.08);
}

.home-testimonials-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-testimonials-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 320px;
}

.home-testimonials-avatar span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 500;
    color: #fff;
}

.home-testimonials-avatar--accent {
    background: linear-gradient(145deg, #9d7e54, #7d6342);
}

.home-testimonials-avatar--primary {
    background: linear-gradient(145deg, #2c3e50, #1a252f);
}

.home-testimonials-avatar--warm {
    background: linear-gradient(145deg, #c47a2c, #9a5f22);
}

.home-testimonials-content {
    padding: 8px 0;
}

.home-testimonials-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: #9d7e54;
    font-size: 15px;
}

.home-testimonials-quote {
    margin: 0 0 28px;
    padding: 24px 28px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background: #fff;
}

.home-testimonials-quote p {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.home-testimonials-name {
    margin-bottom: 4px;
    font-family: "Playfair Display", serif;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 500;
    color: #111;
}

.home-testimonials-time {
    margin-bottom: 8px;
    font-size: 14px;
    color: #888;
}

.home-testimonials-verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #9d7e54;
}

.home-testimonials-nav {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-size: 22px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.home-testimonials-nav:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

.home-testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.home-testimonials-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #d4d4d4;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.home-testimonials-dot.is-active {
    background: #9d7e54;
    transform: scale(1.15);
}

@media (max-width: 991px) {
    .home-testimonials-title {
        font-size: 32px;
    }

    .home-testimonials-slide {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home-testimonials-track {
        min-height: 0;
    }

    .home-testimonials-slide {
        position: absolute;
    }

    .home-testimonials-slide.is-active {
        position: relative;
    }

    .home-testimonials-visual {
        max-width: 320px;
        margin: 0 auto;
        aspect-ratio: 1 / 1;
    }

    .home-testimonials-nav {
        display: none;
    }

    .home-testimonials-quote p {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .home-testimonials-meta {
        flex-direction: column;
        gap: 8px;
    }

    .home-testimonials-quote {
        padding: 20px;
    }
}

/* Home — Blog section */
.home-blog-section {
    background: #fff;
}

.blog-listing-section {
    background: #fff;
}

.home-blog-header {
    max-width: 640px;
    margin: 0 auto 40px;
}

.home-blog-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9d7e54;
}

.home-blog-title {
    margin-bottom: 14px;
    font-family: "Playfair Display", serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 500;
    color: #111;
}

.home-blog-title span {
    color: #9d7e54;
}

.home-blog-intro {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #666;
}

.hotel-blog-card {
    height: 100%;
}

.hotel-blog-card-media {
    position: relative;
    display: block;
    height: 100%;
    min-height: 360px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(17, 17, 17, 0.08);
}

.hotel-blog-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hotel-blog-card-media:hover img {
    transform: scale(1.06);
}

.hotel-blog-card-overlay {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px 20px;
    border-radius: 10px;
    background: rgba(17, 17, 17, 0.82);
    backdrop-filter: blur(4px);
    transition: background 0.25s ease;
}

.hotel-blog-card-media:hover .hotel-blog-card-overlay {
    background: rgba(17, 17, 17, 0.9);
}

.hotel-blog-card-meta {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.72);
}

.hotel-blog-card-title {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;
    color: #fff;
}

.home-blog-footer {
    margin-top: 36px;
}

.home-blog-view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    border: 1px solid #111;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.home-blog-view-all:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

.blog-listing-pagination {
    margin-top: 40px;
}

.blog-listing-pagination .page-pagination {
    margin-top: 0;
}

.blog-listing-empty p {
    margin: 0;
    font-size: 16px;
    color: #666;
}

/* Blog detail page */
.blog-detail-section {
    background: #fff;
}

.blog-detail-hero {
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(17, 17, 17, 0.08);
}

.blog-detail-hero img {
    display: block;
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #888;
}

.blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-detail-meta i {
    color: #9d7e54;
}

.blog-detail-title {
    margin-bottom: 16px;
    font-family: "Playfair Display", serif;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 500;
    color: #111;
}

.blog-detail-excerpt {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.75;
    color: #555;
}

.blog-detail-content {
    font-size: 16px;
    line-height: 1.85;
    color: #444;
}

.blog-detail-content p {
    margin-bottom: 18px;
}

.blog-detail-content p:last-child {
    margin-bottom: 0;
}

.blog-detail-content strong {
    color: #111;
}

.blog-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.blog-detail-tags span {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    background: #f5f5f5;
    font-size: 13px;
    color: #666;
}

.blog-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-sidebar-card {
    padding: 24px;
    border: 1px solid #ececec;
    border-radius: 12px;
    background: #fafafa;
}

.blog-sidebar-title {
    margin-bottom: 18px;
    font-family: "Playfair Display", serif;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 500;
    color: #111;
}

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

.blog-sidebar-list li {
    padding: 14px 0;
    border-bottom: 1px solid #e8e8e8;
}

.blog-sidebar-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.blog-sidebar-list a {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    color: #111;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-sidebar-list a:hover {
    color: #9d7e54;
}

.blog-sidebar-list time {
    font-size: 13px;
    color: #888;
}

.blog-sidebar-empty {
    font-size: 14px;
    color: #888;
}

.blog-sidebar-text {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.blog-sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-sidebar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 8px;
    background: #9d7e54;
    border: 1px solid #9d7e54;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.blog-sidebar-btn:hover {
    background: #8a6d49;
    border-color: #8a6d49;
    color: #fff;
}

.blog-sidebar-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-sidebar-link:hover {
    color: #9d7e54;
}

@media (max-width: 991px) {
    .home-blog-title,
    .blog-detail-title {
        font-size: 32px;
    }

    .hotel-blog-card-media,
    .hotel-blog-card-media img {
        min-height: 300px;
    }
}

@media (max-width: 575px) {
    .home-blog-view-all {
        width: 100%;
    }

    .blog-detail-title {
        font-size: 28px;
    }

    .blog-detail-excerpt {
        font-size: 16px;
    }
}

/* Site footer */
.site-footer {
    background: #111;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer-main {
    padding: 72px 0 56px;
}

.site-footer-brand {
    max-width: 360px;
}

.site-footer-logo {
    display: inline-block;
    margin-bottom: 22px;
}

.site-footer-logo img {
    width: auto;
    max-width: 160px;
    max-height: 72px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.site-footer-about {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.68);
}

.site-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-footer-social-link:hover {
    background: #9d7e54;
    border-color: #9d7e54;
    color: #fff;
    transform: translateY(-2px);
}

.site-footer-title {
    margin-bottom: 22px;
    font-family: "Playfair Display", serif;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 500;
    color: #fff;
}

.site-footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer-links li + li {
    margin-top: 12px;
}

.site-footer-links a {
    display: inline-block;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer-links a:hover {
    color: #9d7e54;
    transform: translateX(3px);
}

.site-footer-contact {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.68);
}

.site-footer-contact li + li {
    margin-top: 16px;
}

.site-footer-contact-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #9d7e54;
    font-size: 17px;
}

.site-footer-contact a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer-contact a:hover {
    color: #9d7e54;
}

.site-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
}

.site-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.site-footer-copy {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.site-footer-copy a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer-copy a:hover {
    color: #9d7e54;
}

.site-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.site-footer-bottom-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer-bottom-links a:hover {
    color: #9d7e54;
}

@media (max-width: 767px) {
    .site-footer-main {
        padding: 56px 0 40px;
    }

    .site-footer-brand {
        max-width: none;
        margin-bottom: 8px;
    }

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

@media (max-width: 575px) {
    .site-footer-title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .site-footer-links a,
    .site-footer-contact li {
        font-size: 14px;
    }
}

/* Contact page */
.contact-page-section {
    background: #fafafa;
}

.contact-page-header {
    max-width: 680px;
    margin: 0 auto 44px;
}

.contact-page-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9d7e54;
}

.contact-page-title {
    margin-bottom: 14px;
    font-family: "Playfair Display", serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 500;
    color: #111;
}

.contact-page-intro {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #666;
}

.contact-page-cards {
    margin-bottom: 40px;
}

.contact-info-card {
    height: 100%;
    padding: 24px 22px;
    border-radius: 12px;
    border: 1px solid #ececec;
    background: #fff;
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.04);
}

.contact-info-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: rgba(157, 126, 84, 0.12);
    color: #9d7e54;
    font-size: 20px;
}

.contact-info-card h3 {
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 500;
    color: #111;
}

.contact-info-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.contact-info-card p + p {
    margin-top: 4px;
}

.contact-info-card a {
    color: #444;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-card a:hover {
    color: #9d7e54;
}

.contact-page-map {
    min-height: 420px;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ececec;
    background: #ececec;
    box-shadow: 0 12px 32px rgba(17, 17, 17, 0.06);
}

.contact-page-map iframe {
    display: block;
    min-height: 420px;
}

.contact-page-social {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid #ececec;
    background: #fff;
}

.contact-page-social-label {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.contact-page-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-page-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #e5e5e5;
    color: #111;
    font-size: 17px;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.contact-page-social-links a:hover {
    background: #9d7e54;
    border-color: #9d7e54;
    color: #fff;
}

.contact-page-form-card {
    height: 100%;
    padding: 32px 32px 36px;
    border-radius: 12px;
    border: 1px solid #ececec;
    background: #fff;
    box-shadow: 0 12px 32px rgba(17, 17, 17, 0.06);
}

.contact-page-form-header {
    margin-bottom: 24px;
}

.contact-page-form-header h2 {
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 500;
    color: #111;
}

.contact-page-form-header p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.contact-page-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.contact-page-label span {
    color: #9d7e54;
}

.contact-page-input {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #111;
    font-size: 15px;
    line-height: 1.5;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page-input:focus {
    outline: none;
    border-color: #9d7e54;
    box-shadow: 0 0 0 3px rgba(157, 126, 84, 0.12);
}

.contact-page-input::placeholder {
    color: #aaa;
}

textarea.contact-page-input {
    resize: vertical;
    min-height: 130px;
}

.contact-page-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 12px 28px;
    border: 1px solid #9d7e54;
    border-radius: 8px;
    background: #9d7e54;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-page-submit:hover {
    background: #8a6d49;
    border-color: #8a6d49;
    color: #fff;
}

.contact-page-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.contact-message-error {
    margin-bottom: 14px;
    padding: 12px 14px;
    border-radius: 8px;
    background: #fff1f0;
    border: 1px solid #ffccc7;
    color: #cf1322;
    font-size: 14px;
    line-height: 1.5;
}

.contact-message-success {
    text-align: center;
    padding: 24px 12px 8px;
}

.contact-message-success-icon {
    margin-bottom: 14px;
    font-size: 48px;
    line-height: 1;
    color: #9d7e54;
}

.contact-message-success h3 {
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 500;
    color: #111;
}

.contact-message-success p {
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.contact-message-reset {
    background: #fff;
    color: #111;
    border-color: #111;
}

.contact-message-reset:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

@media (max-width: 991px) {
    .contact-page-title {
        font-size: 32px;
    }

    .contact-page-map,
    .contact-page-map iframe {
        min-height: 320px;
    }
}

@media (max-width: 575px) {
    .contact-page-form-card {
        padding: 24px 20px 28px;
    }

    .contact-page-submit {
        width: 100%;
    }

    .contact-page-social {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Rooms listing page */
.rooms-page-section {
    background: #fafafa;
}

.rooms-page-empty {
    max-width: 520px;
    margin: 0 auto;
    padding: 40px 20px;
}

.rooms-page-empty p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* Room detail page */
.room-detail-section {
    background: #fafafa;
}

.room-detail-gallery-wrap {
    margin-bottom: 32px;
}

.room-detail-gallery-main {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.1);
    background: #111;
}

.room-detail-gallery-main img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.room-detail-gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

.room-detail-gallery-thumb {
    width: 92px;
    height: 72px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.room-detail-gallery-thumb.is-active,
.room-detail-gallery-thumb:hover {
    border-color: #9d7e54;
    transform: translateY(-2px);
}

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

.room-detail-content {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 28px 28px 32px;
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.04);
}

.room-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.room-detail-category,
.room-detail-featured {
    display: inline-flex;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.room-detail-category {
    background: rgba(157, 126, 84, 0.12);
    color: #9d7e54;
}

.room-detail-featured {
    background: #111;
    color: #fff;
}

.room-detail-title {
    margin-bottom: 16px;
    font-family: "Playfair Display", serif;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 500;
    color: #111;
}

.room-detail-lead {
    margin-bottom: 28px;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.room-detail-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 32px;
}

.room-detail-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #ececec;
    background: #fafafa;
}

.room-detail-stat i {
    font-size: 22px;
    color: #9d7e54;
}

.room-detail-stat strong {
    display: block;
    font-size: 18px;
    line-height: 1.2;
    color: #111;
}

.room-detail-stat span {
    font-size: 12px;
    color: #888;
}

.room-detail-amenities h2 {
    margin-bottom: 18px;
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 500;
    color: #111;
}

.room-detail-description,
.room-detail-inventory,
.room-detail-amenities,
.room-detail-premium,
.room-detail-policies {
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid #eee;
}

.room-detail-description h2,
.room-detail-inventory h2,
.room-detail-premium h2,
.room-detail-policies h2 {
    margin-bottom: 16px;
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 500;
    color: #111;
}

.room-detail-description-body {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
}

.room-detail-inventory-table {
    width: 100%;
    border-collapse: collapse;
}

.room-detail-inventory-table th,
.room-detail-inventory-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #ececec;
    text-align: left;
    font-size: 14px;
}

.room-detail-inventory-table th {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888;
    background: #fafafa;
}

.room-detail-inventory-table td {
    color: #444;
}

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

.room-detail-amenity-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #ececec;
    background: #fafafa;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.room-detail-amenity-card:hover {
    border-color: rgba(157, 126, 84, 0.35);
    transform: translateY(-2px);
}

.room-detail-amenity-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(157, 126, 84, 0.12);
    color: #9d7e54;
    flex-shrink: 0;
}

.room-detail-amenity-icon i {
    font-size: 18px;
    line-height: 1;
}

.room-detail-amenity-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.room-detail-premium-intro {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.room-detail-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.room-detail-premium-card {
    display: flex;
    gap: 14px;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #ececec;
    background: #fafafa;
}

.room-detail-premium-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #111;
    color: #fff;
    flex-shrink: 0;
}

.room-detail-premium-icon i {
    font-size: 18px;
}

.room-detail-premium-body h3 {
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.room-detail-premium-body p {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

.room-detail-premium-price {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #9d7e54;
}

.room-detail-policies-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.room-detail-policies-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #555;
}

.room-detail-policies-list li:last-child {
    border-bottom: 0;
}

.room-detail-policies-list i {
    margin-top: 2px;
    color: #9d7e54;
    flex-shrink: 0;
}

.room-detail-amenities-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.room-detail-amenities-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #555;
}

.room-detail-amenities-list i {
    color: #9d7e54;
    width: 18px;
    text-align: center;
}

.room-detail-sidebar {
    position: sticky;
    top: 110px;
}

.room-detail-booking-card {
    padding: 28px 24px;
    border-radius: 14px;
    border: 1px solid #ececec;
    background: #fff;
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.08);
}

.room-detail-booking-meta {
    margin: 0 0 22px;
    padding: 0 0 20px;
    list-style: none;
    border-bottom: 1px solid #eee;
}

.room-detail-booking-meta li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: #555;
}

.room-detail-booking-meta i {
    color: #9d7e54;
    font-size: 17px;
}

.room-detail-booking-actions .home-room-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.room-detail-booking-label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #888;
}

.room-detail-booking-price {
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 500;
    color: #111;
}

.room-detail-booking-price span {
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    color: #888;
}

.room-detail-booking-note {
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.6;
    color: #777;
}

.room-detail-booking-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.room-detail-booking-actions .home-room-btn {
    width: 100%;
    justify-content: center;
}

.room-detail-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    transition: color 0.2s ease;
}

.room-detail-contact-link:hover {
    color: #9d7e54;
}

.room-detail-sidebar-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fff;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.room-detail-sidebar-link:hover {
    border-color: #9d7e54;
    color: #9d7e54;
}

.room-detail-sidebar-link--whatsapp:hover {
    border-color: #25d366;
    color: #25d366;
}

.room-detail-related {
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid #eee;
}

@media (max-width: 991px) {
    .room-detail-title {
        font-size: 32px;
    }

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

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

    .room-detail-sidebar {
        position: static;
    }

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

@media (max-width: 575px) {
    .room-detail-title {
        font-size: 28px;
    }

    .room-detail-content {
        padding: 22px 18px 26px;
    }

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

    .room-detail-booking-price {
        font-size: 28px;
    }

    .room-detail-gallery-thumb {
        width: calc(33.333% - 8px);
        height: 64px;
    }
}

/* Gallery page */
.gallery-page-section {
    background: #fafafa;
}

.gallery-page-header {
    max-width: 640px;
    margin: 0 auto 44px;
}

.gallery-page-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9d7e54;
}

.gallery-page-title {
    margin-bottom: 14px;
    font-family: "Playfair Display", serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 500;
    color: #111;
}

.gallery-page-title span {
    color: #9d7e54;
}

.gallery-page-intro {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #666;
}

.hotel-gallery-card {
    height: 100%;
}

.hotel-gallery-card-link {
    position: relative;
    display: block;
    height: 100%;
    min-height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(17, 17, 17, 0.08);
    text-decoration: none;
}

.hotel-gallery-card-link img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hotel-gallery-card-link:hover img {
    transform: scale(1.06);
}

.hotel-gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.05) 30%, rgba(17, 17, 17, 0.82) 100%);
    opacity: 0.88;
    transition: opacity 0.3s ease;
}

.hotel-gallery-card-link:hover .hotel-gallery-card-overlay {
    opacity: 1;
}

.hotel-gallery-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 20px;
    color: #fff;
    z-index: 1;
}

.hotel-gallery-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    font-size: 18px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hotel-gallery-card-link:hover .hotel-gallery-card-icon {
    background: #9d7e54;
    transform: scale(1.05);
}

.hotel-gallery-card-content strong {
    display: block;
    margin-bottom: 6px;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 500;
}

.hotel-gallery-card-content span:not(.hotel-gallery-card-icon) {
    display: block;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hotel-gallery-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 5px 12px;
    border-radius: 999px;
    background: #9d7e54;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.gallery-page-empty {
    max-width: 520px;
    margin: 0 auto;
    padding: 48px 20px;
}

.gallery-page-empty p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.gallery-page-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    border: 1px solid #111;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.gallery-page-cta:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

@media (max-width: 991px) {
    .gallery-page-title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .hotel-gallery-card-link,
    .hotel-gallery-card-link img {
        min-height: 240px;
    }

    .gallery-page-cta {
        width: 100%;
    }
}

/* Team page */
.team-page-section,
.team-related-section {
    background: #fafafa;
}

.team-page-header {
    max-width: 680px;
    margin: 0 auto 36px;
}

.team-page-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #9d7e54;
}

.team-page-title {
    margin-bottom: 14px;
    font-family: "Playfair Display", serif;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 500;
    color: #111;
}

.team-page-title--section {
    font-size: 34px;
}

.team-page-intro {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #666;
}

.team-page-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 720px;
    margin: 0 auto 32px;
}

.team-page-stat {
    flex: 1 1 140px;
    max-width: 200px;
    padding: 18px 16px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #ececec;
    text-align: center;
    box-shadow: 0 6px 18px rgba(17, 17, 17, 0.04);
}

.team-page-stat strong {
    display: block;
    margin-bottom: 4px;
    font-family: "Playfair Display", serif;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
    color: #9d7e54;
}

.team-page-stat span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #777;
}

.team-page-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
}

.team-page-filter {
    padding: 8px 18px;
    border: 1px solid #ddd;
    border-radius: 999px;
    background: #fff;
    color: #555;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.team-page-filter:hover,
.team-page-filter.is-active {
    background: #9d7e54;
    border-color: #9d7e54;
    color: #fff;
    transform: translateY(-1px);
}

.team-page-col.is-hidden {
    display: none;
}

.team-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #ececec;
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.1);
}

.team-card-media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    text-decoration: none;
}

.team-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.team-card:hover .team-card-media img {
    transform: scale(1.05);
}

.team-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.72);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 2;
}

.team-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(17, 17, 17, 0.45);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.team-card-overlay i {
    font-size: 24px;
}

.team-card:hover .team-card-overlay {
    opacity: 1;
}

.team-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 22px 22px 24px;
}

.team-card-name {
    margin-bottom: 6px;
    font-family: "Playfair Display", serif;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 500;
    color: #111;
}

.team-card-role {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #9d7e54;
}

.team-card-experience {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
}

.team-card-experience i {
    color: #9d7e54;
    font-size: 16px;
}

.team-card-bio {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.team-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
}

.team-card-link:hover {
    color: #9d7e54;
    gap: 10px;
}

.team-card-link i {
    font-size: 16px;
    line-height: 1;
}

.team-page-cta {
    margin-top: 48px;
    padding: 36px 28px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1a1510 0%, #2a2218 100%);
}

.team-page-cta p {
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
}

.team-page-cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.team-page-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 24px;
    border-radius: 10px;
    border: 1px solid #9d7e54;
    background: #9d7e54;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.team-page-cta-btn:hover {
    background: #b8956a;
    border-color: #b8956a;
    color: #fff;
    transform: translateY(-1px);
}

.team-page-cta-btn--outline {
    background: transparent;
    color: #fff;
}

.team-page-cta-btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.65);
    color: #fff;
}

.team-page-empty {
    max-width: 520px;
    margin: 0 auto;
    padding: 40px 20px;
}

.team-page-empty p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.team-related-action {
    margin-top: 36px;
}

.team-related-section .team-page-cta-btn--outline {
    background: #fff;
    color: #111;
    border-color: #ddd;
}

.team-related-section .team-page-cta-btn--outline:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

@media (max-width: 991px) {
    .team-page-title {
        font-size: 32px;
    }

    .team-page-title--section {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .team-page-stats {
        gap: 10px;
    }

    .team-page-stat {
        flex: 1 1 calc(50% - 10px);
        max-width: none;
    }

    .team-page-cta-actions {
        flex-direction: column;
    }

    .team-page-cta-btn {
        width: 100%;
    }
}

/* Expert profile detail page */
.expert-detail-section {
    background: #fafafa;
}

.expert-detail-media-wrap {
    margin-bottom: 28px;
}

.expert-detail-photo {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.1);
    background: #111;
}

.expert-detail-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: top center;
}

.expert-detail-photo-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.72);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.expert-detail-award-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 14px;
    padding: 18px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a1510 0%, #2a2218 100%);
    color: #fff;
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.14);
}

.expert-detail-award-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(157, 126, 84, 0.2);
    color: #d4b88a;
    flex-shrink: 0;
}

.expert-detail-award-icon i {
    font-size: 20px;
    line-height: 1;
}

.expert-detail-award-card strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.expert-detail-award-card span {
    display: block;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

.expert-detail-content {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    padding: 28px 28px 32px;
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.04);
}

.expert-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.expert-detail-meta-badge {
    display: inline-flex;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(157, 126, 84, 0.12);
    color: #9d7e54;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.expert-detail-meta-role {
    font-size: 14px;
    font-weight: 600;
    color: #666;
}

.expert-detail-title {
    margin-bottom: 14px;
    font-family: "Playfair Display", serif;
    font-size: 38px;
    line-height: 1.25;
    font-weight: 500;
    color: #111;
}

.expert-detail-location {
    display: block;
    margin-top: 8px;
    font-family: inherit;
    font-size: 18px;
    font-weight: 400;
    color: #9d7e54;
}

.expert-detail-lead {
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.expert-detail-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.expert-detail-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #ececec;
    background: #fafafa;
}

.expert-detail-stat i {
    font-size: 22px;
    color: #9d7e54;
    flex-shrink: 0;
}

.expert-detail-stat strong {
    display: block;
    font-size: 15px;
    line-height: 1.35;
    color: #111;
}

.expert-detail-stat span {
    font-size: 12px;
    color: #888;
}

.expert-detail-quote {
    position: relative;
    margin: 0 0 28px;
    padding: 22px 22px 22px 54px;
    border-radius: 12px;
    border: 1px solid rgba(157, 126, 84, 0.25);
    background: rgba(157, 126, 84, 0.06);
}

.expert-detail-quote > i {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 22px;
    color: #9d7e54;
    line-height: 1;
}

.expert-detail-quote p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 500;
    color: #333;
}

.expert-detail-about,
.expert-detail-skills {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid #eee;
}

.expert-detail-about h2,
.expert-detail-skills h2 {
    margin-bottom: 14px;
    font-family: "Playfair Display", serif;
    font-size: 26px;
    font-weight: 500;
    color: #111;
}

.expert-detail-about-body,
.expert-detail-about-body p {
    font-size: 16px;
    line-height: 1.85;
    color: #555;
}

.expert-detail-about-body p:last-child {
    margin-bottom: 0;
}

.expert-detail-skills-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.expert-detail-skills-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.55;
    color: #444;
}

.expert-detail-skills-list i {
    margin-top: 2px;
    color: #9d7e54;
    flex-shrink: 0;
}

.expert-detail-sidebar {
    position: sticky;
    top: 110px;
}

.expert-detail-contact-card {
    padding: 28px 24px;
    border-radius: 14px;
    border: 1px solid #ececec;
    background: #fff;
    box-shadow: 0 16px 40px rgba(17, 17, 17, 0.08);
}

.expert-detail-contact-label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9d7e54;
}

.expert-detail-contact-name {
    margin-bottom: 6px;
    font-family: "Playfair Display", serif;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 500;
    color: #111;
}

.expert-detail-contact-role {
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 600;
    color: #9d7e54;
}

.expert-detail-contact-meta {
    margin: 0 0 22px;
    padding: 0 0 20px;
    list-style: none;
    border-bottom: 1px solid #eee;
}

.expert-detail-contact-meta li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: #555;
}

.expert-detail-contact-meta i {
    color: #9d7e54;
    font-size: 17px;
}

.expert-detail-contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.expert-detail-contact-actions .home-room-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.expert-detail-sidebar-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fff;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.expert-detail-sidebar-link:hover {
    border-color: #9d7e54;
    color: #9d7e54;
}

.expert-detail-sidebar-link--whatsapp:hover {
    border-color: #25d366;
    color: #25d366;
}

.expert-detail-sidebar-link--outline {
    background: #fafafa;
}

.expert-detail-contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    color: #111;
    text-decoration: none;
    transition: color 0.2s ease;
}

.expert-detail-contact-link:hover {
    color: #9d7e54;
}

.expert-detail-faq {
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid #e8e8e8;
}

.expert-detail-faq-header {
    margin-bottom: 32px;
}

.expert-detail-faq-header .team-page-title span {
    color: #9d7e54;
}

.expert-detail-faq-accordion .accordion-item {
    margin-bottom: 12px;
    border: 1px solid #ececec;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.expert-detail-faq-accordion .accordion-button {
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    background: #fff;
    box-shadow: none;
}

.expert-detail-faq-accordion .accordion-button:not(.collapsed) {
    color: #9d7e54;
    background: rgba(157, 126, 84, 0.06);
}

.expert-detail-faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.expert-detail-faq-accordion .accordion-body {
    padding: 0 20px 18px;
    font-size: 15px;
    line-height: 1.75;
    color: #555;
}

.expert-detail-faq-accordion .accordion-body p {
    margin: 0;
}

.expert-detail-related {
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid #e8e8e8;
}

@media (max-width: 991px) {
    .expert-detail-title {
        font-size: 32px;
    }

    .expert-detail-sidebar {
        position: static;
    }

    .expert-detail-skills-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .expert-detail-title {
        font-size: 28px;
    }

    .expert-detail-content {
        padding: 22px 18px 26px;
    }

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

    .expert-detail-contact-name {
        font-size: 24px;
    }
}
