.headcore-footer {
  background-color: #000000;
  color: #ffffff;
  padding: 6rem 0 3rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.headcore-footer__container {
  max-width: var(--container-max, 1400px);
  margin: 0 auto;
  padding: 0 var(--container-padding, clamp(1.5rem, 4vw, 3rem));
}

.headcore-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 4rem;
  align-items: start;
}

.headcore-footer__column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.headcore-footer__column--identity {
  gap: 1.5rem;
  position: relative;
}

.headcore-footer__column--contacts {
  padding-top: 100px;
}

.headcore-footer__column--location {
  padding-top: 100px;
}

.headcore-footer__logo {
  position: absolute;
  top: 0;
  margin-bottom: 0;
}

.headcore-footer__logo img {
  height: auto;
  max-height: 50px;
  width: auto;
  display: block;
}

.headcore-footer__description {
  font-size: 0.875rem;
  color: #e0e0e0 !important;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 100px;
}

.headcore-footer .headcore-footer__description,
.headcore-footer .headcore-footer__description p,
.headcore-footer .headcore-footer__description span,
.headcore-footer .headcore-footer__description div,
.headcore-footer .headcore-footer__description strong,
.headcore-footer .headcore-footer__description em,
.headcore-footer .headcore-footer__description * {
  color: #e0e0e0 !important;
}

.headcore-footer__copyright-wrapper {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.headcore-footer__copyright {
  font-size: 0.875rem;
  color: #999999;
  line-height: 1.5;
}

.headcore-footer__column-title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1rem 0;
  color: #ffffff;
}

.headcore-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.headcore-footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.headcore-footer__contact-label {
  font-size: 0.75rem;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.headcore-footer__contact-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.2s ease;
}

.headcore-footer__contact-link:hover {
  color: #FFBE00;
}

.headcore-footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.headcore-footer__social-link {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.headcore-footer__social-link:hover {
  color: #FFBE00;
}

.headcore-footer__social-link svg {
  width: 20px;
  height: 20px;
}

.headcore-footer__location-item {
  margin-bottom: 2rem;
}

.headcore-footer__location-item:last-child {
  margin-bottom: 0;
}

.headcore-footer__address {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.headcore-footer__address-line {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #ffffff;
}

.headcore-footer__address-line a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.headcore-footer__address-line a:hover {
  color: #FFBE00;
}

@media (max-width: 768px) {
  .headcore-footer {
    padding: 3rem 0 2rem;
  }

  .headcore-footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .headcore-footer__column {
    gap: 1.25rem;
  }

  .headcore-footer__column--identity {
    gap: 1.25rem;
  }

  .headcore-footer__column--contacts,
  .headcore-footer__column--location {
    padding-top: 0;
  }

  .headcore-footer__copyright-wrapper {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
}

