/* ============================================
   Page V2 — Footer
   ============================================ */

.site-footer {
  background: #fff;
  padding: 5rem 0 0;
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1.15fr;
  gap: 3.5rem;
  padding-bottom: 3.5rem;
}

/* Brand column */
.footer-brand .logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-brand .logo-mark {
  flex-shrink: 0;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-brand .logo-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.1;
}

.footer-brand .logo-sub {
  font-family: var(--font-body);
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--color-navy);
  margin-top: 0.25rem;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 340px;
}

.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.footer-contact i {
  color: var(--color-red);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Link columns */
.footer-heading {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-links li {
  margin-bottom: 0.625rem;
}

.footer-links a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.5;
  transition: all 0.2s ease;
}

.footer-arrow {
  color: var(--color-red);
  font-weight: 300;
  flex-shrink: 0;
}

.footer-links a:hover {
  color: var(--color-red);
  padding-left: 0.25rem;
}

.footer-social-title {
  margin-top: 2rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-navy);
  color: #fff;
  border-radius: 50%;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--color-red);
  transform: translateY(-3px);
}

/* Copyright bar */
.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 1.25rem 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.footer-bottom ul {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: var(--color-muted);
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--color-red);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-tagline {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding-top: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom ul {
    justify-content: center;
  }
}
