.contact-section{
  display: grid;
  grid-template-columns: .9fr .75fr .65fr;
  gap: 24px;
  align-items: stretch;
  padding-bottom: 0;
}

.team-photo{
  position: relative;
  min-height: 320px;
  border: 1px solid var(--soft-line);
  overflow: hidden;
  background: #ffffff;
}

.team-photo img{
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.team-copy h2{
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: .95;
}

.team-copy p,
.contact-copy p{
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.26;
}

.contact-copy{
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.contact-copy span,
.contact-socials > span{
  display: block;
  font-weight: 900;
  margin-bottom: 4px;
}

.contact-copy a{
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color 160ms ease, color 160ms ease;
}

.contact-copy a:hover{
  color: var(--rust);
  border-color: var(--rust);
}

.contact-socials{
  margin: 0 0 16px;
}

.contact-socials > span{
  margin-bottom: 10px;
}

.contact-social-icons{
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-social-icon{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--soft-line);
  border-radius: 0;
  background: #ffffff;
  color: var(--ink);
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.contact-social-icon:hover{
  transform: translateY(-2px);
  background: #ffffff;
  border-color: var(--line);
  color: var(--rust);
}

.small-mountains{
  margin: 20px 0 12px;
}

.small-mountains svg path{
  fill: none;
  stroke: var(--green);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signoff{
  margin-top: 12px !important;
  font-size: clamp(26px, 3.2vw, 40px) !important;
  line-height: .96 !important;
  font-style: italic;
  color: var(--ink) !important;
}

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

  .contact-copy{
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--line);
    padding-top: 20px;
  }
}

@media (max-width: 640px){
  .team-photo,
  .team-photo img{
    min-height: 260px;
  }

  .contact-copy{
    display: grid;
    justify-items: center;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }

  .contact-copy p{
    text-align: center;
  }

  .contact-copy span,
  .contact-socials > span{
    display: none;
  }

  .contact-copy a{
    text-align: center;
  }

  .contact-socials{
    display: grid;
    justify-items: center;
    margin: 4px 0 16px;
  }

  .contact-social-icons{
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .contact-social-icon{
    width: auto;
    height: auto;
    border: 0;
    background: transparent;
  }

  .contact-social-icon svg{
    width: 28px;
    height: 28px;
  }

  .contact-social-icon:hover{
    background: transparent;
    border-color: transparent;
  }

  .small-mountains,
  .signoff{
    display: none;
  }
}