/* ============================================================
   contact.css — Contact section, footer, lightbox
   ============================================================ */

/* ── Contact ── */
#contact {
  padding: var(--section-pad);
  background: var(--pink-xs);
  text-align: center;
}

.section-sub {
  font-size: .88rem; font-weight: 300; color: var(--text-lt);
  margin: 1rem auto 3.5rem; max-width: 420px; line-height: 1.85;
}

.contact-cards {
  display: flex; justify-content: center; gap: 1.5rem;
  flex-wrap: wrap; margin-bottom: 3rem;
}
.contact-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.3rem 2rem; background: #fff;
  border: 1px solid var(--beige-md); border-radius: .5rem;
  text-decoration: none; color: var(--text); font-size: .82rem;
  transition: all .25s; box-shadow: 0 2px 12px rgba(28,26,27,.04);
}
.contact-card:hover {
  border-color: var(--pink); box-shadow: 0 4px 24px rgba(212,115,122,.15);
  transform: translateY(-2px);
}
.cc-icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-card.email .cc-icon { background: var(--pink-xs); color: var(--pink-dk); }
.contact-card.insta .cc-icon { background: var(--pink-lt); color: var(--pink-dk); }

.cc-label {
  font-size: .63rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-lt); margin-bottom: .2rem;
}
.cc-value { font-size: .82rem; font-weight: 400; }

.location-line {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-lt); display: flex; align-items: center;
  justify-content: center; gap: .5rem;
}
.location-line svg { color: var(--pink); }

/* ── Footer ── */
footer {
  padding: 2.5rem 5rem; background: var(--dark);
  display: flex; align-items: center; justify-content: space-between;
}
.foot-logo {
  font-family: var(--font-display); font-size: 1.05rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--pink-lt);
}
.foot-copy { font-size: .65rem; letter-spacing: .12em; color: rgba(255,255,255,.25); }

/* ── Lightbox ── */
.lightbox {
  display: none; position: fixed; inset: 0;
  background: rgba(28,26,27,.93); z-index: 200;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: .4rem; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  color: rgba(255,255,255,.65); font-size: 1.8rem;
  cursor: pointer; background: none; border: none; line-height: 1;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  #contact { padding: var(--section-pad-sm); }
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem; }
}
