
        /* ===== ОСНОВНОЙ ФУТЕР ===== */
        .footer {
            /*background-color: #1e2b26;*/  
            background-color: #333333;   
            color: #dbd5cd;
            padding: 3rem 2rem 2rem;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .footer__container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer__columns {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 2rem 1.5rem;
            margin-bottom: 3rem;
        }

        /* каждая колонка */
        .footer__col {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 0.6rem;
        }

        .footer__col h4 {
            /*color: #e5d6c0;*/ 
            color: #959595;          
            font-weight: 600;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            margin-bottom: 0.5rem;
            border-bottom: 1px solid rgba(200, 180, 150, 0.2);
            padding-bottom: 0.5rem;
            width: 100%;
        }

        .footer__link {
            color: #b9aea2;
            text-decoration: none;
            transition: color 0.2s ease;
            font-weight: 400;
            font-size: 0.95rem;
        }

        .footer__link:hover {
            color: #e2c7a9;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .footer__info {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(210, 185, 155, 0.2);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 1rem 2rem;
            /*color: #a59b8f;*/
			color: #7c7c7c;
            font-size: 0.9rem;
        }

        .footer__info a {
            color: #cbbcaa;
            text-decoration: none;
        }
        .footer__info a:hover {
            text-decoration: underline;
            color: #e0cfbb;
        }

        .footer__copyright {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            align-items: center;
        }

        .footer__copyright span {
            white-space: nowrap;
        }

        .footer__central-office {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .footer__central-office strong {
            /*color: #d8c9b6;*/
			color: #959595;
            font-weight: 500;
        }

        /* мобильная версия — планшеты и ниже */
        @media screen and (max-width: 1024px) {
            .footer__columns {
                grid-template-columns: repeat(3, 1fr);  
                gap: 2rem;
            }
        }

        @media screen and (max-width: 768px) {
            .footer {
                padding: 2.5rem 1.5rem 1.5rem;
            }

            .footer__columns {
                grid-template-columns: repeat(2, 1fr);  
                gap: 2rem 1.2rem;
            }

            .footer__info {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .footer__copyright {
                gap: 1rem;
                row-gap: 0.5rem;
            }

            .footer__central-office {
                width: 100%;
                justify-content: space-between;
            }
        }

        @media screen and (max-width: 480px) {
            .footer {
                padding: 2rem 1rem 1.2rem;
            }

            .footer__columns {
                grid-template-columns: 1fr;  
                gap: 1.8rem;
            }

            .footer__col h4 {
                font-size: 1.05rem;
                margin-bottom: 0.25rem;
            }

            .footer__link {
                font-size: 1rem;
                padding: 0.1rem 0;
            }

            .footer__info {
                font-size: 0.85rem;
            }

            .footer__copyright {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.3rem;
            }

            .footer__central-office {
                flex-wrap: wrap;
                gap: 0.3rem;
            }
        }

        .dot-separator {
            color: #5f6b64;
            padding: 0 0.3rem;
            user-select: none;
        }

        .copyright-message {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
        }
        .copyright-message::before {
            content: "©";
            font-size: 1rem;
        }