:root {
  --se-footer-bg: #0b0b0b;
  --se-footer-surface: #121212;
  --se-footer-text: #c9c9c9;
  --se-footer-muted: #9f9f9f;
  --se-footer-gold: #ffd700;
}

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  padding: 52px 0 20px;
  background: linear-gradient(180deg, var(--se-footer-surface), var(--se-footer-bg));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  color: var(--se-footer-text);
  text-align: right;
}

.site-footer a {
  color: var(--se-footer-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--se-footer-gold);
}

.site-footer-brand {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--se-footer-gold) !important;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.site-footer-description {
  max-width: 34rem;
  margin: 0;
  color: var(--se-footer-muted);
  line-height: 1.9;
}

.site-footer-title {
  margin: 0 0 16px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.site-footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer-links li + li {
  margin-top: 10px;
}

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

.site-footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.site-footer-social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 215, 0, 0.26);
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.06);
  color: var(--se-footer-gold);
  font-size: 1.05rem;
}

.site-footer-social a:hover,
.site-footer-social a:focus-visible {
  background: var(--se-footer-gold);
  color: #111;
}

.site-footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--se-footer-muted);
  text-align: center;
}

.site-footer-bottom p {
  margin: 0;
}

@media (max-width: 575.98px) {
  .site-footer {
    padding-top: 42px;
  }

  .site-footer-description {
    max-width: none;
  }
}
