/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */

.contact-page .page-bg {
  background-image: url('../assets/images/bg-contact.jpg');
}

/* ── Nav fade (same as music page) ── */
/* Intentional override of the about-page centred nav:
   contact page uses a full-width gradient fade instead. */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px 40px 56px;
  z-index: 100;
  background: linear-gradient(
    to bottom,
    rgba(6,9,7,0.92) 0%,
    rgba(6,9,7,0.72) 55%,
    rgba(6,9,7,0.0) 100%
  );
}

.contact-container {
  flex: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 80px) 52px 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* ── Contact card ── */
.contact-card {
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(9,13,10,0.65);
  padding: 52px;
  width: 100%;
  max-width: 480px;
}

.contact-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 40px;
}

/* ── Contact rows ── */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-row:first-child {
  padding-top: 0;
}

.contact-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

.contact-value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--c-text-primary);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.2;
}

.contact-value:hover {
  color: var(--c-accent);
}

/* ── Mobile ── */
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .contact-container { padding: calc(var(--nav-height) + 48px) 20px 60px; }
  .contact-card { padding: 36px 24px; }
  .contact-value { font-size: 16px; }
}
