        :root {
            --cocoa: #493628;
            --clay: #795757;
            --sand: #D0B8A8;
            --cream: #DFD3C3;
        }

        /* --- Global Aesthetics --- */
        body {
            background-color: var(--cream);
            color: var(--cocoa);
            font-family: 'Outfit', sans-serif;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, .serif {
            font-family: 'DM Serif Text', serif;
        }

        .grain-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: url('https://grainy-gradients.vercel.app/noise.svg');
            opacity: 0.15;
            pointer-events: none;
            z-index: 9999;
        }

        /* --- Navigation & Menu --- */
        .glass-nav {
            background: rgba(223, 211, 195, 0.05);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(73, 54, 40, 0.05);
            transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .nav-scrolled {
            background: rgba(73, 54, 40, 0.95);
            color: var(--cream);
        }

        .nav-scrolled .nav-link::after { background: var(--cream); }

        .nav-link {
            position: relative;
            font-weight: 300;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-size: 0.75rem;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px; left: 0;
            width: 0; height: 1px;
            background: var(--cocoa);
            transition: width 0.6s ease;
        }

        .nav-link:hover::after { width: 100%; }

        /* --- Page View Management --- */
        .page-view {
            display: none;
            animation: viewFadeIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .page-view.active { display: block; }

        @keyframes viewFadeIn {
            from { opacity: 0; filter: blur(20px); transform: translateY(20px); }
            to { opacity: 1; filter: blur(0); transform: translateY(0); }
        }

        /* --- Advanced Animations --- */
        .breathing {
            animation: breathe 8s infinite ease-in-out;
        }

        @keyframes breathe {
            0%, 100% { transform: scale(1); opacity: 0.8; }
            50% { transform: scale(1.05); opacity: 1; }
        }

        .float-slow { animation: float 12s infinite ease-in-out; }
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(2deg); }
        }

        .reveal-up {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .reveal-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Hero Specifics --- */
        .hero-video-container {
            mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
        }

        .ticker-wrap {
            width: 100%;
            overflow: hidden;
            border-top: 1px solid rgba(73, 54, 40, 0.1);
            border-bottom: 1px solid rgba(73, 54, 40, 0.1);
            padding: 15px 0;
        }

        .ticker {
            display: flex;
            white-space: nowrap;
            animation: ticker 30s linear infinite;
        }

        @keyframes ticker {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* --- Custom UI Components --- */
        .glass-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            transition: all 0.6s ease;
        }

        .glass-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-10px) rotate3d(1, 1, 0, 5deg);
        }

        .ritual-node {
            width: 12px; height: 12px;
            background: var(--clay);
            border-radius: 50%;
            position: relative;
        }

        .ritual-node::before {
            content: '';
            position: absolute;
            inset: -4px;
            border: 1px solid var(--clay);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(2.5); opacity: 0; }
        }

        @keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee {
  animation: marquee 20s linear infinite;
}


        .custom-cursor {
            width: 20px; height: 20px;
            border: 1px solid var(--clay);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 10000;
            transition: transform 0.1s ease;
        }
