        :root {
            --coffee: #2C241E;
            --gold: #C5A059;
            --off-white: #F9F8F6;
            --accent: #E5E1DA;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--off-white);
            color: var(--coffee);
            line-height: 1.7;
            overflow-x: hidden;
        }

        .heading-serif { font-family: 'Playfair Display', serif; }
        .heading-sans { font-family: 'Montserrat', sans-serif; }

        /* Navigation Transitions */
        nav { transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
        nav.scrolled {
            background: rgba(249, 248, 246, 0.95);
            backdrop-filter: blur(10px);
            padding-top: 1rem;
            padding-bottom: 1rem;
            box-shadow: 0 4px 30px rgba(0,0,0,0.03);
        }

        /* Responsive Layout Utilities */
        .section-padding { padding: 8rem 1.5rem; }
        @media (min-width: 1024px) { .section-padding { padding: 14rem 4rem; } }

        /* Reveal Animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Buttons */
        .btn-luxury {
            position: relative;
            padding: 1.2rem 3rem;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.3em;
            border: 1px solid var(--coffee);
            background: transparent;
            transition: all 0.4s ease;
            overflow: hidden;
            z-index: 1;
            display: inline-block;
        }
        .btn-luxury:hover { color: white; border-color: var(--coffee); }
        .btn-luxury::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: var(--coffee);
            transition: left 0.4s ease;
            z-index: -1;
        }
        .btn-luxury:hover::before { left: 0; }

        /* Image Containers */
        .img-zoom-container { overflow: hidden; position: relative; }
        .img-zoom-container img { transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1); }
        .img-zoom-container:hover img { transform: scale(1.12); }

        .hide { display: none !important; }

        /* Drawer Transition */
        .drawer {
            transform: translateX(100%);
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .drawer.open { transform: translateX(0); }

        .content-width { max-width: 1600px; margin: 0 auto; }

        /* Vertical Text */
        .vertical-text {
            writing-mode: vertical-rl;
            text-orientation: mixed;
        }

        /* Parallax Placeholders */
        .parallax-bg {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
    