/* ============================================================
   CONTACT PAGE STYLES
   ============================================================ */

.contact-main {
  background: var(--navy);
  padding-top: var(--space-md);
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}

/* ── Left column: copy ─────────────────────────────────────── */
.contact-copy {
  width: 100%;
  max-width: 660px;
  text-align: center;
}

.contact-intro {
  font-size: 1.1rem;
  color: var(--white-muted);
  line-height: 1.85;
  margin-bottom: var(--space-lg);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-note {
  font-size: 1rem;
  color: var(--white-faint);
  line-height: 1.8;
  font-style: italic;
  border-left: 3px solid var(--gold-dark);
  padding-left: var(--space-md);
  margin: 0 auto var(--space-xl);
  max-width: 52ch;
  text-align: left;
}

/* Social links — hidden until populated */
.contact-social:empty {
  display: none;
}

.contact-social {
  margin-bottom: var(--space-md);
}

.contact-social-heading {
  font-size: 1.1rem;
  color: var(--gold-mid);
  margin-bottom: var(--space-sm);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.social-link {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white-muted);
  transition: color var(--transition);
}

.social-link:hover { color: var(--white); }

/* Publisher block */
.contact-publisher-block {
  border-top: 1px solid var(--border-white);
  padding-top: var(--space-lg);
  text-align: center;
}

.contact-publisher-block h3 {
  font-size: 1rem;
  color: var(--white-faint);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.contact-publisher-block p {
  font-size: 1rem;
  color: var(--white-muted);
  max-width: none;
  line-height: 1.7;
  text-align: center;
}

/* ── Right column: form ────────────────────────────────────── */
.contact-form-wrap {
  width: 100%;
  max-width: 660px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: var(--space-lg);
}

.contact-form-heading {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.ct-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.ct-field-group label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white-muted);
  letter-spacing: 0.03em;
}

.ct-field-group input,
.ct-field-group textarea {
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  color: #111111;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}

.ct-field-group input::placeholder,
.ct-field-group textarea::placeholder {
  color: #aaaaaa;
}

.ct-field-group input:focus,
.ct-field-group textarea:focus {
  border-color: var(--gold-mid);
  background: #ffffff;
}

.ct-field-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}

.ct-submit {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 0.9rem 1.5rem;
  margin-top: var(--space-sm);
}

/* Hide copy section until JSON populates it */
#contact-copy-wrap:not(:has(p:not(:empty))) {
  display: none;
}
