/* ══════════════════════════════════════════
   contact.css — Contact Us page
   Uses site CSS variables from theme.css
══════════════════════════════════════════ */

.contact-content {
  flex: 1;
  overflow-y: auto;
  background: var(--bg-page);
}

/* ── Hero ── */
.ct-hero {
  max-width: 860px;
  margin: 0 auto;
  padding: 52px 2rem 36px;
  text-align: center;
}
.ct-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px !important; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-muted) !important; font-weight: 500 !important;
  margin-bottom: 24px;
}
.ct-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; }
.ct-hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500; line-height: 1.1; letter-spacing: -.02em;
  color: var(--text-primary) !important;
  margin-bottom: 16px;
}
.ct-hero h1 em { font-style: italic; color: var(--accent); font-weight: 400; }
.ct-hero p { font-size: 16px !important; color: var(--text-muted) !important; max-width: 520px; margin: 0 auto; line-height: 1.6; }

/* ── Grid ── */
.ct-grid {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem 60px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
  align-items: start;
}

/* ── Office info ── */
.ct-info {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}
.ct-info-block { margin-bottom: 22px; }
.ct-info-block:last-child { margin-bottom: 0; }
.ct-info-label {
  font-size: 11px !important; text-transform: uppercase; letter-spacing: .06em;
  color: var(--text-muted) !important; font-weight: 600 !important;
  margin-bottom: 6px;
}
.ct-info-value {
  font-size: 14px !important; color: var(--text-primary) !important; line-height: 1.6; margin: 0;
}
.ct-info-value a { color: var(--text-primary) !important; text-decoration: none; }
.ct-info-value a:hover { color: var(--accent) !important; }

/* ── Form card ── */
.ct-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}
.ct-form-title {
  font-size: 18px !important; font-weight: 600 !important;
  color: var(--text-primary) !important;
  margin: 0 0 20px;
}
.ct-form-card textarea.reg-input { resize: vertical; font-family: inherit; }
#ct-submit-btn { width: 100%; justify-content: center; }

.ct-success { display: none; text-align: center; padding: 24px 0; }
.ct-success.show { display: block; }
.ct-success h3 { font-size: 18px !important; color: var(--text-primary) !important; margin: 0 0 8px; }
.ct-success p { font-size: 14px !important; color: var(--text-muted) !important; margin: 0; }

@media (max-width: 800px) {
  .ct-grid { grid-template-columns: 1fr; }
}
