/* ── Contact ────────────────────────────────────────────── */
#contact {
  background: var(--bg2);
  text-align: center;
}

.contact-wrap { max-width: 640px; margin: 0 auto; }

.contact-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.contact-btn {
  min-width: 220px;
  justify-content: center;
}

/* ── Social links ───────────────────────────────────────── */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(230, 57, 70, 0.2);
}

/* ── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 1.75rem clamp(1.25rem, 6vw, 10rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--mono);
}
.footer-copy span { color: var(--red); }

.back-to-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 6px;
  transition: var(--transition);
}
.back-to-top:hover { color: var(--red); border-color: var(--red); }
