/**
 * ============================================================================
 *  FOOTER
 * ============================================================================
 *  Brand mark, tagline, copyright and social links.
 *  Pure presentational — sits after the contact section and is the last
 *  child of the .nh-root flex column, so it sticks to the viewport bottom
 *  on short pages.
 * ============================================================================
 */

.nh-footer {
  background: var(--nh-ink);
  color: rgba(255, 255, 255, 0.6);
  padding: clamp(44px, 6vw, 72px) clamp(18px, 5vw, 44px);
}

.nh-footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}

.nh-footer__brand {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
}

.nh-footer__brand-name {
  font-family: var(--nh-serif);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.nh-footer__brand-dot {
  color: var(--nh-rose);
  font-size: 22px;
  line-height: 0;
}

.nh-footer__tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.nh-footer__rights {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 6px;
}

.nh-footer__connect {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.nh-footer__connect-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.nh-footer__socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.nh-social {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

.nh-social:hover {
  transform: translateY(-4px);
  background: rgba(231, 180, 192, 0.16);
}

.nh-social img {
  width: 22px;
  height: 22px;
  border-radius: 4px;
}
