
            /* ── Footer nav menu resets ── */
            #colophon .footer-nav {
                list-style: none;
                margin: 0;
                padding: 0;
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }
            #colophon .footer-nav li a {
                font-family: "Monument Grotesk", sans-serif;
                font-size: 0.9375rem; /* 15px */
                line-height: 1.5;
                color: rgba(249,249,250,0.70); /* Increase contrast */
                transition: color 0.25s ease, transform 0.25s ease;
                display: inline-block;
            }
            #colophon .footer-nav li a:hover {
                color: rgba(249,249,250,1);
                transform: translateX(4px);
            }
            /* ── Social icons ── */
            .footer-social-link {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                color: rgba(249,249,250,0.70);
                border: 1px solid rgba(249,249,250,0.15);
                transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
            }
            .footer-social-link:hover {
                color: rgba(249,249,250,1);
                border-color: rgba(249,249,250,0.50);
                background-color: rgba(249,249,250,0.05);
                transform: translateY(-2px);
            }
            .footer-custom-logo img {
                max-height: 40px;
                width: auto;
                filter: brightness(0) invert(1);
            }
        
