.contact-page {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.12) saturate(0.4);
}

.contact-page::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.contact-label {
  font-family: 'Syncopate', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.35);
  margin-bottom: 1.5rem;
}

.contact-email {
  font-family: 'Cardo', serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 400;
  color: #f0ede8;
  text-decoration: none;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(240, 237, 232, 0.2);
  padding-bottom: 0.3rem;
  transition: color 0.2s, border-color 0.2s;
}

.contact-email:hover {
  color: rgba(240, 237, 232, 0.6);
  border-color: rgba(240, 237, 232, 0.1);
}
