    :root {
        --bg: #080808;
        --gold: #C9A84C;
        --white: #FFFFFF;
        --muted: #666666;
        --card-bg: rgba(255, 255, 255, 0.03);
    }

    * {
        box-sizing: border-box;
    }

    body,
    html {
        margin: 0;
        padding: 0;
        background-color: var(--bg);
        color: var(--white);
        font-family: 'Inter', sans-serif;
        overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    .bebas {
        font-family: 'Bebas Neue', cursive;
        font-weight: 400;
    }

    /* Loader */
    #loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: var(--bg);
        z-index: 9999;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    /* Navbar */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 25px 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 100;
        transition: all 0.4s ease;
        background: transparent;
    }

    nav.scrolled {
        background: rgba(8, 8, 8, 0.85);
        backdrop-filter: blur(12px);
        padding: 15px 50px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .logo {
        color: var(--gold);
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .nav-links {
        display: flex;
        gap: 40px;
    }

    .nav-links a {
        color: var(--white);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 3px;
        font-size: 11px;
        transition: color 0.3s;
    }

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

    .book-btn {
        color: var(--gold);
        border: 1px solid var(--gold);
        padding: 10px 20px;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-decoration: none;
        transition: all 0.3s;
    }

    .book-btn:hover {
        background: var(--gold);
        color: var(--bg);
    }

    /* Hero */
    .pin-wrap {
        width: 100%;
        height: 100vh;
        position: relative;
        overflow: hidden;
    }

    #hero-canvas {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
    }

    .hero-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        /* Let clicks pass to canvas if needed, or buttons */
    }

    /* Make Phase 1 interactable */
    #phase1 {
        pointer-events: auto;
    }

    .btn-primary {
        background: var(--gold);
        border: none;
        color: #080808;
        padding: 15px 40px;
        font-family: 'Inter';
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        transition: background 0.3s;
    }

    .btn-primary:hover {
        background: #fff;
    }

    .btn-secondary {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--white);
        color: var(--white);
        padding: 15px 40px;
        font-family: 'Inter';
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        backdrop-filter: blur(5px);
        transition: background 0.3s, color 0.3s;
    }

    .btn-secondary:hover {
        background: var(--white);
        color: #080808;
    }

    @keyframes bounce {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(10px);
        }
    }

    .bounce {
        animation: bounce 2s infinite ease-in-out;
    }

    /* Properties Section */
    #properties {
        padding: 120px 10%;
        position: relative;
        z-index: 2;
        background: var(--bg);
    }

    .section-label {
        color: var(--gold);
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
    }

    .section-label .line {
        width: 40px;
        height: 1px;
        background: var(--gold);
        margin-right: 15px;
    }

    .section-title {
        font-size: 5rem;
        margin: 0 0 50px 0;
        letter-spacing: 2px;
    }

    .cards-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .card {
        background: var(--card-bg);
        border: 1px solid rgba(201, 168, 76, 0.15);
        border-radius: 4px;
        overflow: hidden;
        transition: all 0.4s ease;
        opacity: 0;
        transform: translateY(40px);
        cursor: pointer;
    }

    .card:hover {
        transform: translateY(-10px);
        border-color: rgba(201, 168, 76, 0.6);
        box-shadow: 0 20px 60px rgba(201, 168, 76, 0.1);
    }

    .card-img {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

    .card-content {
        padding: 30px;
    }

    /* Statement Parallax */
    #statement {
        height: 100vh;
        background: #080808;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        overflow: hidden;
        padding: 0 5%;
    }

    .line-left,
    .line-right {
        height: 1px;
        background: var(--gold);
        position: absolute;
        box-shadow: 0 0 15px rgba(201, 168, 76, 0.8);
    }

    .line-left {
        left: 0;
        top: 40%;
        width: 0;
    }

    .line-right {
        right: 0;
        top: 60%;
        width: 0;
    }

    .parallax-text {
        font-size: 10vw;
        white-space: nowrap;
        line-height: 1;
        text-transform: uppercase;
    }

    .left-text {
        margin-left: 5%;
        color: rgba(255, 255, 255, 0.9);
    }

    .right-text {
        align-self: flex-end;
        margin-right: 5%;
        color: var(--gold);
    }

    /* Contact Section */
    .contact-section {
        display: flex;
        min-height: 80vh;
        padding: 120px 10%;
        gap: 60px;
    }

    .contact-form input {
        width: 100%;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(201, 168, 76, 0.3);
        padding: 15px 0;
        margin-bottom: 30px;
        color: var(--white);
        font-family: 'Inter', sans-serif;
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }

    .contact-form input:focus {
        outline: none;
        border-bottom-color: var(--gold);
    }

    .contact-form input::placeholder {
        color: var(--muted);
    }

    .contact-form button {
        background: var(--gold);
        color: #080808;
        border: none;
        padding: 15px 40px;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        transition: background 0.3s ease;
        margin-top: 20px;
        width: 100%;
    }

    .contact-form button:hover {
        background: #fff;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .cards-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        #hero-heading {
            font-size: 6rem !important;
        }
    }

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

        .contact-section {
            flex-direction: column;
        }

        #hero-heading {
            font-size: 4.5rem !important;
        }

        #phase3-label {
            font-size: 2.5rem !important;
        }

        .nav-links {
            display: none !important;
        }

        nav {
            padding: 20px;
        }

        nav.scrolled {
            padding: 15px 20px;
        }

        #hero-buttons {
            flex-direction: column;
        }

        .parallax-text {
            font-size: 14vw;
        }
    }
