    /* --- CSS VARIABLES & RESET --- */
        :root {
            /* Palette: Terracotta, Sand, Warm Grey, White */
            --color-primary: #ff9574; /* Terracotta */
            --color-primary-dark: #A04B30;
            --color-secondary: #F4F1EA; /* Sand / Off-white */
            --color-accent: #ffce9e; /* Light Earth */
            
            /* UPDATED: Lighter Dark Tones */
            /* A warm charcoal for text (softer than black) */
            --color-text-dark: #4A423C; 
            
            /* A lighter warm grey for dark sections (Video, Contact) */
            --color-bg-dark: #4b1601; 
            
            --color-text-light: #F9F9F9;
            --color-white: #FFFFFF;

            /* Typography */
            --font-heading: 'Cormorant Garamond', serif;
            --font-body: 'Montserrat', sans-serif;

            /* Spacing */
            --spacing-sm: 1rem;
            --spacing-md: 2rem;
            --spacing-lg: 4rem;
            --spacing-xl: 6rem;

            /* Transitions */
            --transition: all 0.3s ease-in-out;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--color-text-dark); /* Updated Color */
            background-color: var(--color-secondary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* --- TYPOGRAPHY --- */
        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            font-weight: 400;
            line-height: 1.2;
        }

        h1 {
            font-size: 3.5rem;
            margin-bottom: var(--spacing-sm);
            color: var(--color-white);
        }

        h2 {
            font-size: 2.5rem;
            color: var(--color-primary);
            margin-bottom: var(--spacing-md);
            text-align: center;
        }

        h3 {
            font-size: 1.5rem;
            margin-bottom: var(--spacing-sm);
        }

        p {
            margin-bottom: var(--spacing-sm);
            font-weight: 300;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul {
            padding-left: 50px;
            padding-bottom: 20px;
        }
        /* --- UTILITIES --- */
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing-sm);
        }

        .section-padding {
            padding: var(--spacing-xl) 0;
        }

        .text-center { text-align: center; }
        .text-terracotta { color: var(--color-primary); }

        /* --- BUTTONS --- */
        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            font-family: var(--font-body);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            cursor: pointer;
            border: 1px solid transparent;
            border-radius: 30px;
            transition: var(--transition);
        }

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

        .btn-primary:hover {
            background-color: var(--color-primary-dark);
            transform: translateY(-2px);
        }

        .btn-outline {
            background-color: transparent;
            border: 1px solid var(--color-white);
            color: var(--color-white);
        }

        .btn-outline:hover {
            background-color: var(--color-white);
            color: var(--color-text-dark);
        }

        /* --- HEADER & NAV --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            /* UPDATED: Using lighter variable with opacity */
            background: rgba(255, 178, 121, 0.85); 
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            transition: var(--transition);
        }

        /* --- Header Actions Container --- */
        .header-actions {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        /* --- Language Switcher Styling --- */
        .lang-switch {
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }

        .lang-switch a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            padding: 0.2rem 0;
        }

        .lang-switch a:hover,
        .lang-switch a.active {
            color: var(--color-primary-dark); /* Terracotta for active state */
        }

        .lang-switch .divider {
            color: rgba(255, 255, 255, 0.4);
            margin: 0 0.5rem;
        }

        /* --- Visibility Logic --- */
        /* Hide mobile language item on desktop */
        .lang-mobile-item {
            display: none;
        }

        /* Hide desktop switcher on mobile */
        .desktop-only {
            display: block;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            color: var(--color-white);
            font-weight: 600;
            letter-spacing: 1px;
        }

        .logo span {
            color: var(--color-primary);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            padding-bottom: 0px;
        }

        .nav-links a {
            color: var(--color-white);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--color-primary-dark);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            display: none;
        }

        /* Mobile Menu Toggle */
        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .hamburger div {
            width: 25px;
            height: 2px;
            background-color: var(--color-white);
            transition: var(--transition);
        }

        /* --- HERO SECTION --- */
        #hero {
            height: 100vh;
            background: linear-gradient(rgba(255, 111, 1, 0.6), rgba(79, 40, 6, 0.6)), 
                        url('../photos/photo-exterior-01.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--color-white);
            padding-top: 80px;
        }

        .hero-content {
            max-width: 800px;
            animation: fadeIn 1.5s ease-out;
        }

        .hero-subtitle {
            font-family: var(--font-body);
            text-transform: uppercase;
            letter-spacing: 4px;
            font-size: 1rem;
            margin-bottom: 1rem;
            display: block;
            color: var(--color-accent);
        }

        .hero-buttons {
            margin-top: 2rem;
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* --- ABOUT SECTION --- */
        #about {
            background-color: var(--color-white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-lg);
            align-items: center;
        }

        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 20px 20px 0px var(--color-secondary);
        }

        .feature-list {
            list-style: none;
            margin: 1.5rem 0;
            display: list-item;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.95rem;
        }

        .feature-list li::before {
            content: '•';
            color: var(--color-primary);
            font-size: 1.5rem;
            line-height: 0;
        }

        /* --- VIDEO SECTION --- */
        #video {
            /* UPDATED: Lighter warm grey background */
            background-color: var(--color-bg-dark);
            color: var(--color-white);
            text-align: center;
        }

        #video h2 { color: var(--color-white); }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            max-width: 1000px;
            margin: 0 auto;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 20px 40px rgba(0,0,0,0.3); /* Softer shadow */
        }

        .video-wrapper iframe, .video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        
        /* Simulated video player look for demo */
        .video-placeholder {
            background: url('https://picsum.photos/seed/resortvideo/1000/600') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        
        .play-btn {
            width: 80px;
            height: 80px;
            background-color: var(--color-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }
        
        .play-btn::after {
            content: '';
            display: block;
            width: 0; 
            height: 0; 
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 18px solid white;
            margin-left: 5px;
        }
        
        .video-placeholder:hover .play-btn {
            transform: scale(1.1);
            background-color: var(--color-primary-dark);
        }

        /* --- BENEFIT SECTION --- */
        .benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
        }

        .benefit-card {
            background: white;
            padding: 30px;
            border-radius: 16px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.05);
        }

        .benefit-card h3 {
            margin-bottom: 10px;
            color: var(--color-accent);
        }

        /* --- GALLERY SECTION --- */
        #gallery {
            background-color: var(--color-secondary);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1rem;
        }

        .gallery-grid-2 {
            display: block;
            /*grid-template-columns: repeat(auto-fill, minmax(600px, 1fr));
            gap: 1rem;*/
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            aspect-ratio: 4/3;
            cursor: pointer;
            border-radius: 20px;
        }

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

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

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 1rem;
            background: linear-gradient(to top, rgba(74, 66, 60, 0.9), transparent); /* Updated Gradient */
            color: white;
            opacity: 0;
            transition: var(--transition);
        }

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

        /* --- MAP SECTION --- */
        #location {
            background-color: var(--color-white);
        }

        .location-container {
            display: flex;
            flex-wrap: wrap;
            gap: var(--spacing-lg);
        }

        .location-info {
            flex: 1;
            min-width: 300px;
        }

        .map-visual {
            flex: 1;
            min-width: 300px;
            height: 400px;
            background-color: #e5e5e5;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
        }

        /* Stylized Map Placeholder */
        .map-bg {
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1717167398839-af1125f8c04a') center/cover;
            /*filter: grayscale(30%) sepia(20%) hue-rotate(-10deg);*/
            border-radius: 20px;
        }
        
        .map-pin {
            position: absolute;
            top: 60%;
            left: 50%;
            transform: translate(-50%, -100%);
            color: var(--color-primary);
            font-size: 3rem;
            filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {transform: translate(-50%, -100%);}
            40% {transform: translate(-50%, -130%);}
            60% {transform: translate(-50%, -115%);}
        }

        /* --- CONTACT SECTION --- */
        #contact {
            /* UPDATED: Lighter background, subtle gradient */
            background: linear-gradient(135deg, var(--color-bg-dark) 0%, #4E453E 100%);
            color: var(--color-white);
        }

        #contact h2 { color: var(--color-white); }

        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--spacing-xl);
        }

        .contact-form {
            background-color: rgba(255,255,255,0.05);
            padding: 2.5rem;
            border-radius: 4px;
            border: 1px solid rgba(255,255,255,0.15); /* Slightly more visible border */
            border-radius: 30px;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
            color: var(--color-accent);
        }

        .form-group input, 
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem;
            background-color: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: var(--color-white);
            font-family: var(--font-body);
            font-size: 1rem;
            border-radius: 2px;
        }

        .form-group input:focus, 
        .form-group textarea:focus {
            outline: none;
            border-color: var(--color-primary);
            background-color: rgba(255,255,255,0.15);
        }

        .contact-details div {
            margin-bottom: 2rem;
        }
        
        .contact-details h4 {
            color: var(--color-primary);
            margin-bottom: 0.5rem;
            font-family: var(--font-body);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        /* --- FOOTER --- */
        footer {
            /* UPDATED: Lighter than black, uses the text-dark variable */
            background-color: #281c13; 
            color: #ccc; /* Lightened text for better contrast against new footer bg */
            padding: 2rem 0;
            font-size: 0.85rem;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        footer p {
            margin-bottom: 0.5rem;
        }

        /* --- ANIMATIONS --- */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }

            .desktop-only {
                display: none; /* Hide top-right switcher on mobile */
            }

            .about-grid, .contact-layout, .location-container {
                grid-template-columns: 1fr;
            }

            .nav-links {
                /* ... keep existing nav-links styles ... */
                position: fixed;
                right: -100%;
                top: 70px;
                flex-direction: column;
                background-color: var(--color-bg-dark);
                width: 100%;
                text-align: center;
                padding: 2rem 0;
                transition: 0.3s;
                border-top: 1px solid rgba(255,255,255,0.05);
            }

            /* Show language item inside the mobile menu */
            .nav-links .lang-mobile-item {
                display: block;
                margin-top: 1rem;
                padding-top: 1rem;
                margin-left: auto;
                margin-right: auto;
                border-top: 1px solid rgba(255,255,255,0.1);
            }
            
            /* Adjust mobile list items */
            .nav-links li {
                margin-bottom: 0.5rem;
            }

            .nav-links.active {
                right: 0;
            }

            .hamburger { display: flex; }
            
            .about-image { order: -1; } /* Image on top on mobile */
        }