/* ─────────────────────────────────────────
   CONTACT.CSS — Formulario + info + footer
   MNSM · Playground Agency
───────────────────────────────────────── */

#contact {
  background: var(--black);
  color: var(--white);
  padding: var(--section-pad-v) var(--section-pad-h) 80px;
}

/* ─── CABECERA ─── */
.contact-header {
  margin-bottom: 72px;
}
.contact-header .section-title {
  color: var(--white);
}
.contact-header p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  max-width: 440px;
  line-height: 1.7;
}

/* ─── CUERPO ─── */
.contact-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ─── FORMULARIO ─── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.field-input,
.field-textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  padding: 12px 0;
  outline: none;
  width: 100%;
  cursor: none;
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.field-input::placeholder,
.field-textarea::placeholder {
  color: rgba(255,255,255,0.18);
}
.field-input:focus,
.field-textarea:focus {
  border-color: var(--coral);
}

.field-textarea {
  resize: none;
  min-height: 100px;
}

.contact-submit { margin-top: 8px; }

/* ─── INFO LATERAL ─── */
.contact-info-block {
  margin-bottom: 36px;
}
.contact-info-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 6px;
}
.contact-info-value {
  font-size: 15px;
  font-weight: 300;
  color: var(--coral);
  transition: opacity 0.2s;
}
a.contact-info-value:hover { opacity: 0.75; }
.contact-info-value--muted { color: rgba(255,255,255,0.45); }

.contact-closing {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 300;
  line-height: 1.3;
  color: var(--white);
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.contact-closing em { color: var(--coral); font-style: italic; }

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  padding: 28px var(--section-pad-h);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer span {
  font-size: 11px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.08em;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  #contact { padding-bottom: 60px; }

  .contact-body {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  footer {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
