.footer-minimal {
  padding: 80px 0 40px 0;
  background-color: transparent;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.footer-minimal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  z-index: 2;
}

.footer-logo-wrap {
  transform: scale(1.2);
  transition: transform 0.5s cubic-bezier(0.625, 0.05, 0, 1);
}

.footer-logo-wrap:hover {
  transform: scale(1.3);
}

.footer-brand-name {
  color: var(--_color---grey);
  letter-spacing: -0.04rem;
  font-family: Goga, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s;
}

.footer-info-compact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: Goga, Arial, sans-serif;
  opacity: 0.5;
}

.footer-location {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--_color---grey);
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--_color---grey);
}

/* Atmospheric Glow */
.footer-minimal::after {
  content: '';
  position: absolute;
  bottom: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 188, 149, 0.05) 0%, rgba(255, 188, 149, 0) 70%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .footer-minimal {
    padding: 60px 0 30px 0;
  }
  
  .footer-brand-name {
    font-size: 1.2rem;
  }
}
