/* =============================================================
   footer.css — Site footer
   ============================================================= */

.footer {
  background: var(--deep-black);
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr;
  gap: 40px;
  padding: 80px var(--page-x) 40px;
  color: var(--soft-ivory);
  border-top: 1px solid rgba(245, 241, 232, 0.08);
}

/* Column 1: tagline + CTA */
.footer__tagline {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

/* Column 2: name + description */
.footer__name {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer__role {
  font-size: 12px;
  color: rgba(245, 241, 232, 0.5);
  margin-bottom: 12px;
}

.footer__nav-col p {
  font-size: 13px;
  color: rgba(245, 241, 232, 0.5);
  line-height: 1.65;
}

/* Column 3: page links */
.footer__links nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__links a {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(245, 241, 232, 0.5);
  cursor: none;
  transition: color 0.2s;
}
.footer__links a:hover {
  color: var(--neon-magenta);
}

/* Column 4: contact details */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.footer__contact-label {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.3);
  margin-bottom: 4px;
}

.footer__contact a,
.footer__contact address {
  font-size: 13px;
  color: rgba(245, 241, 232, 0.6);
  text-decoration: none;
  font-style: normal;
  cursor: none;
  transition: color 0.2s;
}
.footer__contact a:hover {
  color: var(--neon-magenta);
}

.footer__blob {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  opacity: 0.6;
}

/* Bottom bar */
.footer__bottom {
  background: var(--deep-black);
  border-top: 1px solid rgba(245, 241, 232, 0.08);
  padding: 20px var(--page-x);
  display: flex;
  gap: 32px;
  align-items: center;
  font-family: var(--font-head);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.25);
}

.footer__bottom a {
  color: rgba(245, 241, 232, 0.25);
  text-decoration: none;
  cursor: none;
  transition: color 0.2s;
}
.footer__bottom a:hover {
  color: var(--soft-ivory);
}

/* --- Responsive -------------------------------------------- */
@media (max-width: 1100px) {
  .footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 800px) {
  .footer {
    grid-template-columns: 1fr;
  }
}
