/* ─────────────────────────────────
   CONTACT
───────────────────────────────── */

.contact {
  padding: 8rem var(--page-gutter) 6rem;
  border-top: 1px solid var(--fg-dim);
}

/* Top row: big heading + links */
.contact-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6rem;
}

.contact-heading {
  font-family: var(--font-sans);
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--fg);
}

/* The accent-coloured word */
.contact-heading .accent {
  color: var(--accent);
}

/* Right side: email + social links */
.contact-info {
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 2.8;
  color: var(--fg-muted);
  text-align: right;
}

.contact-info a {
  color: var(--fg);
  transition: color 0.2s;
  cursor: none;
}

.contact-info a:hover {
  color: var(--accent);
}

/* Footer row */
.contact-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  border-top: 1px solid var(--fg-dim);
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--fg-dim);
  text-transform: uppercase;
  transition: color 0.2s;
  cursor: none;
}

.footer-links a:hover {
  color: var(--fg);
}
.resume-blob-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  flex-shrink: 0;
}

.resume-blob {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #1a6cf6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: none;
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
}

.resume-blob:hover {
  width: 160px;
  height: 160px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;  /* center everything around the blob */
  gap: 0.5rem;
  text-align: center;
}

.resume-blob-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  margin-top: 1.5rem;
}

.resume-blob {
  width: 140px;
  height: 140px;
  font-size: 16px;
}

.resume-blob:hover {
  width: 155px;
  height: 155px;
}
