        :root {
            --bg: #D9A299;
            --primary: #19183B;
            --accent: #8DBCC7;
        }

        * {
            scrollbar-width: thin;
            scrollbar-color: var(--primary) var(--bg);
        }

        body {
            background-color: var(--bg);
            color: var(--primary);
            font-family: 'Open Sans', sans-serif;
            margin: 0;
            overflow-x: hidden;
            line-height: 1.7;
        }

        /* Typography */
        h1, h2, h3 { font-weight: 800; text-transform: uppercase; letter-spacing: -0.03em; }
        p { font-weight: 300; letter-spacing: 0.01em; }

        /* Storytelling Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* UI Elements */
        .btn-ls {
            background-color: var(--accent);
            color: var(--primary);
            padding: 1rem 2.5rem;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.1em;
            transition: all 0.4s ease;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            border: 1px solid transparent;
        }
        .btn-ls:hover {
            background-color: var(--primary);
            color: var(--accent);
            transform: scale(1.05);
        }

        .ls-card {
            background-color: var(--accent);
            transition: all 0.5s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

.hero-image {
    background-image:
        linear-gradient(rgba(217, 162, 153, 0.45), rgba(217, 162, 153, 0.45)),
        url('heo.png');
    background-position: center;
    background-repeat: no-repeat;
}

/* Mobile: show full image */
@media (max-width: 768px) {
    .hero-image {
        background-size: contain;
        min-height: 100vh;
        background-attachment: scroll;
    }
}

/* Desktop: controlled cinematic crop */
@media (min-width: 768px) {
    .hero-image {
        background-size: contain;
        min-height: 100vh;
        background-attachment: scroll;

    }
}


        .search-bar {
            background: rgba(25, 24, 59, 0.05);
            border-bottom: 2px solid var(--primary);
        }

        .modal-overlay {
            background: rgba(25, 24, 59, 0.8);
            backdrop-filter: blur(10px);
        }

        /* Hide Scrollbar */
        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-thumb { background: var(--primary); }
