/* ── CONTACT GRID ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-block { padding-bottom: 3rem; }

/* ── EMAIL ───────────────────────────────────────────────── */
.email-display {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #111;
  margin-bottom: 0.5rem;
}

.email-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.email-link:hover { color: #555; }

.email-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #aaa;
  line-height: 1.6;
}

/* ── AGENT ───────────────────────────────────────────────── */
.agent-name    { font-size: 0.95rem; font-weight: 600; color: #111; margin-bottom: 0.2rem; }
.agent-company { font-size: 0.85rem; color: #444; margin-bottom: 1.5rem; }

.agent-details { display: flex; flex-direction: column; gap: 0.6rem; }

.agent-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.75rem;
  align-items: baseline;
  font-size: 0.82rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e8e8e4;
}

.agent-row:first-child { border-top: 1px solid #e8e8e4; }

.agent-label {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
}

.agent-value { color: #222; line-height: 1.5; }
.agent-value a { color: #111; text-decoration: underline; text-underline-offset: 3px; }
.agent-value a:hover { color: #555; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}
