/* style.css */
:root {
    /* Color Palette */
    --primary-bg: #F9F8F6; /* Warm White */
    --secondary-bg: #F0EBE1; /* Very Light Beige */
    
    --bg-warm-white: #F9F8F6;
    --bg-soft-beige: #F4F1EA;
    --bg-forest-tint: #EEF0EC;
    --bg-dark-editorial: #1C2317;
    
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.22);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    
    --text-primary: #1A1A1A;
    --text-secondary: #5E5E5E;
    
    --accent: #292825; /* Deep Charcoal */
    --accent-secondary: #D4AF37; /* Soft Gold */
    
    /* Typography */
    --font-main: 'Poppins', sans-serif;
    
    /* Spacing & Radii */
    --radius-lg: 28px;
    --radius-xl: 40px;
    
    --space-sm: clamp(16px, 2vw, 24px);
    --space-md: clamp(32px, 4vw, 48px);
    --space-lg: clamp(64px, 8vw, 120px);
    --space-xl: clamp(100px, 12vw, 180px);
}

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

html {
    scroll-behavior: initial; /* Lenis handles this */
}

body {
    font-family: var(--font-main);
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title {
    font-size: clamp(60px, 8vw, 120px);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: clamp(36px, 5vw, 64px);
    margin-bottom: var(--space-md);
}

.card-title {
    font-size: clamp(20px, 3vw, 32px);
    margin-bottom: 8px;
}

.body-text {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    font-weight: 400;
}

.small-text {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Utilities */
.section-padding {
    padding: var(--space-xl) 5vw;
}

.bg-warm-white { background-color: var(--bg-warm-white); }
.bg-soft-beige { background-color: var(--bg-soft-beige); }
.bg-forest-tint { background-color: var(--bg-forest-tint); }
.bg-dark-editorial { 
    background-color: var(--bg-dark-editorial); 
    color: white; 
}
.bg-dark-editorial .section-title, 
.bg-dark-editorial .body-text { color: white; }
.bg-dark-editorial .text-secondary { color: rgba(255, 255, 255, 0.7); }

.breathing-moment {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-lg) 5vw;
}

.breathing-quote {
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.2;
    max-width: 900px;
    font-weight: 400;
    font-style: italic;
    color: var(--text-primary);
}

.aspect-tall-editorial { aspect-ratio: 4/5; }
.aspect-cinematic { aspect-ratio: 21/9; }
.aspect-square { aspect-ratio: 1/1; }

.image-bleed {
    width: 110%;
    margin-left: -5%;
}

.image-overlap-right {
    position: relative;
    right: -5vw;
    z-index: 10;
}

.image-overlap-left {
    position: relative;
    left: -5vw;
    z-index: 10;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.text-center { text-align: center; }
.max-w-700 { max-width: 700px; margin-left: auto; margin-right: auto; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }
.mt-spacing { margin-top: var(--space-lg); }
.mt-sm { margin-top: var(--space-sm); }

/* Layouts */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.asymmetric-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-lg);
    align-items: center;
}



/* Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    padding: var(--space-md);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px 0 rgba(31, 38, 135, 0.12);
}

.large-rounded {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 500;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-main);
}

.btn-primary {
    background-color: var(--accent);
    color: white;
}

.btn-primary:hover {
    background-color: #3A3936;
    transform: scale(1.02);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: white;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Placeholders */
.placeholder-image {
    background: linear-gradient(135deg, #e0dcd3 0%, #d5d0c5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.placeholder-text {
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.6;
}

.aspect-portrait { aspect-ratio: 3/4; }
.aspect-landscape { aspect-ratio: 16/9; }

/* 1. Navigation */
.glass-nav {
    position: fixed;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1100px, calc(100vw - 48px));
    height: 68px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 0 24px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    opacity: 0;
    animation: navReveal 0.5s ease forwards;
}

.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

.nav-links li {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    padding: 4px 0;
}

.nav-links a:hover {
    color: var(--text-primary);
    transform: translateY(-1px);
}

/* Subtle Animated Underline for Active and Hover */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--text-primary);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 16px;
}

.nav-links a.active {
    color: var(--text-primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-end;
}

/* Nav Button */
.nav-btn {
    height: 46px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 999px;
    background-color: var(--accent);
    color: white;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    border: none;
}

.nav-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(85, 107, 47, 0.3);
    background-color: var(--accent);
}
/* 2. Editorial Hero Section */
.hero-editorial {
    height: 100vh;
    width: 100vw;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-bg);
    background-image: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.6) 0%, transparent 80%);
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 100vh;
}

.editorial-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #000000 100%);
}

.editorial-img .placeholder-text {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255,255,255,0.6);
    font-size: 1.5rem;
    font-weight: 400;
}

.image-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero-text-container {
    position: absolute;
    bottom: 10vh;
    left: 8vw;
    z-index: 10;
    color: #FFFFFF;
    text-align: left;
    max-width: 800px;
}

.eyebrow-text {
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 24px;
    display: block;
    opacity: 0.9;
}

.hero-heading {
    font-family: var(--font-main);
    font-size: clamp(48px, 5.5vw, 96px);
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subheading {
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.6;
    max-width: 650px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-actions-editorial {
    display: flex;
    gap: 16px;
}

.btn-pill {
    border-radius: 100px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-pill.btn-primary {
    background-color: rgba(255, 255, 255, 0.95);
    color: #1A1A1A;
    border: 1px solid rgba(255,255,255,1);
}

.btn-pill.btn-primary:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-pill.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-pill.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}





.scroll-indicator-minimal {
    position: absolute;
    bottom: 3vh;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.scroll-line-container {
    height: 60px;
    width: 1px;
    background: rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.scroll-line-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: var(--text-primary);
    animation: scrollDown 2s infinite ease-in-out;
}

@keyframes scrollDown {
    0% { top: -40%; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

/* 3. Welcome */
.glass-accent {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    z-index: -1;
}

.image-wrapper {
    position: relative;
    width: 100%;
}

/* 5. Carousels (Rooms & Experiences) - Native CSS Scroll Snapping */
.css-carousel {
    width: 100%;
    padding: 20px 0 60px 0;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    gap: 40px;
    padding: 0 5vw;
}

.carousel-track::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.carousel-slide {
    scroll-snap-align: center;
    flex: 0 0 85%;
    max-width: 600px;
}

.carousel-slide.wide-slide {
    max-width: 900px;
}

/* Premium Room Cards (Overlays for Home preview) */
.premium-room-card {
    position: relative;
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-room-card:hover {
    transform: scale(1.02);
}

.glass-overlay-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    color: white;
    z-index: 10;
}

.glass-overlay-card .card-title {
    color: white;
    margin-bottom: 8px;
}

.glass-overlay-card .card-desc {
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}

.room-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

/* Hotel Room Card (Dedicated Rooms Page) */
.hotel-room-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-warm-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    height: 100%;
    transition: transform 0.5s ease;
}
.hotel-room-card:hover {
    transform: translateY(-8px);
}
.hotel-room-card .image-wrapper {
    height: 350px;
    width: 100%;
    overflow: hidden;
}
.hotel-room-card .image-wrapper .placeholder-image {
    height: 100%;
    width: 100%;
    border-radius: 0;
}
.hotel-room-card .card-content {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.hotel-room-card .card-title {
    font-size: 28px;
    margin-bottom: 12px;
}
.hotel-room-card .card-desc {
    color: var(--text-secondary);
    margin-bottom: 24px;
}
.hotel-room-card .room-amenities {
    list-style: none;
    margin-bottom: 32px;
    padding: 0;
    color: var(--text-secondary);
    font-size: 14px;
}
.hotel-room-card .room-amenities li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}
.hotel-room-card .room-amenities li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
}
.hotel-room-card .card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 24px;
}
.hotel-room-card .price {
    font-size: 20px;
    font-weight: 600;
}
.hotel-room-card .price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
}

/* Cinematic Experience Slides */
.exp-cinematic-slide {
    position: relative;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.exp-cinematic-slide:hover {
    transform: scale(1.02);
}

.exp-caption {
    background: rgba(249, 248, 246, 0.85); /* --primary-bg */
}

/* 8. Organic Masonry Gallery */
.organic-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    grid-auto-rows: 300px;
}

.grid-item {
    width: 100%;
    height: 100%;
}

.grid-item.tall { grid-row: span 2; }
.grid-item.wide { grid-column: span 2; }

@media (max-width: 768px) {
    .grid-item.tall, .grid-item.wide {
        grid-row: span 1;
        grid-column: span 1;
    }
}


.grid-item .placeholder-image {
    height: 100%;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.glass-hover:hover {
    transform: scale(1.03);
    filter: brightness(1.1);
}

/* 9. Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
}

.review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.hover-float {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-float:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.review-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
}

.reviewer {
    color: var(--accent);
    font-weight: 600;
    margin-top: 24px;
}

/* 10. FAQ */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: background 0.3s ease;
}
.faq-card:hover {
    background: rgba(255, 255, 255, 0.9);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-main);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    line-height: 1.4;
}

.accordion-header::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease, content 0.3s;
    flex-shrink: 0;
}

.accordion-header.active::after {
    content: '−';
    transform: rotate(180deg);
}

.accordion-content {
    display: grid !important; 
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
    max-height: none !important; 
}

.accordion-header.active + .accordion-content {
    grid-template-rows: 1fr;
    padding-bottom: 24px;
}

.accordion-content > div {
    overflow: hidden;
}

.accordion-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

/* 11. Contact */
.map-placeholder {
    height: 500px;
}

.contact-details p {
    font-size: 18px;
    margin-bottom: 12px;
}

/* 12. Footer */
.footer {
    background-color: var(--secondary-bg);
    padding: var(--space-xl) 5vw var(--space-md) 5vw;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-lg);
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: var(--space-lg);
}

.footer-brand h2 {
    font-size: 40px;
    margin-bottom: 8px;
}

.footer-links, .footer-social {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a, .footer-social a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover, .footer-social a:hover {
    color: var(--accent);
}

.footer-bottom {
    margin-top: var(--space-md);
    text-align: center;
    color: var(--text-secondary);
}


/* ==========================================================================
   CSS REVEAL ANIMATIONS (IntersectionObserver)
   ========================================================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.5s ease, transform 0.5s ease;
    
}

.reveal-blur {
    opacity: 0;
    transition: opacity 0.5s ease;
    
}

.is-revealed {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* Hero Initial Animations (No scroll needed, just run on load) */
.hero-reveal {
    animation: fadeUp 0.5s ease forwards;
    opacity: 0;
    
}
.hero-reveal.delay-1 { animation-delay: 0.1s; }
.hero-reveal.delay-2 { animation-delay: 0.2s; }
.hero-reveal.delay-3 { animation-delay: 0.3s; }
.hero-reveal.delay-4 { animation-delay: 0.4s; }

.hero-scale {
    animation: scaleIn 0.8s ease forwards;
    opacity: 0;
    
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes navReveal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   MOBILE RESPONSIVE REDESIGN (Global Rules)
   ========================================================================== */

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 30px;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Fullscreen Glass Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(249, 248, 246, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
    transform: translateY(40px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 80%;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-link {
    font-size: clamp(32px, 8vw, 48px);
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
    font-family: var(--font-main);
}

/* Global Mobile Breakpoint (< 992px) */
@media (max-width: 992px) {
    /* Hide desktop elements */
    .nav-links, .desktop-only {
        display: none !important;
    }
    
    /* Navigation adjustments */
    .glass-nav {
        width: calc(100vw - 24px) !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        min-width: auto !important;
        padding: 0 24px !important;
        top: 12px !important;
        border-radius: 999px;
        height: 60px !important;
    }
    
    .nav-container {
        display: flex !important;
        gap: 0;
        justify-content: space-between;
    }
    
    /* Enable Hamburger */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hamburger Active Animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(4px) rotate(45deg);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        transform: translateY(-4px) rotate(-45deg);
    }
    
    /* Global Spacing and Padding */
    .section-padding {
        padding: var(--space-xl) 24px !important;
    }
    
    .container {
        padding-left: 0; 
        padding-right: 0;
    }
    
    /* Ensure no horizontal scrolling */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    /* Buttons */
    .btn, .btn-pill {
        width: 100% !important;
        text-align: center;
        padding: 18px 24px;
        justify-content: center;
    }
    
    /* Layout Grids */
    .two-col, .asymmetric-layout {
        grid-template-columns: 1fr !important;
        gap: var(--space-md) !important;
    }
    
    /* Hero Adjustments */
    .hero-editorial {
        height: auto;
        min-height: 100vh;
        padding: 120px 24px 60px 24px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
    }
    
    .interior-hero {
        min-height: 0 !important;
        height: auto !important;
        padding-top: 140px !important;
        padding-bottom: 40px !important;
    }
    
    .hero-image-container {
        position: relative !important;
        width: 100% !important;
        height: 60vh !important;
        margin-top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        margin-bottom: var(--space-md);
        border-radius: 24px;
    }
    
    .hero-text-container {
        position: relative !important;
        left: 0 !important;
        bottom: 0 !important;
        color: var(--text-primary) !important;
    }
    
    .eyebrow-text {
        color: var(--text-secondary);
    }
    
    .hero-heading {
        font-size: clamp(48px, 12vw, 60px) !important;
        line-height: 1.1;
        margin-bottom: 24px;
    }
    
    .hero-subheading {
        font-size: 16px !important;
        color: var(--text-secondary);
        margin-bottom: 32px;
    }
    
    .hero-actions-editorial {
        flex-direction: column !important;
        gap: 16px !important;
    }
    
    .btn-pill.btn-primary {
        background-color: var(--accent) !important;
        color: white !important;
        border: none !important;
    }
    .btn-pill.btn-secondary {
        background-color: transparent !important;
        color: var(--text-primary) !important;
        border: 1px solid var(--text-primary) !important;
    }
    
    .scroll-indicator-minimal {
        display: none;
    }
}

/* ==========================================================================
   LIGHTBOX OVERLAY
   ========================================================================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-overlay.active .lightbox-image {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 8px;
    transition: opacity 0.3s;
}

.lightbox-close:hover {
    opacity: 0.7;
}


/* Rooms Grid Layout */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}
@media (max-width: 992px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}
@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}


/* Experience Cards */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(40px, 4vw, 60px);
    max-width: 1300px;
    margin: 0 auto;
}

.experience-card {
    background: #FFFFFF;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.experience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.exp-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1; /* Perfect square */
    width: 100%;
}

.exp-image-wrapper .placeholder-image,
.exp-image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.exp-wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg"><path fill="%23FFFFFF" d="M0,0 C18.2,0 31.8,100 50,100 C68.2,100 81.8,0 100,0 L100,100 L0,100 Z"></path></svg>');
    background-size: calc(100% / 6) 100%;
    background-repeat: repeat-x;
    background-position: bottom;
    z-index: 10;
}

.exp-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.exp-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
    min-height: 2.2em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.exp-tagline {
    font-size: 16px;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.exp-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.exp-highlights {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 90%;
    line-height: 1.6;
}

.exp-duration {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 40px;
}

.exp-btn {
    margin-top: auto;
    padding: 16px 40px;
}

@media (max-width: 768px) {
    .experiences-grid {
        grid-template-columns: 1fr;
    }
}


/* Experiences Preview - Home Page */
.experiences-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.gold-text {
    color: var(--accent-secondary);
}

.experiences-header-right .btn-outline {
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.experiences-header-right .btn-outline:hover {
    background: var(--accent);
    color: #fff;
}

.exp-preview-grid {
    display: flex;
    gap: 24px;
    height: 600px;
}

.exp-preview-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    height: 100%;
}

.exp-preview-card.featured {
    flex: 0 0 60%;
}

.exp-preview-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.exp-preview-stack .exp-preview-card {
    flex: 1;
}

.exp-preview-card .placeholder-image,
.exp-preview-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.exp-preview-card:hover .placeholder-image,
.exp-preview-card:hover img {
    transform: scale(1.02);
}

.exp-preview-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 2;
    pointer-events: none;
}

.exp-preview-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.exp-preview-title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 400;
    margin: 0;
    font-family: var(--font-primary);
}

.btn-glass-pill {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.exp-preview-card:hover .btn-glass-pill {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .experiences-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .exp-preview-grid {
        flex-direction: column;
        height: auto;
    }
    
    .exp-preview-card.featured {
        height: 450px;
        flex: none;
    }
    
    .exp-preview-stack {
        gap: 24px;
    }
    
    .exp-preview-stack .exp-preview-card {
        height: 350px;
        flex: none;
    }
}
@media (max-width: 576px) {
    .exp-preview-content {
        bottom: 24px;
        left: 24px;
    }
}


/* Gallery Collage Preview */
.gallery-collage-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.gallery-collage-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1.2fr;
    grid-template-rows: 350px 250px;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.gallery-img-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.gallery-img-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.gallery-img-3 {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

.gallery-img-4 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.gallery-item img,
.gallery-item .placeholder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:hover .placeholder-image {
    transform: scale(1.02);
}

.gallery-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

@media (max-width: 992px) {
    .gallery-collage-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .gallery-collage-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }
    
    .gallery-img-1,
    .gallery-img-2,
    .gallery-img-3,
    .gallery-img-4 {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 350px;
    }
    
    /* Make first one taller as feature */
    .gallery-img-1 {
        height: 450px;
    }
}


/* About Page Mobile Polish */
@media (max-width: 576px) {
    .about-mobile-pad {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}

/* New Hero CSS */
.hero-gradient {
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%) !important;
}

@media (max-width: 992px) {
    .hero-content-wrapper {
        display: flex;
        align-items: flex-end;
        height: 100%;
        padding-bottom: 16vh;
        padding-bottom: 16dvh;
    }
    .hero-gradient {
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0) 100%) !important;
    }
    .hero-text-content {
        margin-top: auto;
    }
    .hero-subheading {
        margin-bottom: 20px !important;
    }
    .hero-actions-editorial {
        flex-direction: column;
        width: 100%;
        gap: 12px !important;
    }
    .hero-actions-editorial .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Rooms Page Redesign CSS */
.rooms-grid {
    display: grid;
    gap: 40px;
}

@media (min-width: 993px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 992px) {
    .rooms-grid {
        grid-template-columns: 1fr !important;
    }
}

.hotel-room-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.room-media-carousel {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    background-color: #E8E5DF; /* Wabi Sabi neutral */
}

.room-media-carousel .carousel-track {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0 !important;
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
    overflow: visible !important; /* CRITICAL FIX */
    transition: transform 0.5s ease;
}

.room-media-carousel .carousel-slide {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
}

.room-media-carousel .carousel-slide img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.room-media-carousel .carousel-slide video {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    background: #000;
}

.room-media-carousel .carousel-slide img {
    object-fit: cover;
    object-position: center;
}

.empty-media-placeholder {
    width: 100%;
    height: 100%;
    background-color: transparent; /* inherited from carousel */
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    z-index: 10;
}
.carousel-btn:hover {
    background: rgba(255,255,255,1);
}
.carousel-btn.prev-btn { left: 16px; }
.carousel-btn.next-btn { right: 16px; }

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(255,255,255,0.4);
}

.carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}
.carousel-dots .dot.active {
    background: rgba(255,255,255,1);
}

.hotel-room-card .card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hotel-room-card .card-title {
    font-size: 28px;
    margin-bottom: 12px;
}

.hotel-room-card .card-desc {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 16px;
}

.hotel-room-card .room-amenities {
    margin-bottom: 32px;
    list-style: none;
    padding: 0;
    color: var(--text-secondary);
    font-size: 14px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.hotel-room-card .room-amenities li {
    position: relative;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hotel-room-card .room-amenities li svg {
    flex-shrink: 0;
    color: var(--accent);
}

.hotel-room-card .card-footer {
    margin-top: auto;
}

/* --- Video Play Button Custom UI --- */
.custom-play-btn-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 20;
    pointer-events: none; /* Let clicks pass to the button inside */
    transition: opacity 0.3s ease;
    opacity: 1;
}

.custom-play-btn {
    width: 90px;
    height: 90px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    pointer-events: auto; /* Re-enable clicks for the button */
}

.custom-play-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.05);
}

.custom-play-btn svg {
    width: 36px;
    height: 36px;
    fill: #ffffff;
}

.custom-play-btn svg.icon-play {
    margin-left: 6px; /* Visual center adjustment for play triangle */
}

.custom-play-btn svg.icon-pause {
    margin-left: 0;
}

.video-playing .custom-play-btn-wrapper {
    opacity: 0;
}

.room-media-carousel .carousel-slide:hover .custom-play-btn-wrapper {
    opacity: 1;
}

/* Hide native iOS/WebKit large play overlay */
video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

/* --- Mobile Price Alignment Fix --- */
@media (max-width: 768px) {
    .custom-play-btn {
        width: 72px;
        height: 72px;
    }
    
    .custom-play-btn svg {
        width: 32px;
        height: 32px;
    }
    
    .custom-play-btn svg.icon-play {
        margin-left: 4px;
    }

    .hotel-room-card .card-footer {
        display: flex;
        align-items: center;
        justify-content: flex-end; /* Move elements rightward to balance with button */
        gap: 16px;
    }
    
    .hotel-room-card .price {
        /* Nudge the price slightly closer to the button */
        margin-right: 4px;
    }
}
/* --- Custom Fullscreen Trigger (Top Right of Carousel) --- */
.custom-fs-trigger {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.custom-fs-trigger:hover {
    transform: scale(1.1);
    background-color: #ffffff;
}

.custom-fs-trigger svg {
    width: 20px;
    height: 20px;
    fill: #1a1a1a;
}

/* --- Custom Fullscreen Overlay --- */
#custom-video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

#custom-video-overlay video {
    width: 90%;
    height: 90%;
    max-width: 1200px;
    object-fit: contain !important;
    background: transparent;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.video-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 32px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    color: #1a1a1a;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    padding-bottom: 4px; /* Optical adjustment for × */
}

.video-close-btn:hover {
    transform: scale(1.1);
    background-color: #ffffff;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background-color: #000;
}

/* Hide native fullscreen button */
video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}

/* --- Booking Choice Modal --- */
.booking-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(28, 35, 23, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.booking-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.booking-modal {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 32px;
    width: 90%;
    max-width: 380px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    text-align: center;
}
.booking-modal-overlay.active .booking-modal {
    transform: translateY(0) scale(1);
}
.booking-modal-close {
    position: absolute;
    top: 16px; right: 16px;
    width: 32px; height: 32px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--accent);
    transition: background 0.2s ease, transform 0.2s ease;
}
.booking-modal-close:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}
.booking-modal-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
    margin-top: 8px;
}
.booking-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.booking-option-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    color: var(--accent);
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.booking-option-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.booking-option-btn svg {
    width: 22px; height: 22px;
    fill: currentColor;
}

/* --- Contact Page Enhancements --- */
.contact-glass-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 30px;
    color: var(--accent);
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    flex: 1 1 auto;
}
.contact-glass-btn:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
.contact-glass-btn svg {
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .contact-mobile-center {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: calc(100vh - 140px); /* Fill remaining space without hiding behind nav */
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    .contact-action-btns {
        flex-direction: column;
    }
    .contact-glass-btn {
        width: 100%;
    }

    /* --- Contact Mobile Layout Fixes --- */
    .contact-mobile-center {
        padding-left: 5vw !important;
        padding-right: 5vw !important;
        align-items: center;
    }
    .contact-mobile-center .container.two-col {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 480px; /* Constrain for a premium look */
        margin: 0 auto;
        padding: 0 !important;
        gap: 32px !important;
    }
    .contact-mobile-center .contact-info,
    .contact-mobile-center .map-wrapper {
        width: 100%;
        margin: 0 auto;
    }
    .contact-card-glass {
        width: 100%;
        box-sizing: border-box;
    }
}

/* --- Performance Optimizations --- */
.section-padding:not(:first-of-type) {
    content-visibility: auto;
    contain-intrinsic-size: 500px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}


/* --- Mobile Contact Layout Fix --- */
@media (max-width: 768px) {
    .contact-mobile-center .two-col,
    .contact-section .container {
        display: flex;
        flex-direction: column;
        width: 100% !important;
        padding: 0 5vw !important;
        margin: 0 !important;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    .contact-mobile-center .contact-info,
    .contact-section .contact-info {
        width: 100%;
        margin: 0 0 40px 0 !important;
        padding: 0;
        transform: none !important; 
    }
    .contact-card-glass {
        width: 100%;
        box-sizing: border-box;
        margin: 0 !important;
        padding: 24px !important;
    }
    .contact-action-btns {
        display: flex;
        flex-direction: column;
        gap: 16px !important;
        width: 100%;
    }
    .contact-action-btns .btn,
    .contact-action-btns a {
        width: 100%;
        justify-content: center;
        text-align: center;
        display: flex;
        padding: 14px 20px !important;
        box-sizing: border-box;
    }
    .map-wrapper {
        width: 100%;
        margin: 0 !important;
    }
}


/* --- Mobile Hero Layout Fix --- */
@media (max-width: 768px) {
    .hero-content-wrapper {
        padding-top: 60px !important;
        align-items: center !important;
        justify-content: center !important;
        display: flex;
        text-align: center;
    }
    .hero-text-content {
        margin: 0 auto !important;
        padding: 0 5vw !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-actions-editorial {
        justify-content: center;
        width: 100%;
    }
    #hero-book-btn {
        width: 100%;
        text-align: center;
        /* Glassmorphism guaranteed */
        background-color: rgba(255, 255, 255, 0.15) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
    }
}


/* --- NEW HERO & NAVBAR STYLES --- */
.nav-mascot {
    height: 40px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}
.nav-brand-text {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--text-primary);
}
.glass-nav {
    padding: 16px 5vw;
}

.hero-text-content {
    max-width: 700px;
    text-align: left;
    margin: 0;
    padding: 0;
}
.hero-heading {
    color: #ffffff; 
    font-size: clamp(48px, 6vw, 76px); 
    line-height: 1.1; 
    margin-bottom: 16px; 
    font-weight: 500;
}
.hero-subheading {
    color: rgba(255,255,255,0.95); 
    font-size: clamp(20px, 2.5vw, 28px); 
    margin-bottom: 40px; 
    font-weight: 300;
}
.hero-timing {
    color: rgba(255,255,255,0.9); 
    font-size: 15px; 
    margin-bottom: 32px; 
    font-weight: 400; 
    letter-spacing: 1px;
}
.hero-actions-editorial {
    display: flex; 
    gap: 16px; 
    flex-wrap: wrap;
}
#hero-book-btn {
    background-color: rgba(255,255,255,0.1); 
    backdrop-filter: blur(8px); 
    border: 1px solid rgba(255,255,255,0.4); 
    color: #ffffff; 
    font-weight: 500; 
    padding: 14px 36px; 
    transition: all 0.3s ease;
}
.mobile-break {
    display: none;
}


/* --- OVERRIDE PREVIOUS MOBILE HERO FIXES --- */
@media (max-width: 768px) {
    /* Navbar constraints */
    .nav-container {
        padding: 0 16px !important;
        max-width: 94% !important;
    }
    .nav-mascot {
        width: 32px !important;
        height: 32px !important;
        object-fit: contain !important;
        border-radius: 4px !important;
    }
    .nav-brand-text {
        font-size: 16px !important;
        white-space: nowrap !important;
    }
    .logo {
        gap: 6px !important;
        align-items: center !important;
    }
    
    /* Hero layout strictly filling one viewport */
    .hero-editorial {
        min-height: 100svh !important;
        height: 100svh !important;
        padding-top: 80px !important;
        padding-bottom: 40px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    .hero-bg-image img {
        object-position: center 20% !important;
    }
    
    /* Bring back left alignment and center vertically */
    .hero-content-wrapper {
        padding-top: 0 !important;
        align-items: flex-start !important;
        justify-content: center !important;
        text-align: left !important;
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
    }
    .hero-text-content {
        margin: 0 !important;
        padding: 0 5vw !important;
        align-items: flex-start !important;
        text-align: left !important;
    }
    
    /* Typography Spacing - Tighter for better grouping */
    .eyebrow-text {
        margin-bottom: 12px !important;
    }
    .hero-heading {
        font-size: clamp(48px, 12vw, 52px) !important;
        line-height: 1.0 !important;
        margin-bottom: 16px !important;
    }
    .hero-subheading {
        font-size: 17px !important;
        line-height: 1.4 !important;
        margin-bottom: 20px !important;
    }
    .hero-timing {
        font-size: 15px !important;
        line-height: 1.5 !important;
        margin-bottom: 24px !important;
    }
    .mobile-break {
        display: block !important;
    }
    
    /* CTA */
    .hero-actions-editorial {
        justify-content: flex-start !important;
        width: 100%;
        margin-top: 80px !important;
    }
    #hero-book-btn {
        background-color: rgba(245, 245, 240, 0.7) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        border: 1px solid rgba(255, 255, 255, 0.8) !important;
        color: #111111 !important;
        height: 54px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 100px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        box-shadow: 0 4px 16px rgba(0,0,0,0.1) !important;
        width: 100% !important;
    }
}


/* --- Compact Room Cards (Line Clamping) --- */
.room-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}
.room-description.expanded {
    display: block !important;
    -webkit-line-clamp: unset !important;
    overflow: visible !important;
}
.read-more-btn {
    background-color: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    margin-bottom: 24px;
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.read-more-btn:hover {
    background-color: rgba(0, 0, 0, 0.08);
    text-decoration: none;
}


/* --- Fix: Uniform Explore Experience Buttons --- */
.btn-glass-pill {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 200px !important;
    height: 44px !important;
    padding: 0 !important;
    text-align: center !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
}


/* --- Fix: Room Card Typography Contrast & Weight --- */
.room-description {
    font-weight: 500 !important;
    color: #2a2a2a !important;
}

.read-more-btn {
    font-weight: 600 !important;
    color: #111 !important;
}

.room-amenities li {
    font-weight: 500 !important;
    color: #111 !important;
}

.room-amenities li svg {
    stroke-width: 2.2 !important; /* Make icons slightly bolder */
}

.card-footer .price {
    font-weight: 700 !important;
    color: #000 !important;
}

.card-footer .btn {
    font-weight: 600 !important;
    letter-spacing: 0.2px !important;
}


/* --- Fix: Desktop Navbar Layout --- */
.nav-brand-text {
    white-space: nowrap !important;
}

.nav-btn, .nav-right .btn, .nav-right .desktop-only {
    white-space: nowrap !important;
}

@media (min-width: 900px) {
    .glass-nav {
        width: min(1200px, calc(100vw - 48px)) !important;
        padding: 0 32px !important;
    }
    .nav-container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        grid-template-columns: none !important; /* Override the old grid */
    }
    .logo {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        display: flex !important;
        align-items: center !important;
    }
    .nav-links {
        display: flex !important;
        align-items: center !important;
        gap: clamp(16px, 2vw, 32px) !important; 
        white-space: nowrap !important;
        margin: 0 auto !important; /* Center it if there's extra space */
        padding: 0 !important;
    }
    .nav-links li, .nav-links a {
        white-space: nowrap !important;
    }
    .nav-right {
        flex-shrink: 0 !important;
        white-space: nowrap !important;
        display: flex !important;
        align-items: center !important;
    }
}


/* --- Fix: Contact Page Get In Touch Heading --- */
.interior-hero .hero-heading {
    color: #111111 !important;
    font-weight: 800 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    text-fill-color: initial !important;
    text-shadow: none !important;
    mix-blend-mode: normal !important;
}

.interior-hero .hero-heading::selection {
    background: rgba(0, 0, 0, 0.2) !important;
    color: #111111 !important;
    -webkit-text-fill-color: #111111 !important;
}


/* --- Global Contrast Fix for Headings --- */

/* 1. Interior Page Heroes (Contact, Rooms, Experiences, Blogs, About) */
.interior-hero .hero-heading {
    color: #111111 !important;
    font-weight: 800 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    text-fill-color: initial !important;
    text-shadow: none !important;
}

.interior-hero .hero-subheading {
    color: #4a4a4a !important;
    font-weight: 500 !important;
}

/* 2. Standard Section Titles (Our Rooms, About, Explore Assam) */
h2.section-title,
.section-title,
.faq-section .section-title {
    color: #111111 !important;
    font-weight: 800 !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    text-fill-color: initial !important;
    text-shadow: none !important;
}

/* 3. Standard Section Subtitles */
.section-header p,
.experiences-header-left p,
.contact-info .body-text {
    color: #4a4a4a !important;
    font-weight: 400 !important;
}

/* 4. EXEMPTIONS: Do not break dark sections (Homepage Hero, dark editorial sections) */
.hero-editorial:not(.interior-hero) .hero-heading,
.bg-dark-editorial .section-title,
.bg-dark-editorial h2,
.hero-text-content .hero-title,
.hero-text-content h1 {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    font-weight: 700 !important;
}

.hero-editorial:not(.interior-hero) .hero-subheading,
.bg-dark-editorial .body-text,
.hero-text-content .body-text,
.hero-text-content p {
    color: rgba(255, 255, 255, 0.9) !important;
}
