 /* --- BASE STYLES (for Desktops) --- */
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #ffffff;
            color: #333;
            margin: 0;
            /* Prevents horizontal scrollbars caused by oversized elements */
            overflow-x: hidden;
        }

        /* Loader Styling (Unchanged) */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #ffffff;
            transition: opacity 0.75s, visibility 0.75s;
            z-index: 9999;
        }
        .loader--hidden { opacity: 0; visibility: hidden; }
        .loader img {
            width: 100px;
            animation: stutter-zoom 2.5s infinite ease-in-out;
        }
        @keyframes stutter-zoom {
            0% { transform: scale(1); opacity: 1; }
            20% { transform: scale(0.6); opacity: 0.7; }
            35% { transform: scale(0.75); }
            50% { transform: scale(0.65); }
            65% { transform: scale(0.8); }
            100% { transform: scale(1); opacity: 1; }
        }

        /* Content Styling (Unchanged) */
        .content {
            padding: 40px;
            text-align: center;
            opacity: 0;
            animation: fadeInContent 1s ease-in-out forwards;
            animation-delay: 3.5s;
        }
        @keyframes fadeInContent { to { opacity: 1; } }

        .brand-title {
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #1a1a1a;
            margin: 40px 0 10px 0;
        }
        
        .tagline {
            font-size: 1.1rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #888;
            margin-bottom: 40px;
        }

        nav a {
            margin: 0 15px;
            font-size: 1rem;
            color: #007bff;
            text-decoration: none;
            padding-bottom: 5px;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s;
            cursor: pointer;
        }
        nav a:hover { border-color: #007bff; }

        /* --- RESPONSIVE ADJUSTMENTS --- */
        
        /* For Tablets (Screens up to 768px wide) */
        @media (max-width: 768px) {
            .brand-title {
                font-size: 3.5rem; /* Reduce title size */
                letter-spacing: 2px;
            }
            .tagline {
                font-size: 1rem;
            }
            .content {
                padding: 30px; /* Reduce side padding */
            }
        }
        
        /* For Mobile Phones (Screens up to 480px wide) */
        @media (max-width: 480px) {
            .brand-title {
                font-size: 2.8rem; /* Further reduce title size */
                letter-spacing: 1px;
            }
            .tagline {
                font-size: 0.9rem;
                letter-spacing: 2px;
            }
            /* Stack navigation links vertically */
            nav {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            nav a {
                margin: 15px 0; /* Add vertical spacing between links */
                font-size: 1.1rem; /* Make links slightly larger for easy tapping */
            }
            .content {
                padding: 20px 15px; /* Further reduce padding */
            }
        }