.footer {
  /* margin-top: 150px; */
  position: relative;
  background: var(--accent-black);
  color: var(--accent-white);
  padding: 90px 0 40px;
  overflow: hidden;
}

/* Мягкие золотые блики */
.footer::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 15% 20%, rgba(222, 188, 115, 0.016), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(222, 188, 115, 0.016), transparent 50%);
  pointer-events: none;
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* Заголовки колонок */
.footer__title {
  margin-bottom: 24px;
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

/* Текст */
.footer__text {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 254, 254, 0.8);
}

/* Ссылки */
.footer__link {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255, 254, 254, 0.85);
  text-decoration: none;
  transition: 0.25s ease;
  position: relative;
  padding-left: 14px;
}

.footer__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
  opacity: 0.7;
}

.footer__link:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}

.footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Нижняя полоса */
.footer__bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(222, 188, 115, 0.15);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 254, 254, 0.5);
}

/* ====== Адаптация ====== */

/* <= 1200px */
@media (max-width: 1200px) {
  .footer__inner {
    gap: 40px;
  }
}

/* <= 1000px */
@media (max-width: 1000px) {
  .footer__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }
}

/* <= 800px */
@media (max-width: 800px) {
  .footer {
    padding: 70px 0 30px;
    /* margin-top: 100px; */
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .footer__title {
    text-align: center;
    margin-bottom: 16px;
  }
  
}

/* <= 600px */
@media (max-width: 600px) {
  .footer {
    padding: 50px 0 24px;
    /* margin-top: 70px; */
  }

  .footer__link,
  .footer__text {
    font-size: 13px;
  }

  .footer__bottom {
    margin-top: 40px;
    font-size: 12px;
  }
}




