.site-footer {
  display: block;
  padding: 0;
  border-top: 1px solid rgba(255, 31, 31, 0.45);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 31, 31, 0.08), transparent 25%),
    #030303;
  color: #fff;
  text-align: left;
}

.site-footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.75fr));
  gap: clamp(44px, 6vw, 88px);
  padding-top: 76px;
  padding-bottom: 68px;
}

.site-footer section {
  padding: 0;
}

.site-footer-brand {
  max-width: 390px;
}

.site-footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.site-footer-brand > p {
  max-width: 370px;
  color: #b6b6b6;
  font-size: 0.96rem;
  line-height: 1.75;
}

.site-footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  min-width: 205px;
  margin-top: 27px;
  padding: 14px 18px;
  border: 1px solid var(--red, #ff1f1f);
  border-radius: 8px;
  background: var(--red, #ff1f1f);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    translate 0.25s ease;
}

.site-footer-cta:hover {
  background: transparent;
  color: var(--red, #ff1f1f);
  translate: 0 -2px;
}

.site-footer-cta span {
  font-size: 1.2rem;
}

.site-footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.site-footer nav.site-footer-column {
  position: static;
  top: auto;
  z-index: auto;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.site-footer .site-footer-column h2 {
  display: block;
  margin: 5px 0 12px;
  color: var(--red, #ff1f1f);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer .site-footer-column h2::after {
  display: none;
}

.site-footer-column > a {
  position: relative;
  color: #d1d1d1;
  font-size: 0.92rem;
  line-height: 1.45;
  transition:
    color 0.22s ease,
    translate 0.22s ease;
}

.site-footer-column > a:not(.site-footer-location)::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--red, #ff1f1f);
  transition: width 0.22s ease;
}

.site-footer-column > a:hover {
  color: #fff;
  translate: 3px 0;
}

.site-footer-column > a:not(.site-footer-location):hover::before {
  width: 100%;
}

.site-footer-contact {
  min-width: 0;
}

.site-footer-contact > a {
  overflow-wrap: anywhere;
}

.site-footer-location {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-bottom: 5px;
  padding: 14px;
  border: 1px solid rgba(255, 31, 31, 0.24);
  border-radius: 10px;
  background: rgba(255, 31, 31, 0.055);
}

.site-footer-location > span:first-child {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red, #ff1f1f);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.site-footer-location strong,
.site-footer-location small {
  display: block;
}

.site-footer-location strong {
  color: #fff;
  font-size: 0.86rem;
}

.site-footer-location small {
  margin-top: 2px;
  color: #8f8f8f;
  font-size: 0.72rem;
}

.site-footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 11px;
}

.site-footer-socials a {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  transition:
    border-color 0.22s ease,
    background 0.22s ease,
    translate 0.22s ease;
}

.site-footer-socials a:hover {
  border-color: var(--red, #ff1f1f);
  background: rgba(255, 31, 31, 0.13);
  translate: 0 -3px;
}

.site-footer-socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.site-footer-socials a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.site-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.015);
}

.site-footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #727272;
  font-size: 0.75rem;
}

@media (max-width: 1050px) {
  .site-footer-main {
    grid-template-columns: minmax(260px, 1.2fr) repeat(2, 1fr);
  }

  .site-footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 760px) {
  .site-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 46px 28px;
    padding-top: 60px;
    padding-bottom: 52px;
  }

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

  .site-footer-contact {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .site-footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .site-footer-brand,
  .site-footer-contact {
    grid-column: auto;
  }

  .site-footer-cta {
    width: 100%;
  }

  .site-footer-bottom .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}
