/* ============================================================
   SITE FOOTER
   ============================================================ */

/* Hide GP's default footer wrapper styling */
.site-info {
  display: none !important;
}

.tech-footer {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
}

.tech-footer__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-element);
}

/* --- Top Row: Brand Moment --- */

.tech-footer__brand {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 64px 0 48px;
}

.tech-footer__statement {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-text-inverse);
  opacity: 0.8;
  margin: 0;
  text-align: right;
}

/* --- Middle Row: Utility Nav --- */

.tech-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid rgba(245, 239, 230, 0.12);
}

.tech-footer__nav-heading {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-inverse);
  opacity: 0.6;
  margin: 0 0 20px 0;
}

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

.tech-footer__nav-list li {
  margin: 0;
  padding: 0;
}

.tech-footer__nav-list a {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text-inverse);
  opacity: 0.85;
  text-decoration: none;
  line-height: 2.0;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.tech-footer__nav-list a:hover {
  color: var(--color-accent);
  opacity: 1;
}

/* --- Bottom Row: Legal/Meta --- */

.tech-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  border-top: 1px solid rgba(245, 239, 230, 0.12);
}

.tech-footer__copyright {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--color-text-inverse);
  opacity: 0.55;
  margin: 0;
}

.tech-footer__social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.tech-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-inverse);
  opacity: 0.6;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.tech-footer__social-link:hover {
  color: var(--color-accent);
  opacity: 1;
}

.tech-footer__social-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   MOBILE (<768px)
   ============================================================ */
@media (max-width: 768px) {
  .tech-footer__brand {
    flex-direction: column;
    gap: 24px;
    padding: 48px 0 32px;
  }

  .tech-footer__statement {
    text-align: left;
    font-size: 16px;
  }

  .tech-footer__nav {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 0;
  }

  .tech-footer__legal {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 0;
  }
}
