/* ============================================================
   HolstLab — Футер
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

.hl-footer {
    background: #1d1715;
    color: #fff;
    font-family: 'Inter', sans-serif;
    margin-top: 24px;
    box-sizing: border-box;
}
.hl-footer *, .hl-footer *::before, .hl-footer *::after {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.hl-ft-inner {
    max-width: 1360px;
    margin: 0 auto;
    padding: 56px 32px 32px;
}

/* ---- Верхняя сетка ---- */
.hl-ft-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Бренд-колонка */
.hl-ft-brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    margin-bottom: 16px;
}
.hl-ft-brand-icon {
    width: 40px;
    height: 40px;
    background: var(--hl-brown, #B85C38);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hl-ft-brand-name {
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1;
}
.hl-ft-brand-text {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
    max-width: 320px;
    margin: 0 0 20px;
}
.hl-ft-socials { display: flex; gap: 10px; }
.hl-ft-social {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, transform 0.18s;
    text-decoration: none !important;
}
.hl-ft-social svg { fill: rgba(255,255,255,0.7); transition: fill 0.18s; width: 19px; height: 19px; }
.hl-ft-social:hover { background: var(--hl-brown, #B85C38); transform: translateY(-2px); }
.hl-ft-social:hover svg { fill: #fff; }

/* Колонки ссылок */
.hl-ft-col-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.4);
    margin: 0 0 18px;
}
.hl-ft-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.hl-ft-links a {
    font-size: 14.5px;
    color: rgba(255,255,255,0.72);
    text-decoration: none !important;
    transition: color 0.15s, padding-left 0.15s;
    display: inline-block;
}
.hl-ft-links a:hover { color: #fff; padding-left: 4px; }

/* Контакты */
.hl-ft-contact-item { margin-bottom: 18px; }
.hl-ft-contact-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 5px;
}
.hl-ft-contact-val {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none !important;
    transition: color 0.15s;
    display: inline-block;
}
a.hl-ft-contact-val:hover { color: var(--hl-light, #DC8A69); }
.hl-ft-contact-sub { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 3px; }

.hl-ft-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hl-brown, #B85C38);
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 13px 24px;
    border-radius: 100px;
    text-decoration: none !important;
    margin-top: 6px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.hl-ft-cta-btn:hover {
    background: #cf6a42;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(184,92,56,0.4);
    color: #fff !important;
}

/* ---- Нижняя полоса ---- */
.hl-ft-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 26px;
    flex-wrap: wrap;
}
.hl-ft-copy { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; }
.hl-ft-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.hl-ft-legal a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: none !important;
    transition: color 0.15s;
}
.hl-ft-legal a:hover { color: #fff; }

/* ---- Адаптив ---- */
@media (max-width: 980px) {
    .hl-ft-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
    .hl-ft-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
    .hl-ft-inner { padding: 40px 20px 28px; }
    .hl-ft-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
    .hl-ft-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
    .hl-ft-legal { gap: 14px; }
}
