/* =========================================
   FOOTER — contact, pill CTA, copyright
========================================= */
.footer {
  width: 100%;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 40;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.35rem 1rem 1.1rem;
  font-family: var(--font-body), sans-serif;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0;
  border-bottom: none;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(26, 26, 26, 0.5);
}

.footer-email {
  font-size: 1.05rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-email:hover {
  color: #112C64;
}

/* Pill button — same structure as hero pill */
.footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  color: #fff;
  border-radius: 9999px;
  padding: 0.5rem 1.1rem;
  font-family: var(--font-display), sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-pill:hover {
  background: #5a5a5a;
  transform: translateY(-1px);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copyright,
.footer-credit {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
}

.footer-credit {
  color: rgba(26, 26, 26, 0.5);
}

@media (max-width: 640px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
