/* ═══════════════════════════════════════
   FOOTER — подвал сайта
   ═══════════════════════════════════════ */

.footer {
  background: var(--dark);
  padding: 60px 48px 40px;
}

.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Бренд / лого ── */
.footer__logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

.footer__logo span {
  color: var(--green);
}

.footer__tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 16px;
  line-height: 1.65;
  max-width: 340px;
}

/* ── Навигация ── */
.footer__nav-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.footer__nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-list a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--duration);
}

.footer__nav-list a:hover {
  color: var(--green);
}

/* ── Нижняя строка ── */
.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer__privacy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color var(--duration);
}

.footer__privacy:hover {
  color: var(--green);
}
