.contacts {
  padding: 80px 0;
}

.contacts-content {
  display: grid;
  grid-template-columns: 384px 1fr;
  gap: 24px;
  align-items: start;
}

.contact-info {
  background: #ffffff;
  border: 0.5px solid #dadada;
  border-radius: 12px;
  padding: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: "Poiret One", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.17;
  color: #050505;
}

.contact-item:last-of-type {
  margin-bottom: 32px;
}

.contact-item svg {
  width: 24px;
  height: 24px;
  color: #050505;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  color: #050505;
  transition: all 0.3s ease;
  background: rgba(176, 134, 74, 1);
}

.social-link:hover {
  color: #b0864a;
  transform: translateY(-2px);
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .contacts {
    padding: 60px 0;
  }

  .contacts-content {
    grid-template-columns: 320px 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .contacts {
    padding: 40px 0;
  }

  .contacts-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-info {
    padding: 20px;
  }

  .contact-item {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .contact-item:last-of-type {
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .contact-info {
    padding: 16px;
  }

  .contact-item {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .contact-item:last-of-type {
    margin-bottom: 20px;
  }

  .contact-map {
    height: 200px;
  }
}
