
        /* Chrome iOS Dynamic Viewport Fix */
        html, body {
            width: 100%;
            max-width: 100%;
        }
        
        body {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            width: 100%;
            max-width: 100%;
            margin: 0;
            padding: 0;
        }
        
        * {
            max-width: 100%;
        }
        
        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        /* Executive Animation Style: Subtle, Opacity/Transform only */
        /* Luxury principle: slower is more luxurious (0.8-1.2s) */
        .fade-in-up {
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            opacity: 0;
            transform: translateY(20px);
        }

        .delay-100 { animation-delay: 0.1s; }
        .delay-200 { animation-delay: 0.2s; }
        .delay-300 { animation-delay: 0.3s; }
        .delay-400 { animation-delay: 0.4s; }

        /* Mobile menu stagger animation */
        .mobile-menu-item {
            transition: opacity 0.4s ease, transform 0.4s ease, padding-left 0.4s ease, color 0.4s ease;
            transform: translateX(20px);
        }
        .mobile-menu-item.visible {
            opacity: 1;
            transform: translateX(0);
        }
        .mobile-menu-item:nth-child(1) { transition-delay: 0ms; }
        .mobile-menu-item:nth-child(2) { transition-delay: 100ms; }
        .mobile-menu-item:nth-child(3) { transition-delay: 200ms; }
        .mobile-menu-item:nth-child(4) { transition-delay: 300ms; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slide {
            transition: opacity 0.6s ease-in-out, visibility 0.6s;
        }
        
        /* Custom Selection Color */
        ::selection {
            background: #E4C7C3; /* Soft Blush Pink */
            color: #141414;
        }

        /* Modal Select Dropdown Styling removed (quote modal removed) */

        /* Typography Hierarchy Classes */
        .typo-hero {
            font-family: 'Playfair Display', serif;
            font-weight: 300;
            font-size: 48px;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }
        @media (min-width: 768px) {
            .typo-hero {
                font-size: 72px;
            }
        }

        .typo-section {
            font-family: 'Playfair Display', serif;
            font-weight: 400;
            font-size: 36px;
            letter-spacing: -0.01em;
            line-height: 1.1;
        }
        @media (min-width: 768px) {
            .typo-section {
                font-size: 56px;
            }
        }

        .typo-subhead {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 20px;
            letter-spacing: 0.02em;
            line-height: 1.1;
        }
        @media (min-width: 768px) {
            .typo-subhead {
                font-size: 24px;
            }
        }

        .typo-body {
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            font-size: 16px;
            letter-spacing: 0.01em;
            line-height: 1.8;
        }
        @media (min-width: 768px) {
            .typo-body {
                font-size: 18px;
            }
        }

        .typo-small {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 14px;
            letter-spacing: 0.03em;
            line-height: 1.6;
            text-transform: uppercase;
        }

        /* Ensure minimum touch target sizes - Luxury: 56px minimum */
        button, a, input, select, textarea {
            min-height: 56px;
        }

        /* Override min-height for slider dots */
        .slider-dot {
            min-height: auto !important;
            min-width: auto !important;
        }

        /* Prevent iOS zoom on input focus */
        input, select, textarea {
            font-size: 16px !important;
        }

        @media (max-width: 768px) {
            input, select, textarea {
                font-size: 16px !important;
            }
        }

        /* iPhone safe area fix for footer */
        footer {
            padding-bottom: max(0px, env(safe-area-inset-bottom));
        }

        html, body {
            background-color: #141414 !important;
            width: 100%;
            max-width: 100%;
            margin: 0;
            padding: 0;
        }

        /* Landscape mode: proper spacing below fixed header */
        @media (orientation: landscape) and (max-height: 800px) {
            #hero {
                padding-top: 180px;
                min-height: calc(100dvh + 180px);
            }
        }
        
        /* Chrome iOS - use dynamic viewport height to avoid white bars */
        #hero {
            height: 100dvh;
            min-height: 100dvh;
        }
        
        /* Chrome iOS specific: prevent horizontal overflow from dynamic viewport */
        @supports (height: 100dvh) {
            #hero {
                height: 100dvh;
                min-height: 100dvh;
            }
        }
        
        /* Ensure no overflow on any full-width sections */
        section {
            overflow-x: hidden;
        }
        
/* Marquee animation */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-track {
    animation: marquee 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

/* Force width constraint to prevent Chrome iOS address bar resize issues */
@media (max-width: 1024px) {
    body {
        width: 100vw;
        overflow-x: hidden;
    }
}