
        :root {
            --primary-color: #4e5d44; /* Sage-olive green (logo green refreshed with pool's natural tone) */
            --primary-dark: #3c4836;
            --secondary-color: #b8894f; /* Teak honey gold (matches room-suite teak wood) */
            --text-dark: #2e302b;
            --text-light: #ffffff;
            --bg-light: #f7f1e9; /* Warm cream, same as logo background */
            --logo-bg: #f7f1e9; /* Exact logo background cream */
            --transition: all 0.3s ease;
        }

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

        ::selection {
            background-color: var(--primary-dark);
            color: var(--text-light);
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: #ffffff;
        }

        h1, h2, h3, .logo-text {
            font-family: 'Cinzel', serif;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
        }

        .icon-accent {
            color: var(--primary-dark);
        }

        .skip-link {
            position: absolute;
            top: 0;
            left: -9999px;
            z-index: 3000;
            background-color: var(--primary-dark);
            color: var(--text-light);
            padding: 10px 20px;
            border-radius: 0 0 4px 0;
            text-decoration: none;
            font-weight: 600;
        }

        .skip-link:focus {
            left: 0;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 12px 25px;
            border-radius: 4px;
            font-size: 0.95rem;
            font-weight: 500;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--primary-dark);
            color: var(--text-light);
        }

        .btn-primary:hover {
            background-color: #333d2e; /* Slightly darker shade of sage green */
            transform: translateY(-2px);
        }

        .btn-whatsapp {
            background-color: #25d366;
            color: var(--text-light);
        }

        .btn-whatsapp:hover {
            background-color: #1ebe57;
            transform: translateY(-2px);
        }

        .btn-outline {
            border: 2px solid var(--text-light);
            color: var(--text-light);
        }

        .btn-outline:hover {
            background-color: var(--text-light);
            color: var(--primary-color);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--logo-bg); /* Same cream as logo */
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .header-logo {
            height: 45px;
            width: auto;
            border-radius: 4px;
        }

        .logo-text {
            color: var(--primary-color);
            font-size: 1.4rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .logo-text span {
            color: var(--secondary-color);
            font-weight: 400;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }

        .nav-links a {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: var(--transition);
            position: relative;
            padding-bottom: 4px;
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background-color: var(--primary-dark);
            transform: scaleX(0);
            transition: var(--transition);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            transform: scaleX(1);
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary-dark);
        }

        /* Language Switcher */
        .lang-switch {
            display: flex;
            align-items: center;
            gap: 5px;
            background: rgba(0, 0, 0, 0.05);
            padding: 4px 10px;
            border-radius: 20px;
        }

        .lang-btn {
            background: none;
            border: none;
            color: rgba(78, 93, 68, 0.6);
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            padding: 2px 6px;
            text-decoration: none;
        }

        .lang-btn.active {
            color: var(--primary-color);
        }

        .lang-divider {
            color: rgba(0, 0, 0, 0.25);
            font-size: 0.8rem;
        }

        /* Hero Section — photo is an <img fetchpriority="high"> for LCP;
           the gradients stay as background layers above it */
        .hero {
            position: relative;
            overflow: hidden;
            height: 100vh;
            background:
                linear-gradient(to bottom, var(--logo-bg), rgba(247, 241, 233, 0) 12%),
                radial-gradient(ellipse 75% 65% at 50% 55%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.28) 55%, rgba(0,0,0,0) 78%),
                linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.35));
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-light);
            padding-top: 80px;
        }

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

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            font-weight: 600;
            max-width: 850px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.3;
            text-shadow: 0 2px 6px rgba(0,0,0,0.65), 0 6px 24px rgba(0,0,0,0.5);
        }

        .hero-content p {
            font-size: 1.25rem;
            margin-bottom: 35px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 300;
            opacity: 0.95;
            line-height: 1.6;
            text-shadow: 0 1px 4px rgba(0,0,0,0.65), 0 4px 14px rgba(0,0,0,0.45);
        }

        @media (max-width: 768px) {
            /* Mobile hero photo comes from the <picture> source; gradients only here */
            .hero {
                background:
                    linear-gradient(to bottom, var(--logo-bg), rgba(247, 241, 233, 0) 12%),
                    radial-gradient(ellipse 75% 65% at 50% 55%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.28) 55%, rgba(0,0,0,0) 78%),
                    linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.35));
            }
        }

        .hero-cta {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        /* Intro Section */
        .intro {
            padding: 40px 0;
            text-align: center;
            background-color: var(--bg-light);
        }

        .section-subtitle {
            font-size: 0.85rem;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 15px;
            display: block;
            font-weight: 600;
        }

        .section-subtitle::after {
            content: "";
            display: block;
            width: 50px;
            height: 2px;
            background-color: var(--primary-dark);
            margin: 12px auto 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 25px;
        }

        .intro p {
            max-width: 750px;
            margin: 0 auto;
            color: #555;
            font-size: 1.1rem;
        }

        .intro-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin: 50px auto 0 auto;
            max-width: 900px;
        }

        .intro-feature {
            background-color: #ffffff;
            border-radius: 8px;
            padding: 30px 25px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.06);
            text-align: center;
        }

        .intro-feature i {
            font-size: 1.7rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            display: block;
        }

        .intro-feature h3 {
            font-size: 1.1rem;
            color: var(--primary-color);
            margin-bottom: 8px;
        }

        .intro-feature p {
            font-size: 0.9rem;
            color: #666;
            margin: 0;
        }

        /* Gallery Tour Section */
        .gallery-section {
            padding: 50px 0;
            background-color: var(--bg-light);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 15px;
            margin-top: 32px;
        }

        .gallery-item {
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            height: 220px;
            position: relative;
            cursor: pointer;
        }

        .gallery-item::after {
            content: "";
            position: absolute;
            inset: 0;
            background-color: rgba(60, 72, 54, 0);
            transition: var(--transition);
            pointer-events: none;
        }

        .gallery-item:hover::after {
            background-color: rgba(60, 72, 54, 0.35);
        }

        .gallery-item-large {
            grid-row: span 2;
            height: 455px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item img:hover {
            transform: scale(1.03);
        }

        .gallery-item img:focus-visible,
        .room-card-img:focus-visible,
        .lightbox-btn:focus-visible {
            outline: 3px solid var(--secondary-color);
            outline-offset: -3px;
        }

        /* Accommodations Section */
        .rooms-section {
            padding: 40px 0;
            background-color: var(--bg-light);
        }

        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 40px;
            margin-top: 32px;
        }

        .room-card {
            background-color: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            display: flex;
            flex-direction: column;
            transition: var(--transition);
        }

        .room-card:hover {
            transform: translateY(-5px);
        }

        .room-card-img {
            height: 280px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .room-card-img-junior {
            background-image: url('../images/room-junior-suite.webp');
        }

        .room-card-img-suite {
            background-image: url('../images/room-suite.webp');
        }

        @media (max-width: 992px) {
            .room-card-img-junior {
                background-image: url('../images/room-junior-suite-768.webp');
            }
            .room-card-img-suite {
                background-image: url('../images/room-suite-768.webp');
            }
        }

        .room-card-img::after {
            content: "";
            position: absolute;
            inset: 0;
            background-color: rgba(60, 72, 54, 0);
            transition: var(--transition);
            pointer-events: none;
        }

        .room-card:hover .room-card-img::after {
            background-color: rgba(60, 72, 54, 0.3);
        }

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

        .room-meta {
            display: flex;
            gap: 20px;
            font-size: 0.85rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .room-meta span i {
            margin-right: 5px;
        }

        .room-card h3 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .room-card p {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 25px;
            flex-grow: 1;
        }

        .room-specs {
            list-style: none;
            margin-bottom: 30px;
            border-top: 1px solid #eee;
            padding-top: 20px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .room-specs li {
            font-size: 0.85rem;
            color: #444;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .room-specs li i {
            color: var(--primary-color);
        }

        /* Booking CTA Block */
        .cta-booking {
            margin-top: 32px;
            padding-top: 40px;
            text-align: center;
            color: var(--text-dark);
        }

        .cta-booking .cta-note {
            margin: 20px auto 0 auto;
            font-size: 0.8rem;
            color: #888;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .cta-booking .cta-note i {
            color: var(--primary-dark);
        }

        .cta-booking h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .cta-booking p {
            max-width: 600px;
            margin: 0 auto 35px auto;
            color: #555;
            font-size: 1.05rem;
        }

        /* Floating Action Group: WhatsApp on the right, back-to-top floats above it */
        .sticky-actions {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 990;
        }

        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: static;
            background-color: #25d366;
            color: white;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 2px 2px 15px rgba(0,0,0,0.2);
            transition: var(--transition);
            text-decoration: none;
            flex-shrink: 0;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            background-color: #1ebe57;
        }

        /* Mobile Sticky Booking Bar (centered pill, shown only on mobile) */
        .sticky-book {
            position: fixed;
            left: 50%;
            bottom: 12px;
            transform: translateX(-50%);
            display: none;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background-color: var(--primary-dark);
            color: var(--text-light);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 13px 30px;
            border-radius: 40px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
            transition: var(--transition);
            max-width: calc(100vw - 32px);
            white-space: nowrap;
        }

        .sticky-book:hover {
            background-color: var(--primary-color);
            transform: translateX(-50%) translateY(-2px);
        }

        /* Back to Top Button — fully independent fixed element.
           Explicit pixel offsets; never depends on a parent container or its height,
           so no browser-specific quirk can make it invisible. */
        .back-to-top {
            position: fixed;
            bottom: 90px;     /* 30 (bar) + 48 (WhatsApp) + 12 gap -> directly above WhatsApp */
            right: 30px;
            background-color: var(--primary-dark);
            color: var(--text-light);
            width: 48px;
            height: 48px;
            border: none;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            cursor: pointer;
            box-shadow: 2px 2px 12px rgba(0,0,0,0.25);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background-color 0.3s ease;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            background-color: var(--primary-color);
        }

        /* Mobile Nav Toggle */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--primary-color);
            font-size: 1.4rem;
            cursor: pointer;
            padding: 4px;
            transition: var(--transition);
        }

        .nav-toggle:hover {
            color: var(--primary-dark);
        }

        /* Footer */
        footer {
            background-color: var(--logo-bg); /* Same cream as logo */
            color: rgba(46, 48, 43, 0.8);
            padding: 40px 0 25px 0;
            font-size: 0.9rem;
        }

        .footer-grid {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .footer-col h4 {
            color: var(--primary-color);
            font-family: 'Cinzel', serif;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .footer-col p {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .footer-col a {
            color: var(--primary-color);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-col a:hover {
            color: var(--secondary-color);
        }

        .footer-col .social-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin: 0 10px;
            font-weight: 500;
        }

        .social-link i {
            font-size: 1.2rem;
            color: var(--primary-dark);
        }

        /* Portrait View (Default Layout) */
        .footer-logo-landscape-view {
            display: none; /* Hidden on portrait */
        }

        .footer-logo-portrait-view {
            display: block;
            margin-bottom: 25px;
            width: 100%;
            max-width: 420px;
        }

        .footer-logo-portrait-view img {
            width: 100%;
            height: auto;
            border-radius: 4px;
        }

        .footer-col {
            margin-bottom: 40px;
            width: 100%;
        }

        /* Landscape View Rules */
        @media (orientation: landscape) {
            .footer-grid {
                display: grid;
                grid-template-columns: 1fr 1.2fr 1fr; /* Logo | Contact | Socials */
                gap: 40px;
                align-items: start;
                text-align: left;
            }

            .footer-logo-landscape-view {
                display: block; /* Shown on landscape */
                width: 100%;
                max-width: 250px;
            }

            .footer-logo-landscape-view img {
                width: 100%;
                height: auto;
                border-radius: 4px;
            }

            .footer-logo-portrait-view {
                display: none; /* Hidden on landscape */
            }

            .footer-col {
                margin-bottom: 0;
                text-align: left;
            }

            .footer-col p {
                justify-content: flex-start;
                align-items: flex-start;
            }

            .footer-col .social-link {
                margin: 0 15px 0 0;
            }
        }

        .footer-bottom {
            border-top: 1px solid rgba(0,0,0,0.1);
            padding-top: 30px;
            text-align: center;
            margin-top: 30px;
        }

        /* Mobile Layout */
        @media (max-width: 992px) {
            .rooms-grid {
                grid-template-columns: 1fr;
            }
            .hero-content h1 {
                font-size: 2.8rem;
            }
            .intro-features {
                grid-template-columns: 1fr;
                max-width: 420px;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .sticky-actions {
                right: 16px;
                bottom: 12px;
            }
            .back-to-top {
                right: 16px;
                bottom: 72px; /* 12px bottom offset + 48px WhatsApp button + 12px gap */
            }
            .sticky-book {
                display: flex;
                padding: 12px 22px;
                font-size: 0.9rem;
            }
            footer {
                padding-bottom: 100px; /* Reserve room for the sticky booking bar without exposing the body background */
            }
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column;
                gap: 0;
                background-color: var(--logo-bg);
                box-shadow: 0 10px 20px rgba(0,0,0,0.12);
                padding: 8px 0;
            }
            .nav-links.open {
                display: flex;
            }
            .nav-links li {
                width: 100%;
            }
            .nav-links a {
                display: block;
                padding: 13px 24px;
            }
            .nav-links a::after {
                display: none;
            }
            .hero-content h1 {
                font-size: 2.2rem;
            }
        }

        /* Hero Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.4rem;
            text-decoration: none;
            animation: scroll-bounce 2s infinite;
            z-index: 5;
        }

        .scroll-indicator:hover {
            color: #ffffff;
        }

        @keyframes scroll-bounce {
            0%, 100% { transform: translate(-50%, 0); }
            50% { transform: translate(-50%, 10px); }
        }

        /* Amenities Strip */
        .amenities-strip {
            background-color: var(--primary-dark);
            padding: 20px 0;
        }

        .amenities-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            list-style: none;
        }

        .amenities-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-light);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .amenities-list li i {
            color: var(--secondary-color);
            font-size: 1.1rem;
        }

        /* Reviews Section */
        .reviews-section {
            padding: 40px 0;
            background-color: var(--bg-light);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 32px;
        }

        .review-card {
            background-color: #ffffff;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.06);
            display: flex;
            flex-direction: column;
        }

        .review-stars {
            color: var(--secondary-color);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .review-card blockquote {
            font-size: 0.95rem;
            color: #555;
            font-style: italic;
            line-height: 1.6;
            flex-grow: 1;
            margin-bottom: 20px;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .review-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: var(--text-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .review-author strong {
            display: block;
            color: var(--text-dark);
            font-size: 0.9rem;
        }

        .review-author span {
            color: #888;
            font-size: 0.78rem;
        }

        .reviews-more {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 35px;
        }

        .btn-google {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 12px 28px;
            border-radius: 4px;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .btn-google:hover {
            background-color: var(--primary-color);
            color: var(--text-light);
        }

        /* Outline buttons on light sections need the dark variant —
           the base .btn-outline is white-on-transparent for the dark hero */
        .reviews-more .btn-outline {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        .reviews-more .btn-outline:hover {
            background-color: var(--primary-color);
            color: var(--text-light);
        }

        /* Location Section */
        .location-section {
            padding: 40px 0;
            background-color: var(--bg-light);
        }

        .location-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: stretch;
            margin-top: 32px;
        }

        .location-info h3 {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .location-info p {
            color: #555;
            font-size: 0.95rem;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .distance-list {
            list-style: none;
            margin-top: 25px;
        }

        .distance-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid rgba(60, 72, 54, 0.12);
            font-size: 0.9rem;
            color: #444;
        }

        .distance-list li i {
            color: var(--secondary-color);
            font-size: 1.1rem;
            width: 22px;
            text-align: center;
        }

        .map-embed {
            border: 1px solid rgba(60, 72, 54, 0.12);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            min-height: 320px;
        }

        .map-embed iframe {
            width: 100%;
            height: 100%;
            min-height: 320px;
            border: 0;
            display: block;
        }

        /* FAQ Section */
        .faq-section {
            padding: 40px 0;
            background-color: var(--bg-light);
        }

        .faq-grid {
            max-width: 820px;
            margin: 40px auto 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .faq-item {
            background-color: #ffffff;
            border: 1px solid rgba(60, 72, 54, 0.15);
            border-radius: 8px;
            padding: 10px 18px;
            transition: var(--transition);
        }

        .faq-item[open] {
            box-shadow: 0 6px 20px rgba(0,0,0,0.06);
            border-color: var(--secondary-color);
        }

        .faq-item summary {
            list-style: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            cursor: pointer;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--primary-dark);
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-q {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .faq-q i {
            color: var(--secondary-color);
            font-size: 1rem;
            width: 20px;
            text-align: center;
        }

        .faq-icon {
            color: var(--secondary-color);
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item[open] .faq-icon {
            transform: rotate(180deg);
        }

        .faq-item p {
            margin-top: 8px;
            padding-top: 8px;
            border-top: 1px solid rgba(60, 72, 54, 0.15);
            color: #555;
            font-size: 0.88rem;
            line-height: 1.55;
        }

        /* Lightbox */
        .lightbox {
            position: fixed;
            inset: 0;
            background-color: rgba(20, 22, 19, 0.94);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            z-index: 2000;
            cursor: zoom-out;
            touch-action: none; /* Let horizontal drags swipe, not page-nav */
        }

        .lightbox.open {
            opacity: 1;
            visibility: visible;
        }

        .lightbox-img {
            max-width: 90vw;
            max-height: 85vh;
            border-radius: 6px;
            box-shadow: 0 15px 50px rgba(0,0,0,0.5);
        }

        .lightbox-btn {
            position: absolute;
            background: rgba(255,255,255,0.1);
            border: none;
            color: #fff;
            font-size: 1.6rem;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            z-index: 2001;
        }

        .lightbox-btn:hover {
            background: rgba(255,255,255,0.25);
        }

        .lightbox-close {
            top: 20px;
            right: 20px;
        }

        .lightbox-prev {
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
        }

        .lightbox-next {
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
        }

        .lightbox-counter {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255,255,255,0.7);
            font-size: 0.85rem;
            letter-spacing: 1px;
        }

        /* Scroll-in Reveal Animations */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: none;
        }

        .reveal-d1 { transition-delay: 0.1s; }
        .reveal-d2 { transition-delay: 0.2s; }
        .reveal-d3 { transition-delay: 0.3s; }

        @media (prefers-reduced-motion: reduce) {
            .scroll-indicator {
                animation: none;
            }
            .reveal {
                opacity: 1;
                transform: none;
                transition: none;
            }
        }

        /* Responsive: new sections */
        @media (max-width: 992px) {
            .reviews-grid {
                grid-template-columns: 1fr;
                max-width: 480px;
                margin-left: auto;
                margin-right: auto;
            }
            .location-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .amenities-list {
                gap: 18px;
            }
            .lightbox-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            .lightbox-prev {
                left: 10px;
            }
            .lightbox-next {
                right: 10px;
            }
        }
