.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.9), #020617 70%);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  margin-top: 4rem;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.site-footer__brand {
  max-width: 420px;
}

.site-footer__tagline {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: rgba(148, 163, 184, 0.95);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  align-self: center;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.95);
}

.site-footer__nav a {
  color: inherit;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
  color: #D4A373;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.85);
}

.site-footer__note {
  max-width: 380px;
}

.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 40;
  background: radial-gradient(circle at top, rgba(8, 10, 15, 0.98), rgba(15, 23, 42, 0.98));
  border-top: 1px solid rgba(212, 163, 115, 0.7);
  box-shadow: 0 -24px 60px rgba(0, 0, 0, 0.9);
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 220ms ease-out, opacity 220ms ease-out, visibility 0s linear 220ms;
}

.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform 260ms ease-out, opacity 260ms ease-out;
}

.cookie-banner--hidden {
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.cookie-banner__content {
  max-width: 640px;
}

.cookie-banner__title {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.cookie-banner__text {
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.cookie-banner__link {
  font-size: 0.8rem;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.cookie-banner__btn {
  font-size: 0.78rem;
  padding-inline: 1.6rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .site-footer__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__nav {
    align-self: stretch;
    gap: 0.5rem 1.25rem;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner {
    transition: none;
  }
}