/* ============================================================
   CYCLICAL TRACKS — contact.css
   ============================================================ */

.contact-section {
  position: relative;
  height: 687px;
  margin-top: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  filter: brightness(0.95) saturate(0.8);
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
}

.contact-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  padding: 2rem;
}

.contact-block {
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 3.5rem 3rem;
  text-align: center;
}

.contact-group {
  margin-bottom: 1.8rem;
}
.contact-group:last-child { margin-bottom: 0; }

.contact-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 0.6rem;
}

.contact-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f2f0ec;
}

.contact-value a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
}
.contact-value a:hover {
  color: #c0203a;
  border-bottom-color: #c0203a;
}

.contact-divider {
  width: 60px;
  height: 1px;
  background: #c0203a;
  opacity: 0.6;
  margin: 2rem auto;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .contact-section { height: auto; min-height: 500px; }
  .contact-block { padding: 2.5rem 1.5rem; }
  .contact-value { font-size: 0.72rem; }
}
