.contact-footer {
  width: 100%;
  box-sizing: border-box;
  margin-top: clamp(34px, 6vw, 76px);
  padding: 24px 16px;
  background: linear-gradient(135deg, rgb(9, 45, 24), rgb(40, 52, 24));
  border-top: 3px solid rgb(250, 251, 249);
  box-shadow: 0 -14px 34px rgba(0, 0, 0, 0.22);
  color: rgb(250, 251, 249);
  font-family: Garamond, Georgia, serif;
}

.contact-footer__inner {
  width: min(920px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 34px);
  text-align: left;
}

.contact-footer__photo {
  width: clamp(92px, 16vw, 136px);
  height: clamp(92px, 16vw, 136px);
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 4px solid rgb(238, 232, 197);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.contact-footer__eyebrow {
  margin: 0 0 6px;
  color: rgb(238, 232, 197);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-footer__name {
  margin: 0 0 8px;
  color: rgb(250, 251, 249);
  font-family: "Palace Script MT", "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-size: clamp(42px, 7vw, 64px);
  line-height: 1;
}

.contact-footer__text {
  margin: 0;
  color: rgba(250, 251, 249, 0.88);
  font-size: clamp(18px, 2.5vw, 23px);
  line-height: 1.35;
}

.contact-footer__phone,
.contact-footer__email {
  color: rgb(250, 251, 249);
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
}

.contact-footer__phone:hover,
.contact-footer__email:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 620px) {
  .contact-footer {
    margin-top: 42px;
  }

  .contact-footer__inner {
    flex-direction: column;
    text-align: center;
  }
}
