/* ============================================================
   SKILLS
   ============================================================ */

#skills { background: var(--bg2); }

.skills-outer { max-width: 1100px; }
.skills-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.skill-cat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
}
.skill-cat h4 {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.skill-items { display: flex; flex-wrap: wrap; gap: 0.4rem; }


/* ============================================================
   CONTACT
   ============================================================ */

#contact { background: var(--ink); color: #fff; }

.contact-inner { max-width: 700px; text-align: center; margin: 0 auto; }

#contact .section-num   { color: var(--accent2); }
#contact .section-title { color: #fff; }
#contact .section-line  { background: rgba(255,255,255,0.1); }
#contact .section-header { justify-content: center; }

.contact-tagline {
  font-size: 1.05rem;
  color: #b8b0a8;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.contact-links { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--accent2);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.contact-link:hover { color: #fff; }
.contact-link svg { width: 16px; height: 16px; }


/* ============================================================
   FOOTER
   ============================================================ */

footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer p {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: #5a5550;
}
