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

:root {
    --mahogany: #2C0F0F;
    --mahogany-mid: #5C2D0E;
    --mahogany-rich: #8B4513;
    --gold: #C9A84C;
    --gold-light: #E8C869;
    --gold-dim: rgba(201,168,76,0.25);
    --orange: #C45E1E;
    --cream: #FDF6EC;
    --cream-warm: #F0E6CC;
    --dark: #1A0800;
    --dark-2: #220D02;
    --text-cream: #F5ECD7;
    --text-muted: #A07850;
    --glass-bg: rgba(44,15,15,0.55);
    --glass-border: rgba(201,168,76,0.3);
    --glass-blur: blur(14px);
    --font-display: 'Cinzel Decorative', serif;
    --font-head: 'Cinzel', serif;
    --font-body: 'EB Garamond', serif;
    --container: 1200px;
}

[data-theme="light"] {
    --dark: #FDF6EC;
    --dark-2: #F0E6CC;
    --mahogany: #FAF0DC;
    --mahogany-mid: #E8D8B4;
    --cream: #2C0F0F;
    --text-cream: #3D1C06;
    --text-muted: #6B4C2A;
    --glass-bg: rgba(253,246,236,0.75);
    --glass-border: rgba(139,69,19,0.25);
    --gold: #8B4513;
    --gold-light: #A8641F;
    --orange: #C45E1E;
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text-cream);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 17px;
}

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--mahogany-rich); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
::selection { background: var(--gold); color: var(--dark); }

a { color: inherit; text-decoration: none; transition: color .25s ease; }
img { max-width: 100%; display: block; }
em { font-style: italic; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section-pad-std { padding: 90px 0; }
.section-pad-lg { padding: 120px 0; }

#bgParticles { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 1; }

.section-tag {
    display: inline-block;
    font-family: var(--font-head);
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
}
.section-title {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--text-cream);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.2;
    margin-bottom: 18px;
}
.section-intro { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-intro p { color: var(--text-muted); font-size: 18px; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: var(--font-head); font-weight: 600; letter-spacing: 1px;
    padding: 13px 30px; border-radius: 4px; cursor: pointer; border: 1px solid transparent;
    transition: all .3s ease; font-size: 15px; text-transform: uppercase;
}
.btn-gold { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-outline { background: transparent; color: var(--text-cream); border-color: var(--gold-dim); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-lg { padding: 16px 38px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-block { display: flex; width: 100%; }

.preloader {
    position: fixed; inset: 0; z-index: 9999; background: var(--dark);
    display: flex; align-items: center; justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
    font-family: var(--font-display); font-size: 64px; color: var(--gold);
    text-shadow: 0 0 30px rgba(201,168,76,0.6);
    animation: glowPulse 1.6s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100% { text-shadow: 0 0 20px rgba(201,168,76,0.4); opacity: .7; } 50% { text-shadow: 0 0 40px rgba(201,168,76,0.9); opacity: 1; } }
.preloader-bar { width: 180px; height: 3px; background: var(--mahogany); border-radius: 3px; margin: 22px auto 0; overflow: hidden; }
.preloader-bar span { display: block; height: 100%; width: 0; background: var(--gold); animation: barFill 2s ease forwards; }
@keyframes barFill { to { width: 100%; } }

.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; transition: all .4s ease; padding: 18px 0; }
.navbar.scrolled { background: rgba(26,8,0,0.92); backdrop-filter: var(--glass-blur); border-bottom: 1px solid var(--gold-dim); padding: 12px 0; }
[data-theme="light"] .navbar.scrolled { background: rgba(253,246,236,0.92); }
.nav-container { max-width: var(--container); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 75px; width: auto; }
.nav-logo-fallback {
    display: none; width: 46px; height: 46px; border-radius: 50%;
    background: var(--mahogany); border: 2px solid var(--gold); color: var(--gold);
    align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700;
}
.nav-logo-text { font-family: var(--font-head); font-weight: 700; color: var(--text-cream); letter-spacing: 1px; font-size: 19px; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--text-cream); letter-spacing: .5px; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: var(--gold); transition: width .3s ease; }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.theme-toggle, .qr-btn {
    width: 42px; height: 42px; border-radius: 50%; background: var(--glass-bg);
    border: 1px solid var(--glass-border); color: var(--gold); cursor: pointer;
    display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all .3s ease;
}
.theme-toggle:hover, .qr-btn:hover { background: var(--gold); color: var(--dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { width: 26px; height: 2px; background: var(--gold); transition: all .3s ease; }

.mobile-menu {
    position: fixed; top: 0; right: -320px; width: 300px; max-width: 84vw; height: 100vh;
    background: var(--dark-2); border-left: 1px solid var(--gold-dim); z-index: 1100;
    transition: right .4s ease; padding: 24px; display: flex; flex-direction: column;
}
.mobile-menu.open { right: 0; }
.mobile-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.mobile-menu-head .nav-logo-fallback { display: flex; }
.mobile-close { background: none; border: none; color: var(--gold); font-size: 24px; cursor: pointer; }
.mobile-links { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.mobile-links a { font-family: var(--font-head); font-weight: 600; font-size: 18px; color: var(--text-cream); }
.mobile-links a:hover { color: var(--gold); }

.qr-modal { position: fixed; inset: 0; z-index: 1200; display: none; align-items: center; justify-content: center; }
.qr-modal.open { display: flex; }
.qr-modal-inner { background: var(--dark-2); border: 1px solid var(--gold-dim); border-radius: 12px; padding: 36px; text-align: center; position: relative; max-width: 320px; }
.qr-modal-inner h3 { font-family: var(--font-head); color: var(--gold); margin-bottom: 6px; }
.qr-modal-inner p { color: var(--text-muted); font-size: 14px; margin-bottom: 18px; }
.qr-modal-inner img { border-radius: 8px; margin: 0 auto; }
.qr-close { position: absolute; top: 12px; right: 14px; background: none; border: none; color: var(--text-muted); font-size: 20px; cursor: pointer; }

.overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1050; opacity: 0; visibility: hidden; transition: all .3s ease; }
.overlay.active { opacity: 1; visibility: visible; }

.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 30%, var(--mahogany) 0%, var(--dark) 70%); z-index: 0; }
.hero-bg.has-image { background-size: cover; background-position: center; }
.hero-bg-tint { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,8,0,0.55) 0%, rgba(26,8,0,0.75) 100%); z-index: 1; }
[data-theme="light"] .hero-bg-tint { background: linear-gradient(180deg, rgba(253,246,236,0.55) 0%, rgba(240,230,204,0.8) 100%); }
.hero-content { position: relative; z-index: 3; max-width: 860px; padding: 0 24px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--glass-bg); border: 1px solid var(--glass-border); backdrop-filter: var(--glass-blur); color: var(--gold-light); padding: 9px 20px; border-radius: 30px; font-family: var(--font-head); font-size: 13px; letter-spacing: 1px; margin-bottom: 26px; }
.hero-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(44px, 9vw, 96px); line-height: 1.05; color: var(--text-cream); margin-bottom: 18px; }
.hero-title .gold { color: var(--gold); display: block; }
.hero-tagline { font-size: clamp(18px, 2.4vw, 24px); color: var(--text-muted); margin-bottom: 22px; }
.hero-rating { display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--text-cream); margin-bottom: 36px; font-size: 15px; }
.stars { color: var(--gold); letter-spacing: 3px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.scroll-indicator { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); width: 26px; height: 44px; border: 2px solid var(--gold-dim); border-radius: 16px; z-index: 3; }
.scroll-indicator span { display: block; width: 5px; height: 8px; background: var(--gold); border-radius: 3px; margin: 8px auto 0; animation: scrollDot 1.6s ease-in-out infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 50% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }

.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.tgcsa-badge { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-family: var(--font-head); font-size: 13px; letter-spacing: 1px; margin-bottom: 18px; border: 1px solid var(--gold-dim); padding: 7px 16px; border-radius: 30px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 30px; }
.stat-box { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 10px; padding: 20px 12px; text-align: center; }
.stat-num { display: block; font-family: var(--font-head); font-weight: 900; font-size: 28px; color: var(--gold); }
.stat-label { font-size: 12px; color: var(--text-muted); letter-spacing: .5px; }
.about-image-wrap { position: relative; }
.about-image-frame { position: relative; border: 1px solid var(--gold-dim); border-radius: 12px; overflow: hidden; aspect-ratio: 4/5; }
.about-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-placeholder { width: 100%; height: 100%; min-height: 280px; background: var(--mahogany); display: flex; align-items: center; justify-content: center; color: var(--mahogany-rich); font-size: 64px; }
.corner { position: absolute; width: 30px; height: 30px; border: 2px solid var(--gold); }
.corner-tl { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.corner-tr { top: 12px; right: 12px; border-left: none; border-bottom: none; }
.corner-bl { bottom: 12px; left: 12px; border-right: none; border-top: none; }
.corner-br { bottom: 12px; right: 12px; border-left: none; border-top: none; }
.award-overlay { position: absolute; bottom: 18px; left: 18px; background: var(--glass-bg); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); color: var(--gold-light); padding: 8px 16px; border-radius: 30px; font-family: var(--font-head); font-size: 12px; display: flex; align-items: center; gap: 6px; }

.room-cards-grid, .rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.rooms-grid { grid-template-columns: repeat(2, 1fr); }
.room-premium-card, .room-listing-card { background: var(--dark-2); border: 1px solid var(--gold-dim); border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; transition: transform .35s ease, box-shadow .35s ease; }
.room-premium-card:hover, .room-listing-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,0,0,0.4); }
.rpc-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.rpc-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.rpc-slide.active { opacity: 1; }
.rpc-slide img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92); }
.rpc-slide.active img { animation: rpcKenBurns 8s ease-in-out forwards; }
@keyframes rpcKenBurns { from { transform: scale(1) translate(0,0); } to { transform: scale(1.06) translate(-1.5%, -1%); } }
.room-premium-card:hover .rpc-slide.active img, .room-listing-card:hover .rpc-slide.active img { filter: saturate(1.1); }
.rpc-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 3; }
.rpc-dot { width: 7px; height: 7px; border-radius: 10px; background: rgba(255,255,255,0.5); transition: all .3s ease; }
.rpc-dot.active { width: 20px; background: var(--gold); }
.rpc-count { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.55); color: #fff; padding: 4px 10px; border-radius: 20px; font-size: 12px; z-index: 3; }
.rpc-overlay { position: absolute; inset: 0; background: rgba(26,8,0,0.55); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s ease; z-index: 2; }
.rpc-overlay span { font-family: var(--font-head); color: var(--gold-light); border: 1px solid var(--gold); padding: 10px 24px; border-radius: 4px; letter-spacing: 1px; }
.rpc-media:hover .rpc-overlay { opacity: 1; }
.rpc-body { padding: 22px 22px 8px; flex: 1; }
.rpc-body h3 { font-family: var(--font-head); font-size: 21px; margin-bottom: 8px; }
.rpc-body h3 a:hover { color: var(--gold); }
.rpc-meta { color: var(--text-muted); font-size: 14px; margin-bottom: 10px; }
.rpc-price { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--gold); }
.rpc-price span { font-size: 14px; color: var(--text-muted); font-weight: 400; }
.rpc-foot { display: flex; gap: 10px; padding: 18px 22px 22px; }
.rpc-foot .btn { flex: 1; }

.room-listing-body { padding: 22px 22px 6px; flex: 1; }
.room-listing-body h3 { font-family: var(--font-head); font-size: 23px; margin-bottom: 10px; }
.room-listing-body h3 a:hover { color: var(--gold); }
.room-listing-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; color: var(--text-muted); font-size: 14px; }
.room-listing-price { color: var(--gold); font-family: var(--font-head); font-weight: 700; font-size: 18px; }
.room-listing-desc { color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 14px; }
.amenity-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.amenity-tag { background: var(--glass-bg); border: 1px solid var(--glass-border); color: var(--text-cream); padding: 4px 12px; border-radius: 20px; font-size: 12px; }

.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.amenity-item { background: var(--dark-2); border: 1px solid var(--gold-dim); border-radius: 12px; padding: 28px 20px; text-align: center; transition: all .3s ease; }
.amenity-item:hover { border-color: var(--gold); transform: translateY(-4px); }
.amenity-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--mahogany); border: 1px solid var(--gold-dim); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 16px; }
.amenity-item h4 { font-family: var(--font-head); font-size: 16px; margin-bottom: 6px; }
.amenity-item p { color: var(--text-muted); font-size: 14px; }

.nearby-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.nearby-card { display: flex; align-items: center; gap: 14px; background: var(--dark-2); border: 1px solid var(--gold-dim); border-radius: 10px; padding: 16px 18px; transition: all .3s ease; }
.nearby-card:hover { border-color: var(--gold); }
.nearby-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--mahogany); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.nearby-info { flex: 1; }
.nearby-info h4 { font-family: var(--font-head); font-size: 15px; }
.nearby-cat { font-size: 12px; color: var(--text-muted); }
.nearby-dist { font-family: var(--font-head); color: var(--gold); font-size: 13px; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card { position: relative; border-radius: 14px; overflow: hidden; min-height: 320px; border: 1px solid var(--gold-dim); display: flex; }
.service-card-bg { position: absolute; inset: 0; z-index: 0; }
.service-card-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; filter: saturate(0.8); transition: all .4s ease; }
.service-card:hover .service-card-bg img { opacity: 1; filter: saturate(1.15) contrast(1.05); }
.service-card-inner { position: relative; z-index: 1; padding: 30px 24px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(180deg, transparent 30%, rgba(26,8,0,0.92) 100%); width: 100%; }
.service-card:not(.has-bg) .service-card-inner { background: linear-gradient(180deg, var(--mahogany) 0%, var(--dark-2) 100%); justify-content: center; text-align: center; }
.service-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--glass-bg); border: 1px solid var(--gold); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.service-card:not(.has-bg) .service-icon { margin: 0 auto 16px; }
.service-card h3 { font-family: var(--font-head); font-size: 19px; margin-bottom: 10px; color: #fff; }
.service-card:not(.has-bg) h3 { color: var(--text-cream); }
.service-card p { color: rgba(245,236,215,0.85); font-size: 14px; max-height: 0; opacity: 0; overflow: hidden; transition: all .4s ease; }
.service-card:hover p, .service-card:not(.has-bg) p { max-height: 200px; opacity: 1; }
.service-card:not(.has-bg) p { color: var(--text-muted); }

.gallery-swiper-init { padding: 10px 24px 40px; overflow: hidden; }
.gallery-slide-card { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; border: 1px solid var(--gold-dim); }
.gallery-slide-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-slide-card:hover img { transform: scale(1.06); }
.gallery-slide-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: #fff; font-family: var(--font-head); font-size: 14px; }
.swiper-pagination { position: static; margin-top: 14px; }
.swiper-pagination-bullet { background: var(--gold); }
.swiper-nav-row { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 10px; }
.swiper-btn-prev, .swiper-btn-next { width: 44px; height: 44px; border-radius: 50%; background: var(--glass-bg); border: 1px solid var(--glass-border); color: var(--gold); cursor: pointer; transition: all .3s ease; }
.swiper-btn-prev:hover, .swiper-btn-next:hover { background: var(--gold); color: var(--dark); }

.awards-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 40px; }
.award-box { background: var(--dark-2); border: 1px solid var(--gold-dim); border-radius: 14px; padding: 36px; text-align: center; }
.award-box i { font-size: 40px; color: var(--gold); margin-bottom: 16px; }
.award-box h3 { font-family: var(--font-head); font-size: 24px; margin-bottom: 10px; }
.award-box p { color: var(--text-muted); }
.external-booking { text-align: center; }
.external-booking p { color: var(--text-muted); margin-bottom: 16px; letter-spacing: 1px; text-transform: uppercase; font-size: 13px; }
.external-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.cta { background: linear-gradient(135deg, var(--mahogany) 0%, var(--dark-2) 100%); }
.cta-inner { text-align: center; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 10px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.contact-card { display: flex; gap: 16px; background: var(--dark-2); border: 1px solid var(--gold-dim); border-radius: 10px; padding: 18px; }
.contact-card i { width: 46px; height: 46px; border-radius: 10px; background: var(--mahogany); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-card h4 { font-family: var(--font-head); font-size: 15px; margin-bottom: 4px; }
.contact-card p { color: var(--text-muted); font-size: 15px; }
.contact-card a:hover { color: var(--gold); }
.contact-map { border-radius: 14px; overflow: hidden; border: 1px solid var(--gold-dim); height: 100%; min-height: 480px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 480px; border: 0; filter: grayscale(0.2) contrast(1.05); }

.site-footer { background: var(--dark-2); border-top: 1px solid var(--gold-dim); padding: 70px 0 0; position: relative; z-index: 2; }
.footer-grid { max-width: var(--container); margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 40px; }
.footer-logo-circle { width: 54px; height: 54px; border-radius: 50%; background: var(--mahogany); border: 2px solid var(--gold); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 20px; margin-bottom: 16px; }
.footer-brand h4 { font-family: var(--font-head); font-size: 20px; margin-bottom: 12px; }
.footer-brand p { color: var(--text-muted); font-size: 15px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: var(--mahogany); border: 1px solid var(--gold-dim); color: var(--gold); display: flex; align-items: center; justify-content: center; transition: all .3s ease; }
.footer-social a:hover { background: var(--gold); color: var(--dark); }
.footer-col h5 { font-family: var(--font-head); color: var(--gold); font-size: 16px; margin-bottom: 18px; letter-spacing: 1px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a, .footer-contact li { color: var(--text-muted); font-size: 15px; }
.footer-col ul a:hover { color: var(--gold); }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-contact li { display: flex; gap: 10px; }
.footer-contact i { color: var(--gold); margin-top: 4px; }
.footer-bottom { margin-top: 50px; border-top: 1px solid var(--gold-dim); padding: 22px 24px; text-align: center; color: var(--text-muted); font-size: 14px; }

.whatsapp-float { position: fixed; bottom: 26px; right: 26px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; z-index: 900; box-shadow: 0 8px 22px rgba(37,211,102,0.4); transition: transform .3s ease; }
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
.scroll-top { position: fixed; bottom: 94px; right: 30px; width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: var(--dark); border: none; cursor: pointer; font-size: 17px; opacity: 0; visibility: hidden; transition: all .3s ease; z-index: 900; }
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--gold-light); }

.page-hero { position: relative; padding: 180px 0 90px; text-align: center; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at top, var(--mahogany), var(--dark)); background-size: cover; background-position: center; z-index: 0; }
.page-hero-tint { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,8,0,0.6), rgba(26,8,0,0.85)); z-index: 1; }
[data-theme="light"] .page-hero-tint { background: linear-gradient(180deg, rgba(253,246,236,0.6), rgba(240,230,204,0.85)); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-title { font-family: var(--font-display); font-size: clamp(36px, 6vw, 64px); color: var(--text-cream); margin-bottom: 10px; }
.page-hero-content p { color: var(--text-muted); font-size: 18px; }
.breadcrumb { display: flex; align-items: center; gap: 10px; justify-content: center; color: var(--text-muted); font-family: var(--font-head); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 9px; }

.price-table-wrap { background: var(--glass-bg); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); border-radius: 14px; padding: 30px; margin: 60px 0; }
.price-table-wrap h3 { font-family: var(--font-head); margin-bottom: 20px; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table thead th { font-family: var(--font-head); color: var(--gold); text-align: left; padding: 12px 16px; border-bottom: 2px solid var(--gold-dim); letter-spacing: 1px; }
.price-table tbody td { padding: 13px 16px; border-bottom: 1px solid var(--gold-dim); color: var(--text-cream); }
.price-table tbody tr:hover { background: rgba(201,168,76,0.06); }

.ready-block { text-align: center; padding: 50px 0 10px; }
.ready-block p { color: var(--text-muted); margin-bottom: 24px; }

.room-gallery-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 14px; margin-bottom: 50px; }
.rgg-main { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 16/11; cursor: pointer; }
.rgg-main img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.rgg-main:hover img { transform: scale(1.04); }
.rgg-zoom { position: absolute; bottom: 16px; right: 16px; width: 44px; height: 44px; border-radius: 50%; background: var(--glass-bg); backdrop-filter: var(--glass-blur); border: 1px solid var(--gold); color: var(--gold); display: flex; align-items: center; justify-content: center; }
.rgg-thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rgg-thumb { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; aspect-ratio: 1; }
.rgg-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.rgg-thumb:hover img { transform: scale(1.06); }
.rgg-more { position: absolute; inset: 0; background: rgba(26,8,0,0.7); display: flex; align-items: center; justify-content: center; color: var(--gold); font-family: var(--font-head); font-size: 24px; }
.room-detail-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 50px; align-items: start; }
.room-detail-meta { color: var(--text-muted); margin-bottom: 18px; }
.room-detail-meta i { color: var(--gold); }
.room-detail-desc { color: var(--text-muted); margin-bottom: 30px; }
.room-sub-head { font-family: var(--font-head); color: var(--gold); font-size: 19px; margin: 28px 0 16px; }
.amenity-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.amenity-detail-item { display: flex; align-items: center; gap: 10px; color: var(--text-cream); padding: 10px 0; }
.amenity-detail-item i { color: var(--gold); width: 20px; }
.good-to-know-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.gtk-item { display: flex; gap: 12px; align-items: center; background: var(--dark-2); border: 1px solid var(--gold-dim); border-radius: 10px; padding: 14px 16px; }
.gtk-item i { color: var(--gold); font-size: 18px; }
.gtk-item strong { display: block; font-family: var(--font-head); font-size: 14px; }
.gtk-item span { color: var(--text-muted); font-size: 13px; }
.booking-sidebar-card { position: sticky; top: 100px; background: var(--glass-bg); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border); border-radius: 16px; padding: 30px; text-align: center; }
.bsc-price { font-family: var(--font-head); font-weight: 700; font-size: 32px; color: var(--gold); }
.bsc-price span { font-size: 15px; color: var(--text-muted); font-weight: 400; }
.bsc-stars { color: var(--gold); letter-spacing: 3px; margin: 8px 0 22px; }
.booking-sidebar-card .btn { margin-bottom: 12px; }
.bsc-note { color: var(--text-muted); font-size: 13px; margin: 16px 0; }
.bsc-contact { display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--gold-dim); padding-top: 18px; }
.bsc-contact a { color: var(--text-cream); font-size: 15px; }
.bsc-contact a:hover { color: var(--gold); }
.bsc-contact i { color: var(--gold); margin-right: 8px; }

.room-gallery-modal { position: fixed; inset: 0; z-index: 2000; background: rgba(26,8,0,0.97); display: none; align-items: center; justify-content: center; padding: 20px; }
.room-gallery-modal.open { display: flex; }
.rgm-inner { width: 100%; max-width: 1100px; animation: rgmScaleUp .4s ease; }
@keyframes rgmScaleUp { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
.rgm-close { position: absolute; top: 20px; right: 26px; background: none; border: none; color: var(--gold); font-size: 30px; cursor: pointer; z-index: 5; }
.rgm-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; color: var(--text-cream); }
.rgm-room-name { font-family: var(--font-head); font-size: 22px; color: var(--gold); }
.rgm-counter { color: var(--text-muted); font-family: var(--font-head); }
.rgm-stage { position: relative; display: flex; align-items: center; gap: 16px; }
.rgm-image-wrap { position: relative; flex: 1; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; background: var(--dark-2); }
.rgm-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .6s ease; }
.rgm-img.rgm-active { opacity: 1; animation: rgmKenBurns 10s ease-in-out forwards; }
@keyframes rgmKenBurns { from { transform: scale(1); } to { transform: scale(1.06); } }
.rgm-img.rgm-prev-img { opacity: 0; }
.rgm-loader { position: absolute; inset: 0; display: none; align-items: center; justify-content: center; }
.rgm-loader.visible { display: flex; }
.rgm-loader span { width: 36px; height: 36px; border: 3px solid var(--gold-dim); border-top-color: var(--gold); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.rgm-arrow { width: 50px; height: 50px; border-radius: 50%; background: var(--glass-bg); border: 1px solid var(--gold); color: var(--gold); cursor: pointer; font-size: 18px; flex-shrink: 0; transition: all .3s ease; }
.rgm-arrow:hover { background: var(--gold); color: var(--dark); }
.rgm-thumbs { display: flex; gap: 10px; margin-top: 16px; overflow-x: auto; padding: 6px 2px; }
.rgm-thumbs .rgm-thumb { width: 92px; height: 64px; border-radius: 8px; overflow: hidden; flex-shrink: 0; cursor: pointer; border: 2px solid transparent; transition: all .3s ease; opacity: .6; }
.rgm-thumbs .rgm-thumb img { width: 100%; height: 100%; object-fit: cover; }
.rgm-thumbs .rgm-thumb.active { border-color: var(--gold); opacity: 1; transform: translateY(-3px); }
.rgm-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.rgm-price { font-family: var(--font-head); font-size: 22px; color: var(--gold); }

.masonry-grid { columns: 3; column-gap: 18px; }
.masonry-item { position: relative; break-inside: avoid; margin-bottom: 18px; border-radius: 12px; overflow: hidden; cursor: pointer; }
.masonry-item img { width: 100%; transition: transform .5s ease; }
.masonry-item:hover img { transform: scale(1.06); }
.masonry-overlay { position: absolute; inset: 0; background: rgba(26,8,0,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s ease; color: var(--gold); font-size: 30px; }
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-item figcaption { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px; background: linear-gradient(transparent, rgba(0,0,0,0.8)); color: #fff; font-family: var(--font-head); font-size: 14px; }
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(26,8,0,0.96); display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; }
.lightbox-close { position: absolute; top: 22px; right: 28px; background: none; border: none; color: var(--gold); font-size: 32px; cursor: pointer; }

.booking-container { display: grid; grid-template-columns: 1fr; gap: 40px; max-width: 820px; }
.booking-form-wrap { background: var(--dark-2); border: 1px solid var(--gold-dim); border-radius: 16px; padding: 40px; }
.form-head { margin-bottom: 26px; }
.form-head p { color: var(--text-muted); margin-top: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-head); font-size: 14px; color: var(--text-muted); margin-bottom: 7px; letter-spacing: .5px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 15px; background: var(--dark); border: 1px solid var(--gold-dim);
    border-radius: 7px; color: var(--text-cream); font-family: var(--font-body); font-size: 16px; transition: border-color .3s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }
.form-feedback { display: none; padding: 14px 18px; border-radius: 8px; margin-bottom: 18px; font-size: 15px; }
.form-feedback.visible { display: block; }
.form-feedback.success { background: rgba(76,140,76,0.15); border: 1px solid #4C8C4C; color: #9fd49f; }
.form-feedback.error { background: rgba(196,94,30,0.15); border: 1px solid var(--orange); color: var(--gold-light); }
[data-theme="light"] .form-feedback.success { color: #2c662c; }

.mini-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.mini-card { background: var(--dark-2); border: 1px solid var(--gold-dim); border-radius: 12px; padding: 24px; text-align: center; transition: all .3s ease; }
.mini-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.mini-card i { font-size: 26px; color: var(--gold); margin-bottom: 12px; }
.mini-card h4 { font-family: var(--font-head); font-size: 16px; margin-bottom: 6px; }
.mini-card p { color: var(--text-muted); font-size: 14px; }

.standalone-page { background: var(--dark); min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.standalone-wrap { width: 100%; max-width: 520px; padding: 30px; }
.standalone-card { background: var(--dark-2); border: 1px solid var(--gold-dim); border-radius: 18px; padding: 44px; text-align: center; }
.standalone-logo { width: 60px; height: 60px; border-radius: 50%; background: var(--mahogany); border: 2px solid var(--gold); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: 22px; margin: 0 auto 22px; }
.standalone-card h1 { font-family: var(--font-head); color: var(--text-cream); font-size: 26px; margin-bottom: 12px; }
.standalone-card > p { color: var(--text-muted); margin-bottom: 22px; }
.pay-icon { font-size: 44px; color: var(--gold); margin-bottom: 16px; }
.pay-icon.error { color: var(--orange); }
.pay-summary { background: var(--dark); border: 1px solid var(--gold-dim); border-radius: 12px; padding: 22px; text-align: left; margin: 22px 0; }
.pay-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--gold-dim); }
.pay-row:last-child { border-bottom: none; }
.pay-row span { color: var(--text-muted); }
.pay-total { margin-top: 6px; padding-top: 14px; border-top: 2px solid var(--gold-dim); border-bottom: none; }
.pay-total strong { color: var(--gold); font-size: 22px; font-family: var(--font-head); }
.pay-cancelled-note { background: rgba(196,94,30,0.15); border: 1px solid var(--orange); color: var(--gold-light); padding: 12px 16px; border-radius: 8px; margin-bottom: 18px; font-size: 14px; }
.pay-secure-note { color: var(--text-muted); font-size: 13px; margin-top: 18px; }
.pay-secure-note i { color: var(--gold); }
.standalone-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }

.success-container { max-width: 600px; margin: 0 auto; text-align: center; background: var(--dark-2); border: 1px solid var(--gold-dim); border-radius: 18px; padding: 50px 40px; }
.success-icon { font-size: 64px; color: var(--gold); margin-bottom: 18px; }
.success-icon.confirmed { color: #4C8C4C; }
.success-container h1 { font-family: var(--font-head); font-size: 30px; margin-bottom: 12px; }
.success-container > p { color: var(--text-muted); margin-bottom: 10px; }
.success-summary { max-width: 420px; margin: 26px auto; }
.success-info { margin-top: 20px; }
.success-info p { color: var(--text-muted); margin: 6px 0; }
.success-info i { color: var(--gold); margin-right: 8px; }

.empty-state { text-align: center; padding: 80px 20px; color: var(--text-muted); }
.empty-state i { font-size: 50px; color: var(--gold-dim); margin-bottom: 16px; }

.u-center { text-align: center; }
.u-mx-auto { margin-left: auto; margin-right: auto; }
.u-gold { color: var(--gold); }
.u-cream { color: var(--text-cream); }
.u-muted { color: var(--text-muted); }
.gold { color: var(--gold); }

@media (max-width: 1024px) {
    .room-cards-grid, .amenities-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
    .nearby-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .contact-grid, .room-detail-layout { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .booking-sidebar-card { position: static; }
    .masonry-grid { columns: 2; }
}
@media (max-width: 768px) {
    .nav-links, .nav-book { display: none; }
    .hamburger { display: flex; }
    .nav-logo img { height: 40px; }
    .section-pad-std { padding: 64px 0; }
    .section-pad-lg { padding: 80px 0; }
    .rooms-grid, .room-gallery-grid { grid-template-columns: 1fr; }
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
    .awards-row, .mini-cards-grid { grid-template-columns: 1fr; }
    .rgm-thumbs .rgm-thumb { width: 70px; height: 50px; }
}
@media (max-width: 480px) {
    body { font-size: 16px; }
    .room-cards-grid, .amenities-grid, .services-grid, .nearby-grid, .footer-grid { grid-template-columns: 1fr; }
    .form-row, .form-row-3 { grid-template-columns: 1fr; }
    .amenity-detail-grid, .good-to-know-grid { grid-template-columns: 1fr; }
    .masonry-grid { columns: 1; }
    .booking-form-wrap, .standalone-card, .success-container { padding: 26px; }
    .hero-actions .btn, .cta-actions .btn { width: 100%; }
}
