.contact {
  display: grid;
  grid-template-columns: 3fr 1.5fr;
  min-height: 100dvh;
  background: var(--bg);
}

.contact__media {
  position: sticky;
  top: 0;
  height: 100dvh;
  overflow: hidden;
  background: var(--surface);
}

.contact__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
  min-height: 100dvh;
  padding: clamp(5.5rem, 9vw, 7rem) clamp(1.25rem, 2.4vw, 2.5rem)
    clamp(2.5rem, 6vw, 3.5rem);
}

.contact__intro {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__title {
  font-size: clamp(1.45rem, 1.7vw, 1.7rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.96);
}

.contact__lead {
  font-size: clamp(0.88rem, 0.95vw, 0.95rem);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.75rem 0.9rem 0.85rem;
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.08);
}

.contact__label {
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.45);
}

.contact__input,
.contact__textarea {
  width: 100%;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.4;
  resize: none;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.contact__textarea {
  min-height: 7.5rem;
}

.contact__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.15rem;
  padding: 0.95rem 0.9rem;
  border: none;
  border-radius: 0.55rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  cursor: pointer;
}

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

  .contact__media {
    position: relative;
    height: 100dvh;
  }

  .contact__copy {
    min-height: auto;
    justify-content: flex-start;
    gap: 1.75rem;
    padding: 2.5rem 1.25rem 2.5rem;
  }

  .contact__form {
    margin-top: 0;
  }

  .contact__title {
    font-size: clamp(1.4rem, 5.5vw, 1.65rem);
  }

  .contact__lead {
    font-size: 0.92rem;
  }
}
