.contact-section{
  display: grid;
  grid-template-columns: 1.08fr .72fr .55fr;
  gap: 24px;
  align-items: stretch;
  padding-bottom: 0;
}

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

.team-photo img{
  width: 100%;
  height: 100%;
  min-height: 340px;
  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 18px;
}

.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);
}

/* Newsletter */
.contact-newsletter{
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--soft-line);
}

.contact-newsletter h3{
  margin: 0 0 8px;
  font-size: 22px;
  line-height: .98;
  letter-spacing: -.045em;
}

.contact-newsletter p{
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.25;
  color: var(--muted);
}

.newsletter-form{
  display: grid;
  gap: 9px;
}

.newsletter-form label{
  display: block;
  font-weight: 900;
  font-size: 14px;
}

.newsletter-form__row{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.newsletter-form input[type="email"]{
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #ffffff;
  color: var(--ink);
  padding: 10px 10px;
  font-size: 15px;
  font-weight: 700;
}

.newsletter-form input[type="email"]::placeholder{
  color: var(--muted);
}

.newsletter-form button{
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--green);
  color: #ffffff;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, opacity 160ms ease;
}

.newsletter-form button:hover{
  transform: translateY(-2px);
}

.newsletter-form button:disabled{
  cursor: default;
  opacity: .78;
  transform: none;
}

.newsletter-success{
  margin: 2px 0 0 !important;
  padding: 10px 11px;
  border: 1px solid rgba(52,66,53,.38);
  background: rgba(52,66,53,.1);
  color: var(--green) !important;
  font-size: 13px !important;
  line-height: 1.28 !important;
  font-weight: 900;
}

.newsletter-honeypot{
  position: absolute;
  left: -5000px;
}

.newsletter-hidden-frame{
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.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;
  }

  .team-photo,
  .team-photo img{
    min-height: 320px;
  }

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

  .newsletter-form__row{
    max-width: 520px;
  }
}

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

  .team-copy{
    text-align: left;
  }

  .contact-newsletter{
    width: 100%;
    max-width: 420px;
    margin-top: 18px;
    padding-top: 18px;
    text-align: left;
  }

  .contact-newsletter h3{
    font-size: 21px;
  }

  .contact-newsletter p{
    font-size: 14px;
  }

  .newsletter-form label{
    font-size: 13px;
  }

  .newsletter-form__row{
    width: 100%;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button{
    width: 100%;
  }

  .newsletter-success{
    text-align: left;
  }

  .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 18px;
  }

  .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;
  }
}