:root {
            --color-cream: #F5F0E8;
            --color-dark: #1A1814;
            --color-olive: #4A5D3A;
            --color-olive-light: #6B8055;
            --color-gold: #C5943A;
            --color-gold-light: #D4AD5E;
            --color-warm: #8B6E4E;
            --color-terracotta: #B8714D;
            --color-white: #FEFCF9;
            --color-gray: #9A958C;
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Outfit', system-ui, sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: var(--font-body);
            background: var(--color-cream);
            color: var(--color-dark);
            overflow-x: hidden;
        }

        /* ═══════════════════════════════════════════ */
        /* NAVIGATION */
        /* ═══════════════════════════════════════════ */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.2rem 3rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.5s ease;
        }

        .nav.scrolled {
            background: rgba(26, 24, 20, 0.92);
            backdrop-filter: blur(20px);
            padding: 0.8rem 3rem;
        }

        .nav-logo {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--color-white);
            text-decoration: none;
            letter-spacing: 0.02em;
        }

        .nav-logo span {
            color: var(--color-gold);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--color-white);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 400;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            position: relative;
            transition: color 0.3s;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--color-gold);
            transition: width 0.4s ease;
        }

        .nav-links a:hover::after { width: 100%; }
        .nav-links a:hover { color: var(--color-gold-light); }

        .nav-cta {
            background: var(--color-gold);
            color: var(--color-dark) !important;
            padding: 0.6rem 1.6rem;
            border-radius: 0;
            font-weight: 500;
            letter-spacing: 0.1em;
            transition: all 0.3s ease !important;
        }

        .nav-cta:hover {
            background: var(--color-gold-light) !important;
        }

        .nav-cta::after { display: none !important; }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .hamburger span {
            width: 28px;
            height: 2px;
            background: var(--color-white);
            transition: all 0.3s;
        }

        /* ═══════════════════════════════════════════ */
        /* HERO */
        /* ═══════════════════════════════════════════ */
        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: flex-end;
            justify-content: flex-start;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: url('img/Portada.jpg') center/cover no-repeat;
            transform: scale(1.05);
            animation: heroZoom 20s ease-in-out infinite alternate;
        }

        @keyframes heroZoom {
            from { transform: scale(1.05); }
            to { transform: scale(1.15); }
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to top,
                rgba(26, 24, 20, 0.85) 0%,
                rgba(26, 24, 20, 0.4) 40%,
                rgba(26, 24, 20, 0.2) 70%,
                rgba(26, 24, 20, 0.15) 100%
            );
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 0 6vw 8vh;
            max-width: 900px;
        }

        .hero-tag {
            font-family: var(--font-body);
            font-size: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--color-gold);
            margin-bottom: 1.2rem;
            opacity: 0;
            animation: fadeUp 1s 0.3s ease forwards;
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(3rem, 6vw, 5.5rem);
            font-weight: 300;
            color: var(--color-white);
            line-height: 1.05;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeUp 1s 0.5s ease forwards;
        }

        .hero-title em {
            font-style: italic;
            color: var(--color-gold-light);
        }

        .hero-subtitle {
            font-size: 1.05rem;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.75);
            max-width: 550px;
            line-height: 1.7;
            opacity: 0;
            animation: fadeUp 1s 0.7s ease forwards;
        }

        .hero-btn {
            display: inline-block;
            margin-top: 2rem;
            padding: 1rem 2.8rem;
            background: var(--color-gold);
            color: var(--color-dark);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            transition: all 0.4s ease;
            opacity: 0;
            animation: fadeUp 1s 0.9s ease forwards;
        }

        .hero-btn:hover {
            background: var(--color-white);
            transform: translateY(-2px);
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-scroll {
            position: absolute;
            bottom: 2.5rem;
            right: 6vw;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
            color: var(--color-white);
            font-size: 0.65rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            opacity: 0;
            animation: fadeUp 1s 1.2s ease forwards;
        }

        .hero-scroll .line {
            width: 1px;
            height: 50px;
            background: var(--color-gold);
            animation: scrollPulse 2s ease-in-out infinite;
        }

        @keyframes scrollPulse {
            0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
            50% { opacity: 1; transform: scaleY(1); }
        }

        /* ═══════════════════════════════════════════ */
        /* SECTIONS COMMON */
        /* ═══════════════════════════════════════════ */
        .section {
            padding: 8rem 6vw;
        }

        .section-tag {
            font-size: 0.7rem;
            font-weight: 500;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--color-gold);
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(2.2rem, 4vw, 3.5rem);
            font-weight: 300;
            line-height: 1.15;
            margin-bottom: 1.5rem;
            color: var(--color-dark);
        }

        .section-title em {
            font-style: italic;
            color: var(--color-olive);
        }

        .section-desc {
            font-size: 1rem;
            font-weight: 300;
            line-height: 1.8;
            color: var(--color-gray);
            max-width: 600px;
        }

        /* ═══════════════════════════════════════════ */
        /* ABOUT */
        /* ═══════════════════════════════════════════ */
        .about {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-images {
            position: relative;
            height: 550px;
        }

        .about-img {
            position: absolute;
            border-radius: 0;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }

        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .about-img:hover img {
            transform: scale(1.05);
        }

        .about-img-1 {
            width: 65%;
            height: 70%;
            top: 0;
            left: 0;
        }

        .about-img-2 {
            width: 55%;
            height: 55%;
            bottom: 0;
            right: 0;
            border: 6px solid var(--color-cream);
        }

        .about-stats {
            display: flex;
            gap: 3rem;
            margin-top: 2.5rem;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-family: var(--font-display);
            font-size: 2.8rem;
            font-weight: 300;
            color: var(--color-gold);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.75rem;
            font-weight: 400;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--color-gray);
            margin-top: 0.3rem;
        }

        /* ═══════════════════════════════════════════ */
        /* ROOMS */
        /* ═══════════════════════════════════════════ */
        .rooms {
            background: var(--color-dark);
            color: var(--color-white);
        }

        .rooms .section-title {
            color: var(--color-white);
        }

        .rooms .section-title em {
            color: var(--color-gold-light);
        }

        .rooms .section-desc {
            color: rgba(255, 255, 255, 0.55);
        }

        .rooms-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 4rem;
        }

        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .room-card {
            position: relative;
            overflow: hidden;
            aspect-ratio: 3/4;
            cursor: pointer;
            group: true;
        }

        .room-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .room-card:hover img {
            transform: scale(1.08);
        }

        .room-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(26,24,20,0.9) 0%, transparent 60%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2rem;
            transition: all 0.4s ease;
        }

        .room-card:hover .room-card-overlay {
            background: linear-gradient(to top, rgba(26,24,20,0.95) 0%, rgba(26,24,20,0.1) 70%);
        }

        .room-name {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 400;
            margin-bottom: 0.5rem;
        }

        .room-detail {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.6);
            font-weight: 300;
        }

        .room-features {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.4s ease 0.1s;
        }

        .room-card:hover .room-features {
            opacity: 1;
            transform: translateY(0);
        }

        .room-feature {
            font-size: 0.7rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--color-gold);
            padding: 0.35rem 0.7rem;
            border: 1px solid rgba(197, 148, 58, 0.3);
        }

        /* ═══════════════════════════════════════════ */
        /* EXPERIENCE */
        /* ═══════════════════════════════════════════ */
        .experience-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 2rem;
            margin-top: 4rem;
        }

        .exp-card {
            position: relative;
            overflow: hidden;
            min-height: 400px;
        }

        .exp-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
            transition: transform 0.7s ease;
        }

        .exp-card:hover img {
            transform: scale(1.06);
        }

        .exp-card-content {
            position: relative;
            z-index: 2;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 2.5rem;
            background: linear-gradient(to top, rgba(26,24,20,0.85) 0%, transparent 60%);
        }

        .exp-card-tag {
            font-size: 0.65rem;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--color-gold);
            margin-bottom: 0.5rem;
        }

        .exp-card-title {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 400;
            color: var(--color-white);
            margin-bottom: 0.6rem;
        }

        .exp-card-desc {
            font-size: 0.88rem;
            font-weight: 300;
            color: rgba(255,255,255,0.65);
            line-height: 1.6;
        }

        .exp-right {
            display: grid;
            grid-template-rows: 1fr 1fr;
            gap: 2rem;
        }

        /* ═══════════════════════════════════════════ */
        /* ATTRACTIONS */
        /* ═══════════════════════════════════════════ */
        .attractions {
            background: var(--color-olive);
            color: var(--color-white);
            text-align: center;
        }

        .attractions .section-title {
            color: var(--color-white);
        }

        .attractions .section-title em {
            color: var(--color-gold-light);
        }

        .attractions .section-desc {
            color: rgba(255,255,255,0.6);
            margin: 0 auto 4rem;
        }

        .attr-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .attr-card {
            padding: 2.5rem 1.5rem;
            border: 1px solid rgba(255,255,255,0.12);
            transition: all 0.4s ease;
            text-align: center;
        }

        .attr-card:hover {
            background: rgba(255,255,255,0.05);
            border-color: var(--color-gold);
            transform: translateY(-5px);
        }

        .attr-icon {
            font-size: 2.2rem;
            margin-bottom: 1.2rem;
        }

        .attr-name {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 0.6rem;
        }

        .attr-dist {
            font-size: 0.78rem;
            color: var(--color-gold-light);
            font-weight: 400;
            margin-bottom: 0.8rem;
        }

        .attr-text {
            font-size: 0.82rem;
            font-weight: 300;
            line-height: 1.6;
            color: rgba(255,255,255,0.55);
        }

        /* ═══════════════════════════════════════════ */
        /* GALLERY STRIP */
        /* ═══════════════════════════════════════════ */
        .gallery-strip {
            display: flex;
            height: 350px;
            overflow: hidden;
        }

        .gallery-strip img {
            flex: 1;
            min-width: 0;
            object-fit: cover;
            transition: flex 0.6s ease;
            filter: brightness(0.85);
        }

        .gallery-strip img:hover {
            flex: 2;
            filter: brightness(1);
        }

        /* ═══════════════════════════════════════════ */
        /* CONTACT / CTA */
        /* ═══════════════════════════════════════════ */
        .cta-section {
            background: var(--color-dark);
            padding: 8rem 6vw;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .cta-section .section-title {
            color: var(--color-white);
        }

        .cta-section .section-title em {
            color: var(--color-gold-light);
        }

        .cta-section .section-desc {
            color: rgba(255,255,255,0.55);
        }

        .contact-info {
            margin-top: 2.5rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .contact-icon {
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(197, 148, 58, 0.3);
            color: var(--color-gold);
            font-size: 1rem;
            flex-shrink: 0;
        }

        .contact-label {
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--color-gold);
            margin-bottom: 0.2rem;
        }

        .contact-value {
            font-size: 0.95rem;
            font-weight: 300;
            color: rgba(255,255,255,0.75);
        }

        .contact-value a {
            color: rgba(255,255,255,0.75);
            text-decoration: none;
            transition: color 0.3s;
        }

        .contact-value a:hover {
            color: var(--color-gold-light);
        }

        .cta-form {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            padding: 3rem;
        }

        .cta-form h3 {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 400;
            color: var(--color-white);
            margin-bottom: 2rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .form-group.full {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-size: 0.7rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--color-gold);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--color-white);
            padding: 0.85rem 1rem;
            font-family: var(--font-body);
            font-size: 0.88rem;
            font-weight: 300;
            outline: none;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--color-gold);
        }

        .form-group textarea {
            resize: none;
            height: 100px;
        }

        .form-group select option {
            background: var(--color-dark);
        }

        .form-submit {
            width: 100%;
            margin-top: 1.5rem;
            padding: 1rem;
            background: var(--color-gold);
            color: var(--color-dark);
            border: none;
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .form-submit:hover {
            background: var(--color-gold-light);
            transform: translateY(-2px);
        }

        /* ═══════════════════════════════════════════ */
        /* FOOTER */
        /* ═══════════════════════════════════════════ */
        .footer {
            background: #12110E;
            padding: 4rem 6vw 2rem;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            padding-bottom: 3rem;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .footer-brand p {
            font-size: 0.88rem;
            font-weight: 300;
            line-height: 1.7;
            color: rgba(255,255,255,0.45);
            max-width: 350px;
            margin-top: 1rem;
        }

        .footer-col h4 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--color-white);
            margin-bottom: 1.2rem;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }

        .footer-col a {
            font-size: 0.82rem;
            font-weight: 300;
            color: rgba(255,255,255,0.45);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-col a:hover {
            color: var(--color-gold);
        }

        .footer-bottom {
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copy {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.3);
        }

        .footer-socials {
            display: flex;
            gap: 1rem;
        }

        .footer-socials a {
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.45);
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.3s;
        }

        .footer-socials a:hover {
            border-color: var(--color-gold);
            color: var(--color-gold);
        }

        /* ═══════════════════════════════════════════ */
        /* REVEAL ANIMATION */
        /* ═══════════════════════════════════════════ */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ═══════════════════════════════════════════ */
        /* MOBILE MENU */
        /* ═══════════════════════════════════════════ */
        .mobile-menu {
            position: fixed;
            inset: 0;
            z-index: 999;
            background: rgba(26, 24, 20, 0.97);
            backdrop-filter: blur(30px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            transform: translateX(100%);
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .mobile-menu.open {
            transform: translateX(0);
        }

        .mobile-menu a {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 400;
            color: var(--color-white);
            text-decoration: none;
            transition: color 0.3s;
        }

        .mobile-menu a:hover {
            color: var(--color-gold);
        }

        .mobile-close {
            position: absolute;
            top: 1.5rem;
            right: 2rem;
            background: none;
            border: none;
            color: var(--color-white);
            font-size: 2rem;
            cursor: pointer;
        }

        /* ═══════════════════════════════════════════ */
        /* WHATSAPP FLOAT */
        /* ═══════════════════════════════════════════ */
        .whatsapp-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 900;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.08);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
        }

        .whatsapp-float svg {
            width: 30px;
            height: 30px;
            fill: white;
        }

        /* ═══════════════════════════════════════════ */
        /* RESPONSIVE */
        /* ═══════════════════════════════════════════ */
        @media (max-width: 1024px) {
            .about { grid-template-columns: 1fr; gap: 3rem; }
            .about-images { height: 400px; }
            .rooms-grid { grid-template-columns: repeat(2, 1fr); }
            .experience-grid { grid-template-columns: 1fr; }
            .attr-grid { grid-template-columns: repeat(2, 1fr); }
            .cta-section { grid-template-columns: 1fr; }
            .footer-top { grid-template-columns: 1fr 1fr; }
        }

        @media (max-width: 768px) {
            .nav { padding: 1rem 1.5rem; }
            .nav.scrolled { padding: 0.8rem 1.5rem; }
            .nav-links { display: none; }
            .hamburger { display: flex; }
            .section { padding: 5rem 5vw; }
            .hero-content { padding: 0 5vw 6vh; }
            .rooms-grid { grid-template-columns: 1fr; }
            .rooms-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
            .attr-grid { grid-template-columns: 1fr; }
            .gallery-strip { height: 200px; }
            .gallery-strip img:hover { flex: 3; }
            .form-row { grid-template-columns: 1fr; }
            .footer-top { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
            .about-stats { gap: 2rem; }
            .hero-scroll { display: none; }
            .custom-cursor, .cursor-follower { display: none !important; }
            .scroll-progress { height: 3px !important; }
        }

        /* ═══════════════════════════════════════════ */
        /* MODERN EFFECTS */
        /* ═══════════════════════════════════════════ */

        /* --- Custom Cursor --- */
        .custom-cursor {
            width: 12px;
            height: 12px;
            border: 2px solid var(--color-gold);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.15s ease, opacity 0.3s ease;
            mix-blend-mode: difference;
        }

        .cursor-follower {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(197, 148, 58, 0.25);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9998;
            transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                        width 0.4s ease, height 0.4s ease,
                        opacity 0.3s ease;
        }

        .custom-cursor.hovering {
            transform: scale(2);
            background: rgba(197, 148, 58, 0.15);
        }

        .cursor-follower.hovering {
            width: 60px;
            height: 60px;
            border-color: rgba(197, 148, 58, 0.5);
        }

        /* --- Scroll Progress Bar --- */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-terracotta));
            z-index: 10001;
            transform-origin: left;
            transform: scaleX(0);
            transition: none;
        }

        /* --- Floating Particles --- */
        .particles-container {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: var(--color-gold);
            border-radius: 50%;
            opacity: 0;
            animation: floatParticle 12s ease-in-out infinite;
        }

        .particle:nth-child(2n) {
            width: 2px;
            height: 2px;
            animation-duration: 16s;
            background: var(--color-gold-light);
        }

        .particle:nth-child(3n) {
            width: 4px;
            height: 4px;
            animation-duration: 20s;
            background: rgba(197, 148, 58, 0.4);
        }

        @keyframes floatParticle {
            0% { opacity: 0; transform: translateY(100vh) rotate(0deg); }
            10% { opacity: 0.6; }
            90% { opacity: 0.6; }
            100% { opacity: 0; transform: translateY(-100px) rotate(720deg); }
        }

        /* --- Shimmer Text Effect (Hero Title) --- */
        .hero-title .shimmer {
            background: linear-gradient(
                120deg,
                var(--color-white) 0%,
                var(--color-gold-light) 25%,
                var(--color-white) 50%,
                var(--color-gold-light) 75%,
                var(--color-white) 100%
            );
            background-size: 200% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shimmerText 4s ease-in-out infinite;
        }

        @keyframes shimmerText {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }

        /* --- Stagger Reveal for Grid Children --- */
        .rooms-grid.visible .room-card,
        .attr-grid.visible .attr-card {
            opacity: 1;
            transform: translateY(0);
        }

        .rooms-grid .room-card,
        .attr-grid .attr-card {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .rooms-grid .room-card:nth-child(1),
        .attr-grid .attr-card:nth-child(1) { transition-delay: 0.1s; }
        .rooms-grid .room-card:nth-child(2),
        .attr-grid .attr-card:nth-child(2) { transition-delay: 0.25s; }
        .rooms-grid .room-card:nth-child(3),
        .attr-grid .attr-card:nth-child(3) { transition-delay: 0.4s; }
        .attr-grid .attr-card:nth-child(4) { transition-delay: 0.55s; }

        /* --- 3D Tilt Card Effect --- */
        .room-card {
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .room-card:hover {
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
        }

        .attr-card {
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            transform-style: preserve-3d;
        }

        .attr-card:hover {
            background: rgba(255,255,255,0.08);
            border-color: var(--color-gold);
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        /* --- Glassmorphism enhanced Nav --- */
        .nav.scrolled {
            background: rgba(26, 24, 20, 0.75);
            backdrop-filter: blur(25px) saturate(180%);
            -webkit-backdrop-filter: blur(25px) saturate(180%);
            border-bottom: 1px solid rgba(197, 148, 58, 0.08);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
        }

        /* --- Glassmorphism CTA Form --- */
        .cta-form {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        /* --- Enhanced Hero Button --- */
        .hero-btn {
            position: relative;
            overflow: hidden;
        }

        .hero-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .hero-btn:hover::before {
            left: 100%;
        }

        .hero-btn:hover {
            background: var(--color-white);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(197, 148, 58, 0.35);
        }

        /* --- Form Submit Button Glow --- */
        .form-submit {
            position: relative;
            overflow: hidden;
        }

        .form-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
            transition: left 0.5s ease;
        }

        .form-submit:hover::before {
            left: 100%;
        }

        .form-submit:hover {
            box-shadow: 0 10px 30px rgba(197, 148, 58, 0.3);
        }

        /* --- WhatsApp Pulse Glow --- */
        .whatsapp-float {
            animation: whatsappPulse 2.5s ease-in-out infinite;
        }

        @keyframes whatsappPulse {
            0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35); }
            50% { box-shadow: 0 8px 40px rgba(37, 211, 102, 0.55), 0 0 20px rgba(37, 211, 102, 0.2); }
        }

        /* --- Image Parallax Depth --- */
        .about-img {
            transition: transform 0.5s ease;
        }

        .about-img-1 {
            z-index: 2;
        }

        .about-img-2 {
            z-index: 3;
        }

        /* --- Gallery Strip Enhanced --- */
        .gallery-strip img {
            transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
        }

        .gallery-strip img:hover {
            filter: brightness(1.05) contrast(1.05);
        }

        /* --- Experience Card Enhanced Hover --- */
        .exp-card {
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

        .exp-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
        }

        .exp-card-content {
            transition: background 0.5s ease;
        }

        .exp-card:hover .exp-card-content {
            background: linear-gradient(to top, rgba(26,24,20,0.92) 0%, rgba(26,24,20,0.1) 70%);
        }

        /* --- Section Tag Animated Dash --- */
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
        }

        .section-tag::before {
            content: '';
            width: 30px;
            height: 1px;
            background: var(--color-gold);
            display: inline-block;
            transition: width 0.6s ease;
        }

        .reveal.visible .section-tag::before,
        .section-tag.visible::before {
            width: 50px;
        }

        /* --- Stat Number Count Animation --- */
        .stat-number {
            transition: color 0.3s ease;
        }

        .stat-item:hover .stat-number {
            color: var(--color-gold-light);
            text-shadow: 0 0 20px rgba(197, 148, 58, 0.3);
        }

        /* --- Contact Icon Hover --- */
        .contact-icon {
            transition: all 0.4s ease;
        }

        .contact-item:hover .contact-icon {
            border-color: var(--color-gold);
            background: rgba(197, 148, 58, 0.08);
            transform: scale(1.08);
        }

        /* --- Footer Social Enhanced --- */
        .footer-socials a {
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .footer-socials a:hover {
            border-color: var(--color-gold);
            color: var(--color-dark);
            background: var(--color-gold);
            transform: translateY(-3px);
        }

        /* --- Room Feature Tags Glow on Hover --- */
        .room-card:hover .room-feature {
            border-color: rgba(197, 148, 58, 0.6);
            background: rgba(197, 148, 58, 0.1);
        }

        /* --- Smooth Section Divider Line --- */
        .section::after {
            content: '';
            display: block;
            width: 60px;
            height: 1px;
            background: linear-gradient(90deg, var(--color-gold), transparent);
            margin-top: 4rem;
            opacity: 0.4;
        }

        .rooms::after,
        .attractions::after {
            background: linear-gradient(90deg, var(--color-gold-light), transparent);
        }

        .cta-section::after {
            display: none;
        }

        /* --- Hamburger Animation --- */
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* --- Mobile Menu Link Stagger --- */
        .mobile-menu a {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s;
        }

        .mobile-menu.open a {
            opacity: 1;
            transform: translateX(0);
        }

        .mobile-menu.open a:nth-child(2) { transition-delay: 0.08s; }
        .mobile-menu.open a:nth-child(3) { transition-delay: 0.16s; }
        .mobile-menu.open a:nth-child(4) { transition-delay: 0.24s; }
        .mobile-menu.open a:nth-child(5) { transition-delay: 0.32s; }
        .mobile-menu.open a:nth-child(6) { transition-delay: 0.40s; }
        .mobile-menu.open a:nth-child(7) { transition-delay: 0.48s; }

        /* --- Form Input Animated Underline --- */
        .form-group input,
        .form-group select,
        .form-group textarea {
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--color-gold);
            box-shadow: 0 0 0 3px rgba(197, 148, 58, 0.1);
        }

        /* ═══════════════════════════════════════════ */
        /* BOOKING SYSTEM */
        /* ═══════════════════════════════════════════ */
        .booking-steps {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin-bottom: 2.5rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.4rem;
            opacity: 0.35;
            transition: all 0.4s ease;
        }

        .step.active { opacity: 1; }
        .step.completed { opacity: 0.7; }

        .step-num {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 500;
            color: rgba(255,255,255,0.6);
            transition: all 0.4s ease;
        }

        .step.active .step-num {
            background: var(--color-gold);
            color: var(--color-dark);
            border-color: var(--color-gold);
        }

        .step.completed .step-num {
            background: rgba(197, 148, 58, 0.2);
            border-color: var(--color-gold);
            color: var(--color-gold);
        }

        .step-text {
            font-size: 0.65rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.5);
        }

        .step.active .step-text { color: var(--color-gold); }

        .step-line {
            width: 40px;
            height: 1px;
            background: rgba(255,255,255,0.1);
            margin: 0 0.8rem;
            margin-bottom: 1.2rem;
        }

        .booking-panel {
            animation: panelFadeIn 0.4s ease;
        }

        .booking-panel.hidden {
            display: none !important;
        }

        @keyframes panelFadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .booking-panel h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 400;
            color: var(--color-white);
            margin-bottom: 1.5rem;
        }

        .availability-msg {
            margin: 1rem 0;
            min-height: 24px;
        }

        .msg-success {
            color: #5ddb6e;
            font-size: 0.88rem;
            font-weight: 400;
        }

        .msg-error {
            color: #e85d5d;
            font-size: 0.88rem;
            font-weight: 400;
        }

        /* Room Selector Cards */
        .room-selector {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .room-select-card {
            display: flex;
            gap: 1.2rem;
            padding: 1rem;
            border: 1px solid rgba(255,255,255,0.08);
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.02);
        }

        .room-select-card:hover:not(.disabled) {
            border-color: rgba(197, 148, 58, 0.4);
            background: rgba(255,255,255,0.04);
        }

        .room-select-card.selected {
            border-color: var(--color-gold);
            background: rgba(197, 148, 58, 0.08);
            box-shadow: 0 0 0 1px var(--color-gold);
        }

        .room-select-card.disabled {
            opacity: 0.35;
            cursor: not-allowed;
        }

        .room-select-card img {
            width: 120px;
            height: 90px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .room-select-info {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .room-select-info h4 {
            font-family: var(--font-display);
            font-size: 1.15rem;
            font-weight: 400;
            color: var(--color-white);
        }

        .room-select-features {
            display: flex;
            flex-wrap: wrap;
            gap: 0.4rem;
        }

        .room-select-features span {
            font-size: 0.65rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: var(--color-gold);
            padding: 0.2rem 0.5rem;
            border: 1px solid rgba(197, 148, 58, 0.2);
        }

        .room-select-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.78rem;
            color: rgba(255,255,255,0.5);
        }

        .room-select-avail {
            color: #5ddb6e;
        }

        .room-select-avail.no-avail {
            color: #e85d5d;
        }

        .room-select-price {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-top: 0.3rem;
        }

        .price-per-night {
            font-family: var(--font-display);
            font-size: 1.2rem;
            color: var(--color-gold-light);
        }

        .price-per-night small {
            font-size: 0.7rem;
            color: rgba(255,255,255,0.4);
        }

        .price-total {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.55);
        }

        .price-total strong {
            color: var(--color-white);
        }

        /* Booking Navigation */
        .booking-nav {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .btn-back {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.15);
            color: rgba(255,255,255,0.6);
            padding: 0.85rem 1.5rem;
            font-family: var(--font-body);
            font-size: 0.8rem;
            font-weight: 400;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-back:hover {
            border-color: rgba(255,255,255,0.3);
            color: var(--color-white);
        }

        .booking-nav .form-submit {
            flex: 1;
        }

        .booking-nav .form-submit:disabled {
            opacity: 0.35;
            cursor: not-allowed;
        }

        .btn-confirm {
            background: #25D366 !important;
            color: white !important;
        }

        .btn-confirm:hover {
            background: #1fb855 !important;
        }

        /* Booking Summary */
        .booking-summary {
            margin-bottom: 1.5rem;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            padding: 0.7rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .summary-label {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .summary-value {
            font-size: 0.88rem;
            color: var(--color-white);
            font-weight: 400;
            text-align: right;
        }

        .summary-total {
            border-bottom: none;
            border-top: 2px solid var(--color-gold);
            margin-top: 0.5rem;
            padding-top: 1rem;
        }

        .summary-total .summary-label,
        .summary-total .summary-value {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--color-gold);
        }

        /* Booking Success */
        .booking-success {
            text-align: center;
            padding: 2rem 0;
        }

        .success-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: rgba(37, 211, 102, 0.15);
            color: #25D366;
            font-size: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            animation: successPop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes successPop {
            from { transform: scale(0); }
            to { transform: scale(1); }
        }

        .booking-success h3 {
            text-align: center;
        }

        .booking-success p {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.55);
            line-height: 1.6;
            max-width: 350px;
            margin: 0 auto;
        }

        /* Responsive booking */
        @media (max-width: 768px) {
            .room-select-card {
                flex-direction: column;
            }
            .room-select-card img {
                width: 100%;
                height: 140px;
            }
            .step-line { width: 20px; margin: 0 0.3rem; }
            .step-text { font-size: 0.55rem; }
            .booking-steps { gap: 0; }
        }

        /* ═══════════════════════════════════════════ */
        /* HERO SLIDESHOW                              */
        /* ═══════════════════════════════════════════ */
        .hero-slides {
            position: absolute;
            inset: 0;
        }

        .hero-slide {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.8s ease;
            animation: heroZoom 24s ease-in-out infinite alternate;
        }

        .hero-slide.active {
            opacity: 1;
        }

        /* Ghost button */
        .hero-actions {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeUp 1s 0.9s ease forwards;
        }

        .hero-btn-ghost {
            display: inline-block;
            padding: 1rem 2.8rem;
            border: 1px solid rgba(255, 255, 255, 0.45);
            color: var(--color-white);
            text-decoration: none;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            transition: all 0.4s ease;
        }

        .hero-btn-ghost:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--color-white);
        }

        /* Slide dots */
        .slide-dots {
            display: flex;
            gap: 0.6rem;
            margin-top: 2.5rem;
            opacity: 0;
            animation: fadeUp 1s 1.1s ease forwards;
        }

        .dot {
            width: 28px;
            height: 2px;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .dot.active {
            background: var(--color-gold);
            width: 48px;
        }

        /* ═══════════════════════════════════════════ */
        /* HERO QUICK BOOKING BAR                      */
        /* ═══════════════════════════════════════════ */
        .hero-booking-bar {
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            display: flex;
            align-items: center;
            background: rgba(20, 18, 14, 0.88);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-bottom: none;
            padding: 1.4rem 1.5rem;
            gap: 0;
            width: min(920px, 92vw);
            border-radius: 4px 4px 0 0;
            opacity: 0;
            animation: fadeUp 1s 1.3s ease forwards;
        }

        .hbb-field {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
            flex: 1;
            padding: 0 1.4rem;
        }

        .hbb-field label {
            font-size: 0.6rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--color-gold);
            font-weight: 500;
        }

        .hbb-field input,
        .hbb-field select {
            background: transparent;
            border: none;
            color: var(--color-white);
            font-family: var(--font-body);
            font-size: 0.88rem;
            font-weight: 300;
            outline: none;
            cursor: pointer;
            width: 100%;
        }

        .hbb-field select option {
            background: var(--color-dark);
        }

        .hbb-divider {
            width: 1px;
            height: 38px;
            background: rgba(255, 255, 255, 0.08);
            flex-shrink: 0;
        }

        .hbb-btn {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            background: var(--color-gold);
            color: var(--color-dark);
            border: none;
            padding: 1rem 1.6rem;
            font-family: var(--font-body);
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            margin-left: 1.2rem;
            flex-shrink: 0;
        }

        .hbb-btn:hover {
            background: var(--color-gold-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(197, 148, 58, 0.35);
        }

        /* ═══════════════════════════════════════════ */
        /* AMENITIES STRIP                             */
        /* ═══════════════════════════════════════════ */
        .amenities-strip {
            background: var(--color-white);
            padding: 2.2rem 5vw;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .amenity-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.7rem;
            padding: 0.8rem 1rem;
            transition: transform 0.3s ease;
        }

        .amenity-item:hover {
            transform: translateY(-3px);
        }

        .amenity-icon {
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-olive);
        }

        .amenity-icon svg {
            width: 26px;
            height: 26px;
        }

        .amenity-item span {
            font-size: 0.68rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--color-dark);
            text-align: center;
        }

        /* ═══════════════════════════════════════════ */
        /* ABOUT BADGE                                 */
        /* ═══════════════════════════════════════════ */
        .about-badge {
            position: absolute;
            bottom: 1.5rem;
            left: -1.5rem;
            background: var(--color-gold);
            color: var(--color-dark);
            padding: 1.4rem 1.8rem;
            text-align: center;
            z-index: 10;
            box-shadow: 0 15px 40px rgba(197, 148, 58, 0.35);
        }

        .badge-num {
            display: block;
            font-family: var(--font-display);
            font-size: 2.2rem;
            font-weight: 600;
            line-height: 1;
        }

        .badge-text {
            font-size: 0.62rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 500;
            line-height: 1.5;
            margin-top: 0.3rem;
            display: block;
        }

        /* ═══════════════════════════════════════════ */
        /* ROOM PRICE BADGE + RESERVE BTN              */
        /* ═══════════════════════════════════════════ */
        .room-price-badge {
            position: absolute;
            top: 1.2rem;
            right: 1.2rem;
            z-index: 5;
            background: rgba(20, 18, 14, 0.78);
            backdrop-filter: blur(10px);
            color: var(--color-white);
            padding: 0.45rem 0.9rem;
            font-size: 0.76rem;
            font-weight: 300;
            border: 1px solid rgba(197, 148, 58, 0.25);
        }

        .room-price-badge strong {
            color: var(--color-gold-light);
            font-weight: 600;
        }

        .room-price-badge small {
            font-size: 0.65rem;
            opacity: 0.7;
        }

        .room-reserve-btn {
            display: inline-block;
            margin-top: 1rem;
            padding: 0.55rem 1.4rem;
            background: var(--color-gold);
            color: var(--color-dark);
            text-decoration: none;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(8px);
            transition: all 0.35s ease 0.15s;
        }

        .room-card:hover .room-reserve-btn {
            opacity: 1;
            transform: translateY(0);
        }

        .room-reserve-btn:hover {
            background: var(--color-white);
        }

        /* ═══════════════════════════════════════════ */
        /* GALLERY STRIP (lightbox-enabled)            */
        /* ═══════════════════════════════════════════ */
        .gallery-strip {
            display: flex;
            height: 360px;
            overflow: hidden;
        }

        .gallery-item {
            flex: 1;
            min-width: 0;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: flex 0.65s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .gallery-item:hover {
            flex: 2.2;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.65s ease, filter 0.5s ease;
            filter: brightness(0.82);
        }

        .gallery-item:hover img {
            transform: scale(1.06);
            filter: brightness(1);
        }

        .gallery-hover {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(26, 24, 20, 0);
            transition: background 0.4s ease;
        }

        .gallery-item:hover .gallery-hover {
            background: rgba(26, 24, 20, 0.28);
        }

        .gallery-hover span {
            color: var(--color-white);
            font-size: 0.7rem;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            border: 1px solid rgba(255, 255, 255, 0.6);
            padding: 0.5rem 1.2rem;
            opacity: 0;
            transform: translateY(8px);
            transition: all 0.3s ease;
        }

        .gallery-item:hover .gallery-hover span {
            opacity: 1;
            transform: translateY(0);
        }

        /* ═══════════════════════════════════════════ */
        /* LIGHTBOX                                    */
        /* ═══════════════════════════════════════════ */
        .lightbox {
            position: fixed;
            inset: 0;
            z-index: 9500;
            background: rgba(8, 6, 4, 0.96);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 1rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
            cursor: zoom-out;
        }

        .lightbox.open {
            opacity: 1;
            pointer-events: all;
        }

        .lightbox-img {
            max-width: 90vw;
            max-height: 82vh;
            object-fit: contain;
            transform: scale(0.92);
            transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            cursor: default;
        }

        .lightbox.open .lightbox-img {
            transform: scale(1);
        }

        .lightbox-caption {
            color: rgba(255, 255, 255, 0.45);
            font-size: 0.78rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .lightbox-close {
            position: absolute;
            top: 1.8rem;
            right: 2rem;
            background: none;
            border: 1px solid rgba(255, 255, 255, 0.18);
            color: var(--color-white);
            width: 44px;
            height: 44px;
            font-size: 1.6rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            line-height: 1;
        }

        .lightbox-close:hover {
            border-color: var(--color-gold);
            color: var(--color-gold);
        }

        /* ═══════════════════════════════════════════ */
        /* TESTIMONIALS                                */
        /* ═══════════════════════════════════════════ */
        .testimonials {
            background: var(--color-cream);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 4rem;
        }

        .testimonial-card {
            background: var(--color-white);
            padding: 2.5rem;
            border-bottom: 3px solid transparent;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }

        .testimonial-card:hover {
            border-bottom-color: var(--color-gold);
            transform: translateY(-5px);
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
        }

        .testimonial-card.featured {
            border-bottom-color: var(--color-gold);
            box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
            position: relative;
            top: -1rem;
        }

        .stars {
            color: var(--color-gold);
            font-size: 1rem;
            letter-spacing: 0.1em;
            margin-bottom: 1.2rem;
        }

        .testimonial-text {
            font-family: var(--font-display);
            font-size: 1.02rem;
            font-weight: 300;
            font-style: italic;
            line-height: 1.75;
            color: var(--color-dark);
            margin-bottom: 1.8rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--color-olive);
            color: var(--color-white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.05em;
            flex-shrink: 0;
        }

        .testimonial-author strong {
            display: block;
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--color-dark);
        }

        .testimonial-author span {
            font-size: 0.75rem;
            color: var(--color-gray);
            font-weight: 300;
        }

        .testimonials-rating {
            display: flex;
            align-items: center;
            gap: 2.5rem;
            justify-content: center;
            margin-top: 4.5rem;
            padding-top: 3rem;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }

        .rating-score {
            font-family: var(--font-display);
            font-size: 5.5rem;
            font-weight: 300;
            color: var(--color-gold);
            line-height: 1;
        }

        .rating-stars {
            font-size: 1.3rem;
            color: var(--color-gold);
            margin-bottom: 0.4rem;
            letter-spacing: 0.1em;
        }

        .rating-count {
            font-size: 0.82rem;
            color: var(--color-gray);
            font-weight: 300;
            margin-bottom: 0.9rem;
        }

        .rating-sources {
            display: flex;
            gap: 0.7rem;
        }

        .rating-sources span {
            font-size: 0.65rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--color-dark);
            padding: 0.25rem 0.8rem;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        /* ═══════════════════════════════════════════ */
        /* FOOTER — Social SVG Icons                   */
        /* ═══════════════════════════════════════════ */
        .footer-brand .footer-socials {
            display: flex;
            gap: 0.8rem;
            margin-top: 1.8rem;
        }

        .footer-brand .footer-socials a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.45);
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .footer-brand .footer-socials a svg {
            width: 17px;
            height: 17px;
        }

        .footer-brand .footer-socials a:hover {
            border-color: var(--color-gold);
            color: var(--color-dark);
            background: var(--color-gold);
            transform: translateY(-3px);
        }

        /* ═══════════════════════════════════════════ */
        /* RESPONSIVE — New elements                   */
        /* ═══════════════════════════════════════════ */
        @media (max-width: 1024px) {
            .hero-booking-bar { display: none; }
            .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
            .testimonial-card.featured { top: 0; }
            .amenities-strip { gap: 0; }
        }

        @media (max-width: 768px) {
            .hero-booking-bar { display: none; }
            .hero-actions { flex-direction: column; gap: 1rem; }
            .hero-btn-ghost { text-align: center; }
            .slide-dots { justify-content: flex-start; }
            .amenities-strip {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 0.5rem;
                padding: 1.8rem;
            }
            .amenity-item { padding: 0.5rem; }
            .amenity-item span { font-size: 0.6rem; }
            .gallery-strip { height: 220px; }
            .gallery-item:hover { flex: 2.5; }
            .testimonials-grid { grid-template-columns: 1fr; max-width: 100%; }
            .testimonials-rating { flex-direction: column; text-align: center; gap: 1rem; }
            .rating-sources { justify-content: center; }
            .about-badge { left: 0; bottom: 0; }
        }