.site-footer {
  position: relative;
  overflow: hidden;
  background-color: var(--white);
  background-image: url('/assets/bg-texture.svg');
  background-repeat: repeat;
  background-size: clamp(280px, 38vw, 520px) auto;
  background-position: center top;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(0.9rem, 2.4vw, 1.6rem);
  min-height: clamp(220px, 28vw, 320px);
}

.site-footer__bloom {
  position: absolute;
  left: clamp(-19rem, -33vw, -11rem);
  bottom: clamp(-21rem, -37vw, -13rem);
  width: clamp(320px, 48vw, 520px);
  height: auto;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.site-footer__brand {
  position: relative;
  z-index: 1;
  justify-self: center;
  padding-left: clamp(2.5rem, 8vw, 6.5rem);
}

.site-footer__logo {
  display: block;
}

.site-footer__logo img {
  width: clamp(170px, 22vw, 250px);
  height: auto;
}

.site-footer__contact {
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  color: #fe70ac;
  margin-right: 0;
  padding-left: clamp(0.5rem, 2vw, 1.5rem);
}

.site-footer__title {
  margin: 0;
  font-size: clamp(1.35rem, 2.15vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer__social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: clamp(0.55rem, 1.15vw, 0.85rem);
  margin: clamp(0.55rem, 1.15vw, 0.8rem) 0 clamp(0.7rem, 1.35vw, 0.95rem);
  padding: 0;
  list-style: none;
}

.site-footer__social a {
  display: grid;
  place-items: center;
  color: #fe70ac;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-footer__social-link svg {
  width: clamp(24px, 3.3vw, 32px);
  height: clamp(24px, 3.3vw, 32px);
}

.site-footer__social a:hover {
  transform: translateY(-2px);
  opacity: 0.75;
}

.site-footer__tag {
  margin: 0 0 clamp(0.45rem, 1vw, 0.65rem);
  font-size: clamp(0.92rem, 1.45vw, 1.08rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer__details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.site-footer__phone,
.site-footer__email {
  color: #fe70ac;
  font-size: clamp(1.12rem, 1.8vw, 1.32rem);
  font-weight: 400;
  line-height: 1.45;
  text-decoration: none;
}

.site-footer__email {
  text-transform: lowercase;
}

.site-footer__phone:hover,
.site-footer__email:hover {
  opacity: 0.75;
}

@media (max-width: 760px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: clamp(260px, 72vw, 360px);
  }

  .site-footer__brand {
    justify-self: center;
    padding-left: 0;
  }

  .site-footer__logo img {
    width: clamp(155px, 46vw, 220px);
  }

  .site-footer__contact {
    justify-self: center;
    align-items: center;
    text-align: center;
    margin-right: 0;
    padding-left: 0;
  }

  .site-footer__social {
    justify-content: center;
  }

  .site-footer__details {
    align-items: center;
  }

  .site-footer__bloom {
    left: clamp(-13rem, -44vw, -7.5rem);
    bottom: clamp(-15rem, -48vw, -8.5rem);
    width: clamp(260px, 78vw, 400px);
  }
}
