/* About Page Styles */

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

.about-content {
  padding: 6rem 0;
  background: var(--paper);
}
.ac-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .ac-grid { grid-template-columns: 1fr 1fr; }
}
.ac-story {
  /* text story */
}
.ac-story h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.ac-story-text {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.ac-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .ac-cards { grid-template-columns: 1fr 1fr; }
}
.ac-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.ac-card-icon {
  width: 2rem;
  height: 2rem;
  color: var(--brass);
  margin-bottom: 1.25rem;
}
.ac-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.ac-card-desc {
  color: var(--text-muted);
}

.about-cta {
  padding: 8rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  text-align: center;
}
.about-cta-inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.about-cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.about-cta-text {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}