/* ── FOOTER ── */
.footer {
  background: var(--dark);
  color: #fff;
  padding: 5rem var(--px) 2rem;
}

/* Mobile: single column stack */
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border-light);
}

@media (min-width: 1024px) {
  .footer-top {
    grid-template-columns: 200px 1fr;
    gap: 4rem;
  }
}

.footer-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.5rem;
}
.footer-lang {
  display: flex;
  gap: 0.75rem;
}
.footer-lang a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
}
.footer-lang a:hover,
.footer-lang a.active { color: var(--accent); border-color: var(--accent); }

/* Mobile: single column */
.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.2rem;
}

.footer-col a {
  display: block;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  padding: 0.3rem 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }

/* Social icons — touch-friendly 44px targets on mobile */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-social a .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .footer-social a .icon {
    width: 32px;
    height: 32px;
  }
}

.footer-social a:hover .icon {
  border-color: var(--accent);
  background: var(--accent);
  color: #000;
}

/* Bottom — stacked on mobile, row at 768px+ */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom a {
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* WCD Radio player in footer */
.footer-radio {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  margin-top: 1.5rem;
  width: fit-content;
}
.footer-radio:hover {
  background: rgba(241,253,115,0.08);
  border-color: rgba(241,253,115,0.3);
}
.footer-radio-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.footer-radio span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
