.pmg-site-footer {
  background: #111827;
  color: #e5e7eb;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  padding: 60px 0 30px;
}

.pmg-site-footer__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Top columns */
.pmg-site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pmg-footer-col h4 {
  font-size: 14px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 14px;
}

.pmg-footer-col a {
  display: block;
  color: rgba(229,231,235,0.85);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 0;
  transition: 0.2s ease;
}

.pmg-footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Studio cards */
.pmg-site-footer__studios {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pmg-studio-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 18px 18px 14px;
  transition: 0.25s ease;
}

.pmg-studio-card:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.06);
}

.pmg-studio-card h5 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 16px;
}

.pmg-studio-card p {
  margin: 6px 0;
  font-size: 14px;
  color: rgba(229,231,235,0.9);
  line-height: 1.5;
}

.pmg-studio-card a {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
}

.pmg-studio-card a:hover {
  text-decoration: underline;
}

/* Bottom row */
.pmg-site-footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pmg-bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.pmg-bottom-links a {
  color: rgba(229,231,235,0.7);
  text-decoration: none;
  font-size: 13px;
}

.pmg-bottom-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.pmg-bottom-copy {
  font-size: 13px;
  color: rgba(229,231,235,0.55);
}

/* Responsive */
@media (max-width: 900px) {
  .pmg-site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pmg-site-footer__studios {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .pmg-site-footer__grid {
    grid-template-columns: 1fr;
  }
}
