/* Подвал сайта — общий компонент для всех страниц.
   Разметка — footer/footer.html, подстановка года и маршрутов — footer/footer.js.
   Переменные цветов (--brown, --gold, --ivory) задаёт сама страница. */

.site-footer {
    background: var(--brown); color: var(--ivory);
    padding: 64px 0 30px;
    font-family: 'Lora', serif;
}
.site-footer .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Логотип · Контакты · Маршруты */
.footer-inner {
    display: grid; grid-template-columns: 1.6fr 1.2fr 1fr;
    gap: 48px; margin-bottom: 48px;
}
.footer-logo { text-align: center; }
.footer-logo .logo { display: inline-flex; justify-content: center; }
.footer-logo .logo img { width: 150px; height: auto; }
.footer-tagline {
    margin-top: 14px;
    font-size: 14px; color: rgba(250,247,242,.55); line-height: 1.75;
    text-align: center;
}

.footer-col-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2.5px;
    color: var(--gold); margin-bottom: 18px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
    font-size: 14px; color: rgba(250,247,242,.65);
    text-decoration: none; transition: color .2s;
}
.footer-links a:hover { color: var(--ivory); }

.footer-contacts { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-contact {
    display: flex; align-items: center; gap: 9px;
    font-size: 14px; color: rgba(250,247,242,.65);
    overflow-wrap: anywhere;
}
.footer-contact svg { color: var(--gold); flex-shrink: 0; }
.footer-contact a { color: rgba(250,247,242,.65); text-decoration: none; transition: color .2s; }
.footer-contact a:hover { color: var(--ivory); }

hr.footer-hr { border: none; border-top: 1px solid rgba(184,151,58,.2); margin-bottom: 22px; }
.footer-bottom {
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-copy {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; color: rgba(250,247,242,.35);
}
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px; color: rgba(250,247,242,.35);
    text-decoration: none; transition: color .2s;
}
.footer-legal a:hover { color: rgba(250,247,242,.65); }

@media (max-width: 1199px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-inner > .footer-logo { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
    /* на мобильном порядок сверху вниз: логотип, контакты, маршруты */
    .footer-inner { grid-template-columns: 1fr; gap: 36px; }
    .footer-inner > .footer-logo { grid-column: auto; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}
