    :root {
        --color-bg: #FDFCF8;
        --color-text: #1F2937;
        --color-emerald: #064e3b;
        --color-emerald-light: #059669;
        --color-cream: #F3F4F6;
        --color-border: #E5E7EB;
        --color-white: #ffffff;
        
        --font-serif: 'Cormorant Garamond', serif;
        --font-sans: 'Montserrat', sans-serif;
        
        --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

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

    html {
        scroll-behavior: smooth;
    }

    body {
        background-color: var(--color-bg);
        color: var(--color-text);
        font-family: var(--font-sans);
        font-weight: 300;
        line-height: 1.6;
        overflow-x: hidden;
        cursor: none; /* Custom cursor */
    }

    /* Custom Cursor */
    .cursor-dot,
    .cursor-ring {
        position: fixed;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        z-index: 9999;
        pointer-events: none;
    }

    .cursor-dot {
        width: 8px;
        height: 8px;
        background-color: var(--color-emerald);
    }

    .cursor-ring {
        width: 40px;
        height: 40px;
        border: 1px solid var(--color-emerald);
        transition: width 0.2s, height 0.2s, background-color 0.2s;
    }

    /* Typography */
    h1, h2, h3 {
        font-family: var(--font-serif);
        font-weight: 400;
        line-height: 1.1;
        color: var(--color-emerald);
    }

    h1 {
        font-size: clamp(3rem, 5vw, 4.5rem);
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }

    h2 {
        font-size: clamp(2rem, 3vw, 3rem);
        margin-bottom: 1.5rem;
    }

    p {
        font-size: 1.125rem;
        color: #4B5563;
        max-width: 60ch;
    }

    .eyebrow {
        display: block;
        font-family: var(--font-sans);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: var(--color-emerald-light);
        margin-bottom: 1rem;
        font-weight: 500;
    }

    /* Layout */
    .container {
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .section {
        padding: 8rem 0;
    }

    /* Navigation */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        padding: 1.5rem 0;
        transition: background-color 0.3s ease, padding 0.3s ease;
    }

    .navbar.scrolled {
        background-color: rgba(253, 252, 248, 0.9);
        backdrop-filter: blur(10px);
        padding: 1rem 0;
        border-bottom: 1px solid var(--color-border);
    }

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

    .logo {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        color: var(--color-emerald);
        text-decoration: none;
        font-weight: 500;
    }

    .logo .dot {
        color: var(--color-emerald-light);
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 2.5rem;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--color-text);
        font-size: 0.9rem;
        font-weight: 400;
        letter-spacing: 0.05em;
        transition: color 0.3s;
    }

    .nav-links a:hover {
        color: var(--color-emerald);
    }

    .mobile-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        gap: 6px;
    }

    .mobile-toggle span {
        width: 24px;
        height: 1px;
        background-color: var(--color-emerald);
        transition: transform 0.3s;
    }

    /* Buttons */
    .btn {
        display: inline-block;
        padding: 1rem 2rem;
        font-family: var(--font-sans);
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
    }

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

    .btn--primary:hover {
        background-color: transparent;
        color: var(--color-emerald);
    }

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

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

    .btn--text {
        background: none;
        border: none;
        padding: 1rem 0;
        color: var(--color-text);
        margin-left: 1rem;
    }

    .btn--text:hover {
        color: var(--color-emerald);
    }
    
    .btn--full {
        width: 100%;
    }

    /* Hero */
    .hero {
        padding-top: 10rem;
        padding-bottom: 6rem;
        min-height: 90vh;
        display: flex;
        align-items: center;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .hero-sub {
        margin-bottom: 2.5rem;
        font-size: 1.25rem;
    }

    .hero-visual {
        position: relative;
        height: 600px;
        width: 100%;
    }

    .hero-img-wrapper {
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-radius: 4px;
    }

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

    .float-card {
        position: absolute;
        background: var(--color-white);
        padding: 1.5rem 2rem;
        box-shadow: 0 20px 40px -10px rgba(6, 78, 59, 0.1);
        border: 1px solid var(--color-border);
    }

    .card--1 {
        bottom: 10%;
        left: -10%;
    }

    .card--2 {
        top: 15%;
        right: -5%;
    }

    .fc-label {
        display: block;
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: #9CA3AF;
        margin-bottom: 0.25rem;
    }

    .fc-value {
        font-family: var(--font-serif);
        font-size: 1.5rem;
        color: var(--color-emerald);
    }

    /* About */
    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
        align-items: center;
    }

    .img-stack {
        position: relative;
        height: 600px;
    }

    .stack-img-main {
        position: absolute;
        width: 80%;
        height: 85%;
        object-fit: cover;
        border-radius: 2px;
        top: 0;
        left: 0;
        box-shadow: 20px 20px 0 var(--color-cream);
    }

    .stack-img-sub {
        position: absolute;
        width: 50%;
        height: 50%;
        object-fit: cover;
        border-radius: 2px;
        bottom: 0;
        right: 0;
        border: 8px solid var(--color-bg);
    }

    .feature-list {
        list-style: none;
        margin-top: 2rem;
        display: grid;
        gap: 1rem;
    }

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

    .check-icon {
        color: var(--color-emerald);
    }

    /* Amenities */
    .amenities {
        background-color: var(--color-white);
    }

    .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-header h2 {
        margin-bottom: 1rem;
    }

    .amenities-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 2rem;
    }

    .amenity-card {
        padding: 2.5rem;
        border: 1px solid var(--color-border);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .amenity-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
        border-color: var(--color-emerald);
    }

    .icon-box {
        width: 48px;
        height: 48px;
        margin-bottom: 1.5rem;
        color: var(--color-emerald);
    }

    .amenity-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .amenity-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Location */
    .location-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .location-list {
        list-style: none;
        margin-top: 2rem;
        border-top: 1px solid var(--color-border);
    }

    .location-list li {
        display: flex;
        justify-content: space-between;
        padding: 1rem 0;
        border-bottom: 1px solid var(--color-border);
        font-size: 1rem;
    }

    .location-list span:last-child {
        color: var(--color-emerald);
        font-family: var(--font-serif);
        font-size: 1.25rem;
    }

    .location-map {
        background-color: var(--color-cream);
        height: 400px;
        width: 100%;
        border-radius: 4px;
        position: relative;
        overflow: hidden;
        background-image: url('https://images.pexels.com/photos/271619/pexels-photo-271619.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=800&h=600');
        background-size: cover;
        background-position: center;
    }

    .map-placeholder {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: var(--color-white);
        padding: 2rem 3rem;
        text-align: center;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        border-radius: 4px;
    }

    .map-pin {
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
    }

    .map-placeholder p {
        font-size: 0.9rem;
        color: var(--color-text);
        max-width: none;
        line-height: 1.8;
    }

    /* Contact */
    .contact {
        background-color: var(--color-emerald);
        color: var(--color-white);
    }

    .contact h2, .contact .eyebrow {
        color: var(--color-white);
    }

    .contact .eyebrow {
        color: rgba(255,255,255,0.7);
    }

    .contact p {
        color: rgba(255,255,255,0.8);
    }

    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .contact-details {
        margin-top: 3rem;
    }

    .cd-item {
        margin-bottom: 2rem;
    }

    .cd-label {
        display: block;
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: rgba(255,255,255,0.6);
        margin-bottom: 0.5rem;
    }

    .cd-item a, .cd-item span {
        color: var(--color-white);
        text-decoration: none;
        font-family: var(--font-serif);
        font-size: 1.5rem;
        transition: opacity 0.3s;
    }
    
    .cd-item a:hover {
        opacity: 0.8;
    }

    .booking-form {
        background: var(--color-white);
        padding: 3rem;
        border-radius: 4px;
    }

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

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

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 1rem;
        border: 1px solid var(--color-border);
        background: var(--color-bg);
        font-family: var(--font-sans);
        font-size: 1rem;
        color: var(--color-text);
        border-radius: 2px;
        transition: border-color 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--color-emerald);
    }

    .form-success {
        text-align: center;
        padding: 3rem;
    }
    
    .form-success svg {
        margin-bottom: 1.5rem;
    }
    
    .form-success h3 {
        margin-bottom: 0.5rem;
    }
    
    .hidden {
        display: none;
    }

    /* Footer */
    footer {
        background-color: var(--color-bg);
        padding: 4rem 0;
        border-top: 1px solid var(--color-border);
    }

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

    .footer-brand p {
        font-size: 0.875rem;
        color: #6B7280;
        margin-top: 0.5rem;
    }

    .footer-links {
        display: flex;
        gap: 2rem;
    }

    .footer-links a {
        text-decoration: none;
        color: var(--color-text);
        font-size: 0.9rem;
        transition: color 0.3s;
    }

    .footer-links a:hover {
        color: var(--color-emerald);
    }

    /* Animations */
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .hero-grid, .about-grid, .location-grid, .contact-wrapper {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .hero-visual {
            height: 400px;
            order: -1;
        }
        
        .float-card {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .nav-links {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 100%;
            background: var(--color-bg);
            flex-direction: column;
            justify-content: center;
            transition: right 0.4s ease;
        }

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

        .mobile-toggle {
            display: flex;
            z-index: 101;
        }

        .mobile-toggle span:first-child {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .mobile-toggle span:last-child {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .hero {
            padding-top: 8rem;
            text-align: center;
        }
        
        .hero-actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        
        .btn--text {
            margin-left: 0;
        }

        .img-stack {
            height: 400px;
        }
        
        .stack-img-main {
            width: 100%;
            height: 100%;
            box-shadow: none;
        }
        
        .stack-img-sub {
            display: none;
        }

        .footer-content {
            flex-direction: column;
            gap: 2rem;
            text-align: center;
        }
        
        .cursor-dot, .cursor-ring {
            display: none;
        }
        
        body {
            cursor: auto;
        }
    }
