.site-footer {
  position: relative;
  z-index: 40;
  width: 100%;
  overflow: hidden;
  border-top: 2px solid #c0a971;
  background: var(--color-brand-accent);
  color: #fff;
}

.site-footer__inner {
  display: flex;
  width: min(1290px, calc(100% - 96px));
  margin: 0 auto;
  padding: 144px 0;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.site-footer__logo {
  display: inline-flex;
  width: min(367px, 78vw);
  height: 60px;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
}

.site-footer__logo img {
  display: block;
  width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.site-footer__logo span {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: var(--fw-semibold);
  line-height: 1;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.site-footer__social-link {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-accent);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__social-link:hover {
  color: #fff;
  transform: translateY(-1px);
}

.site-footer__social-link svg {
  width: 24px;
  height: 24px;
}

.site-footer__contact-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.site-footer__contact-card {
  display: flex;
  min-height: 185px;
  min-width: 0;
  padding: 24px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  border: 1px solid var(--color-border);
  color: inherit;
  text-align: center;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

a.site-footer__contact-card:hover {
  border-color: var(--color-gold-accent);
  background: rgba(255, 255, 255, 0.04);
}

.site-footer__contact-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  margin-bottom: 4px;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 50%;
  color: #fff;
}

.site-footer__contact-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer__contact-label {
  color: #fff;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  line-height: var(--lh-body);
}

.site-footer__contact-value {
  color: var(--color-border-light);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
}

.site-footer__practice {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.site-footer__practice-title {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--fs-h6);
  font-weight: var(--fw-medium);
  line-height: 1.3;
  text-align: center;
}

.site-footer__practice-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 48px;
}

.site-footer__practice-link {
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: var(--fw-semibold);
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__practice-link:hover {
  color: var(--color-gold-accent);
}

.site-footer__bar {
  display: flex;
  min-height: 53px;
  align-items: center;
  justify-content: center;
  gap: 16px 28px;
  border-top: 1px solid #c0a971;
  padding: 14px 48px;
  flex-wrap: wrap;
}

.site-footer__bar p {
  margin: 0;
  color: var(--color-border-light);
  font-family: var(--font-body);
  font-size: 13.33px;
  font-weight: var(--fw-regular);
  line-height: 1.6;
  text-align: center;
}

.site-footer__legal a,
.site-footer__landing-legal a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__legal a:hover,
.site-footer__landing-legal a:hover {
  color: var(--color-gold-accent);
}

.site-footer__legal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-border-light);
  font-family: var(--font-body);
  font-size: 13.33px;
  font-weight: var(--fw-regular);
  line-height: 1.6;
}

.site-footer--landing {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(216, 205, 187, 0.35);
  background: #0b0b0b;
  color: var(--color-border-light);
}

.site-footer__landing-legal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: inherit;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: var(--fw-regular);
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 1180px) {
  .site-footer__contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-footer__inner {
    width: min(100% - 40px, 1290px);
    padding: 96px 0;
  }

  .site-footer__contact-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__practice-links {
    gap: 16px 28px;
  }
}

@media (max-width: 480px) {
  .site-footer__inner {
    padding: 72px 0;
  }

  .site-footer__logo {
    height: auto;
  }

  .site-footer__bar {
    padding-right: 20px;
    padding-left: 20px;
  }
}
