/* ── About page ─────────────────────────────────────────────── */

.about-page {
  font-family: 'Poppins', sans-serif;
  color: #1a1b26;
}

/* Hero */
.about-hero {
  text-align: center;
  padding: 4.5rem 1.5rem 3rem;
  max-width: 760px;
  margin: 0 auto;
}
.about-hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #C8102E;
  margin: 0 0 0.6rem;
}
.about-hero-title {
  font-size: clamp(2rem, 5vw, 2.9rem);
  font-weight: 900;
  margin: 0 0 0.85rem;
  line-height: 1.15;
}
.about-hero-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(26,27,38,0.65);
  margin: 0;
}

/* Sections */
.about-section {
  padding: 3rem 1.5rem;
}
.about-section--alt {
  background: #fdf6f3;
  border-top: 1px solid rgba(178,59,44,0.12);
  border-bottom: 1px solid rgba(178,59,44,0.12);
}
.about-section-inner,
.about-section-grid {
  max-width: 1080px;
  margin: 0 auto;
}
.about-section-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-section-grid--flip .about-section-text { order: 2; }
.about-section-grid--flip .about-section-img  { order: 1; }
.about-section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
  color: #C8102E;
  margin: 0 0 0.5rem;
}
.about-section-title {
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  font-weight: 800;
  margin: 0 0 1.25rem;
  line-height: 1.2;
}
.about-section-title span { color: #C8102E; }
.about-section-text p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: rgba(26,27,38,0.78);
  margin: 0 0 1rem;
}
.about-section-text p:last-child { margin-bottom: 0; }
.about-associated { font-size: 0.92rem; }
.about-budnick-btn {
  display: inline-block;
  margin-top: 1.1rem;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  background: #C8102E;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease;
}
.about-budnick-btn:hover { background: #a30d26; color: #fff; }
.about-section-img img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 14px 38px rgba(26,27,38,0.14);
}

/* Services */
.about-services {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(178,59,44,0.15);
}
.about-services-title {
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0 0 1rem;
}
.about-services-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
}
.about-services-list li {
  background: #fff;
  border: 1px solid rgba(178,59,44,0.25);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(26,27,38,0.8);
}

/* CTA */
.about-cta {
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 680px;
  margin: 0 auto;
}
.about-cta-title {
  font-size: clamp(1.5rem, 3.4vw, 2rem);
  font-weight: 800;
  margin: 0 0 0.7rem;
}
.about-cta-desc {
  font-size: 0.97rem;
  line-height: 1.6;
  color: rgba(26,27,38,0.65);
  margin: 0 0 1.6rem;
}
.about-cta-btns {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}
.about-cta-btn-primary,
.about-cta-btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.7rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.about-cta-btn-primary {
  background: #C8102E;
  color: #fff;
}
.about-cta-btn-primary:hover { background: #a30d26; color: #fff; }
.about-cta-btn-secondary {
  background: #fff;
  color: #1a1b26;
  border: 1.5px solid rgba(26,27,38,0.25);
}
.about-cta-btn-secondary:hover { border-color: #C8102E; color: #C8102E; }

/* Responsive */
@media (max-width: 820px) {
  .about-hero { padding: 3rem 1.25rem 2rem; }
  .about-section-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .about-section-grid--flip .about-section-text { order: 1; }
  .about-section-grid--flip .about-section-img  { order: 2; }
  .about-section-img { max-width: 440px; margin: 0 auto; }
}
