/* ===========================================================
   KD THEME - contact.css
   =========================================================== */

/* ═══ CONTACT ══════════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--dimb);
  min-height: calc(100vh - 60px);
}

@media(max-width:900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-left,
.contact-right {
  background: var(--bg);
  padding: 8vh 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}

.contact-left .g {
  opacity: .4;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 20% 50%, black 30%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 80% at 20% 50%, black 30%, transparent 80%);
}

.contact-right .g {
  opacity: .3;
}

.contact-headline {
  font-family: var(--fd);
  font-size: clamp(3rem, 8vw, 11rem);
  line-height: .86;
  letter-spacing: .03em;
  color: var(--fg);
  position: relative;
  z-index: 1;
}

.contact-headline em,
.contact-headline strong {
  color: var(--acc);
  font-style: normal;
  font-weight: inherit;
}

.kd-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 1;
  max-width: 480px;
}

.kd-field {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.kd-field label {
  font-family: var(--fb);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--mut);
}

.kd-field input,
.kd-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--dimb);
  color: var(--fg);
  font-family: var(--fb);
  font-size: 1.15rem;
  font-weight: 300;
  padding: .7rem 0;
  outline: none;
  transition: border-color .3s;
  resize: none;
}

.kd-field input:focus,
.kd-field textarea:focus {
  border-bottom-color: var(--acc);
}

.kd-submit {
  font-family: var(--fb);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--acc);
  background: var(--bg);
  border: 1px solid var(--acc);
  padding: 1em 2.5em;
  cursor: none;
  align-self: flex-start;
  transition: background .3s, color .3s;
}

.kd-submit:hover,
.kd-submit.sent {
  background: var(--acc);
  color: var(--bg);
}

.contact-info {
  position: relative;
  z-index: 1;
}

.contact-info__label {
  font-family: var(--fb);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 1rem;
}

.contact-info__value {
  font-family: var(--fd);
  font-size: clamp(1.2rem, 2.5vw, 3.5rem);
  letter-spacing: .03em;
  color: var(--fg);
  display: block;
  margin-bottom: .4rem;
  transition: color .3s;
}

.contact-info__value:hover {
  color: var(--acc);
}

.contact-follow {
  position: relative;
  z-index: 1;
}

.contact-follow__label {
  font-family: var(--fd);
  font-size: clamp(1.5rem, 3vw, 4rem);
  letter-spacing: .04em;
  color: var(--fg);
  margin-bottom: 2rem;
}

.follow-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.follow-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--dim);
  transition: padding-left .35s var(--eout);
}

.follow-link:hover {
  padding-left: 1rem;
}

.follow-link__name {
  font-family: var(--fd);
  font-size: clamp(1.5rem, 3vw, 4rem);
  letter-spacing: .03em;
  color: var(--fg);
  transition: color .3s;
}

.follow-link:hover .follow-link__name {
  color: var(--acc);
}

.follow-link__arr {
  font-family: var(--fd);
  font-size: 2rem;
  color: var(--mut);
  transition: color .3s, transform .35s var(--eout);
}

.follow-link:hover .follow-link__arr {
  color: var(--acc);
  transform: translateX(6px);
