.kd-footer {
  position: relative;
  overflow: hidden;
  padding: 12px 0 0;
  color: #222;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, .55), transparent 28%),
    linear-gradient(135deg, #eeeeee 0%, #dddddd 52%, #f4f4f4 100%);
}

.kd-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg,
      rgba(0, 0, 0, .035) 0,
      rgba(0, 0, 0, .035) 1px,
      transparent 1px,
      transparent 84px);
  pointer-events: none;
}

.kd-footer-shell {
  position: relative;
  z-index: 1;
}

.kd-footer-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 36px;
  align-items: start;
  padding-bottom: 10px;
}

.kd-footer-contact {
  padding-left: 26px;
  border-left: 1px solid rgba(0, 0, 0, .12);
}

.kd-footer-menu {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.kd-footer-menu .kd-footer-title {
  grid-column: 1 / -1;
}

.kd-footer-title {
  position: relative;
  margin: 0 0 8px;
  padding-bottom: 6px;
  color: #252525;
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}

.kd-footer-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44px;
  height: 2px;
  background: linear-gradient(to left, #b08a2e, rgba(0, 0, 0, .16), transparent);
}

.kd-contact-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 34px;
  gap: 10px;
  align-items: center;
  padding: 5px 0;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, .10);
}

.kd-contact-item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: linear-gradient(to left, #b08a2e, rgba(0, 0, 0, .35), transparent);
  transition: width .28s ease;
}

.kd-contact-text {
  text-align: right;
}

.kd-contact-text strong {
  display: block;
  margin-bottom: 1px;
  color: #b08a2e;
  font-size: 10.8px;
  font-weight: 900;
}

.kd-contact-text small {
  display: block;
  color: #222;
  font-size: 11.5px;
  line-height: 1.45;
  font-weight: 700;
}

.kd-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b08a2e;
  background: linear-gradient(145deg, rgba(255, 255, 255, .95), rgba(210, 210, 210, .62));
  border: 1px solid rgba(0, 0, 0, .10);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .10);
  transition: .28s cubic-bezier(.16, 1, .3, 1);
}

.kd-contact-icon i {
  font-size: 14px;
  transition: .28s cubic-bezier(.16, 1, .3, 1);
}

.kd-contact-item:hover::after {
  width: 100%;
}

.kd-contact-item:hover .kd-contact-icon {
  transform: translateX(-4px) rotate(-6deg) scale(1.04);
  color: #fff;
  background: linear-gradient(145deg, #b08a2e, #5d5d5d);
}

.kd-contact-item:hover .kd-contact-icon i {
  transform: rotate(12deg) scale(1.06);
}

.kd-footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px 22px;
}

.kd-footer-links a {
  position: relative;
  color: #222;
  text-decoration: none;
  font-size: 11.6px;
  font-weight: 700;
  padding: 4px 18px 4px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .10);
  transition: color .25s ease, padding .25s ease;
}

.kd-footer-links a::before {
  content: "‹";
  position: absolute;
  right: 0;
  top: 1px;
  color: #b08a2e;
  font-size: 19px;
  line-height: 1;
  transition: transform .25s ease;
}

.kd-footer-links a:hover {
  color: #b08a2e;
  padding-right: 24px;
}

.kd-footer-links a:hover::before {
  transform: translateX(-4px);
}

.kd-footer-social {
  margin-top: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  direction: ltr;
  padding-top: 2px;
}

.kd-footer-social a {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #333;
  text-decoration: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, .95), rgba(205, 205, 205, .72));
  border: 1px solid rgba(0, 0, 0, .10);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .10);
  transition: .28s ease;
}

.kd-footer-social a span {
  display: none;
}

.kd-footer-social a i {
  font-size: 15px;
  line-height: 1;
  color: #333;
  transition: .28s ease;
}

.kd-footer-social a:hover {
  transform: translateY(-3px) rotate(-6deg);
  background: linear-gradient(145deg, #b08a2e, #5c5c5c);
}

.kd-footer-social a:hover i {
  color: #fff;
  transform: scale(1.06);
}

.kd-footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, .12);
  padding: 6px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #333;
  font-size: 10.8px;
}

@media (max-width: 1000px) {
  .kd-footer-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .kd-footer-contact {
    padding-left: 0;
    border-left: none;
  }

  .kd-footer-menu {
    grid-template-columns: 1fr;
  }

  .kd-footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .kd-footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .kd-footer {
    padding-top: 10px;
  }

  .kd-footer-links {
    grid-template-columns: 1fr;
  }

  .kd-contact-item {
    grid-template-columns: 1fr 32px;
  }

  .kd-contact-icon {
    width: 30px;
    height: 30px;
  }

  .kd-footer-social {
    gap: 9px;
  }

  .kd-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}