/* ===== Global Footer ===== */
.global-footer {
  background: #16213e;
  color: rgba(245, 240, 232, 0.3);
  padding: 48px 0 32px;
  margin-top: auto;
}

.global-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.global-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.global-footer-brand {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
}

.global-footer-links {
  display: flex;
  gap: 40px;
}

.global-footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(245, 240, 232, 0.4);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.global-footer-col a {
  display: block;
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.4);
  text-decoration: none;
  padding: 10px 0;
  transition: color 0.15s;
}

.global-footer-col a:hover {
  color: #e8985e;
}

.global-footer-col a.is-current {
  color: #e8985e;
  font-weight: 700;
}

.global-footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(245, 240, 232, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.global-footer-copy,
.global-footer-tech {
  font-size: 0.72rem;
}

@media (max-width: 768px) {
  .global-footer-top {
    flex-direction: column;
    gap: 24px;
  }
  .global-footer-links {
    flex-direction: column;
    gap: 16px;
  }
  .global-footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
