        body {
            font-family: "EB Garamond", serif;
            background-color: #FDEDED;
            color: #333333;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        /* Fixed Side Section Logic */
        .fixed-layout {
            display: flex;
            flex-wrap: wrap;
        }
        .scroll-side { width: 50%; }
        .fixed-side {
            width: 50%;
            height: 100vh;
            position: sticky;
            top: 0;
            overflow: hidden;
        }

        /* Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .video-container {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .video-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            transform: translate(-50%, -50%);
            object-fit: cover;
            filter: brightness(0.5) contrast(1.1);
        }

        /* Nav styling */
        .nav-item {
            position: relative;
            cursor: pointer;
            transition: opacity 0.3s ease;
        }
        .nav-item::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -4px;
            left: 0;
            background: #DD9E59;
            transition: width 0.4s ease;
        }
        .nav-item:hover::after, .nav-item.active-link::after {
            width: 100%;
        }

        /* Glassmorphism card */
        .editorial-card {
            background: rgba(253, 237, 237, 0.92);
            backdrop-filter: blur(8px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.03);
        }

        .btn-ceramic {
            border: 1px solid #DD9E59;
            color: #DD9E59;
            padding: 1.2rem 3rem;
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 0.4em;
            transition: all 0.4s ease;
            display: inline-block;
            background: transparent;
        }
        .btn-ceramic:hover {
            background: #DD9E59;
            color: white;
            letter-spacing: 0.5em;
        }

        /* Hide Scrollbars */
        ::-webkit-scrollbar { width: 4px; }
        ::-webkit-scrollbar-track { background: #FDEDED; }
        ::-webkit-scrollbar-thumb { background: #DD9E59; }

        @media (max-width: 1024px) {
            .scroll-side, .fixed-side { width: 100%; position: relative; height: auto; }
            .fixed-side { height: 60vh; }
        }
