/* ── Footer ──────────────────────────────────────────────────────────── */
.footer {
  background: var(--brand-dark);
  color: rgba(255,255,255,.75);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* ── Брендовая колонка ───────────────────────────────────────────────── */
.footer-brand .logo-word { color: var(--white); }
.footer-brand .logo-word em { color: var(--gold-light); }
.footer-brand .logo-dot { background: var(--gold-light); }

.footer-brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.50);
  margin-top: 18px;
  line-height: 1.75;
  max-width: 280px;
}

/* ── Соцсети ─────────────────────────────────────────────────────────── */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.footer-social {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.footer-social:hover { background: var(--gold); }

.footer-social svg {
  width: 17px;
  height: 17px;
  color: rgba(255,255,255,.70);
}

.footer-social:hover svg { color: var(--white); }

/* ── Колонки ссылок ──────────────────────────────────────────────────── */
.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 22px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 11px; }

.footer-col a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
  display: inline-block;
}

.footer-col a:hover { color: var(--white); }

/* ── Footer Bottom ───────────────────────────────────────────────────── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 24px 0;
  font-size: .8125rem;
  color: rgba(255,255,255,.28);
}

.footer-bottom a {
  color: rgba(255,255,255,.28);
  transition: color var(--transition);
}

.footer-bottom a:hover { color: rgba(255,255,255,.65); }

.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

/* ── Адаптив ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}
