/* ============================================================
   MASSIVE FOOTER (GRANYYTE STYLE - THEME AWARE)
   ============================================================ */
.massive-footer {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  padding: 6rem 0 2rem;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2.5fr 1.5fr 1.5fr 2fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border-color);
}

.footer-brand-col .footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
}

.footer-brand-col .footer-logo img {
  height: 90px;
}

.footer-brand-col .footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.footer-mission {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 320px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-secondary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 0.4; }
  70% { transform: scale(3.5); opacity: 0; }
  100% { transform: scale(3.5); opacity: 0; }
}

.link-group {
  margin-bottom: 2.5rem;
}

.link-group h5,
.footer-contact-col h5 {
  color: var(--text-tertiary);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-group ul li {
  margin-bottom: 1rem;
}

.link-group ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.link-group ul li a:hover {
  color: var(--gold);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-list li svg {
  width: 16px;
  height: 16px;
  color: var(--text-tertiary);
}

.contact-list li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.contact-list li a:hover {
  color: var(--gold);
}

.footer-divider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.divider-status {
  font-size: 0.7rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-massive-text {
  text-align: center;
  padding: 4rem 0 2rem;
  overflow: hidden;
  perspective: 1000px;
}

.giant-stroke-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(4rem, 20vw, 18rem);
  font-weight: 800;
  line-height: 0.8;
  margin: 0;
  color: transparent;
  -webkit-text-stroke: 1px rgba(128, 128, 128, 0.3); /* Crisper, consistently visible stroke */
  cursor: default;
  transition: color 0.4s ease, -webkit-text-stroke 0.4s ease, transform 0.1s linear;
  white-space: nowrap;
  display: inline-block;
  will-change: transform;
}

[data-theme="light"] .giant-stroke-text {
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.15);
}

.giant-stroke-text:hover {
  color: var(--gold);
  -webkit-text-stroke: 1px var(--gold);
}

.massive-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.5rem 0;
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

.admin-link {
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.admin-link:hover {
  color: var(--text-primary);
}

@media (max-width: 1024px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-divider {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .giant-stroke-text {
    font-size: 25vw;
  }
}


