/* Contact Page Styles */

.contact-hero {
  padding: 6rem 0;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.ch-inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.contact-hero .eyebrow { color: var(--white); }
.ch-title {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}
@media (min-width: 768px) {
  .ch-title { font-size: 3.5rem; }
}
.ch-lead {
  font-size: 1.25rem;
  color: #B3C1D6;
}

.contact-section {
  padding: 6rem 0;
  background: var(--paper);
}
.c-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 6rem;
}
@media (min-width: 768px) {
  .c-grid { grid-template-columns: repeat(3, 1fr); }
}
.c-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
}
.c-card-icon {
  color: var(--brass);
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}
.c-card-icon svg {
  width: 2rem;
  height: 2rem;
}
.c-card-title {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
}
.c-card-primary {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 4vw, 1.5rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
  overflow-wrap: anywhere;
}
.c-card-link:hover {
  color: var(--brass);
}
.c-card-sub {
  color: var(--text-muted);
}

.contact-cta {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}
.contact-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.contact-cta p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}