.site-footer {
  --romix-footer-max: 1200px;
  --romix-footer-pink-strong: #ff3f8e;
  --romix-footer-pink-main: #ff5fa3;
  margin-top: clamp(24px, 4vw, 44px);
  background: linear-gradient(180deg, #111a2a 0%, #0c1320 100%);
  color: #ffffff;
  font-family: "Manrope", sans-serif;
}

.site-footer,
.site-footer *,
.site-footer *::before,
.site-footer *::after {
  box-sizing: border-box;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.footer-shell {
  width: min(var(--romix-footer-max), calc(100% - clamp(20px, 4vw, 56px)));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px) 0 24px;
  display: grid;
  gap: 26px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(0, 0.78fr));
  gap: 32px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 22px;
  align-content: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.footer-logo-copy {
  display: grid;
  gap: 4px;
}

.footer-logo-copy strong {
  font-family: "Outfit", sans-serif;
  font-size: 1.36rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.footer-logo-copy span {
  font-family: "Outfit", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.footer-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
}

.footer-description {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.94rem;
  line-height: 1.7;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.74);
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  line-height: 1.4;
}

.footer-contact-item--link {
  transition: color 0.2s ease;
}

.footer-contact-item--link:hover {
  color: #ffffff;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--romix-footer-pink-main);
}

.footer-contact-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.18);
}

.footer-column {
  display: grid;
  gap: 16px;
  align-content: start;
}

.footer-column h4 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--romix-footer-pink-main);
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-socials a:hover {
  background: var(--romix-footer-pink-strong);
  color: #ffffff;
  border-color: var(--romix-footer-pink-strong);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-contact-divider {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
