/* ===== ABOUT US PAGE ===== */
.about-page { background: var(--bg-white); }

/* 1. Hero banner — same gradient as home; wider text, shorter height */
.about-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  padding: var(--space-lg) 0;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero.jpg') no-repeat center;
  background-size: cover;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 31, 46, 0.88) 0%,
    rgba(26, 31, 46, 0.60) 50%,
    rgba(26, 31, 46, 0.40) 100%
  );
}
.about-hero .container {
  position: relative;
  z-index: 1;
}
.about-hero-content {
  max-width: 920px;
}
.about-hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: var(--space-xs);
}
.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-light);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
  max-width: 920px;
}
.about-hero-intro {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}
.about-hero-intro a {
  color: var(--cta);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.about-hero-intro a:hover { color: #fff; }
.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  margin-top: var(--space-md);
}
.btn--about-cta {
  background: var(--cta);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.btn--about-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
}
.btn--about-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.btn--about-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

/* 2. Trust badges */
.about-trust.section { padding: var(--space-lg) 0; }
.about-trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg) var(--space-xl);
}
.about-trust-item {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
}
.about-trust-item img {
  display: block;
  height: 36px;
  width: auto;
  object-fit: contain;
}
.about-trust-item--text {
  cursor: default;
}
.about-trust-icon {
  color: var(--cta);
  font-size: 1.1rem;
}

/* 3. Our Story */
.about-story-header { margin-bottom: var(--space-lg); }
.about-story-header .section-label { color: var(--stone); }
.about-story-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.about-story-content a {
  color: var(--cta);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.about-story-content a:hover { color: var(--cta-hover); }

/* 4. Founder's story */
.about-founder-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.about-founder-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-founder-image img {
  width: 100%;
  height: auto;
  display: block;
}
.about-founder-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
  font-style: italic;
}
.about-founder-content .section-label { color: var(--stone); }
.about-founder-content .section-title { margin-bottom: var(--space-md); }
.about-founder-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* 5. Experience */
.about-experience-header { margin-bottom: var(--space-lg); }
.about-experience-header .section-label { color: var(--stone); }
.about-experience-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* 6. Philosophy */
.about-philosophy-header { margin-bottom: var(--space-lg); }
.about-philosophy-header .section-label { color: var(--stone); }
.about-philosophy-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

/* 7. Meet the Team */
.about-team-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-xl);
}
.about-team-header .section-label { color: var(--stone); }
.about-team-header .section-intro {
  margin-top: var(--space-sm);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  align-items: start;
}
.about-team-card {
  text-align: center;
  padding: var(--space-lg);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.about-team-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-md);
  background: var(--bg-grey-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  padding: var(--space-sm);
}
.about-team-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--space-xs);
}
.about-team-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cta);
  margin-bottom: var(--space-sm);
}
.about-team-bio {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 8. Service Area & Community */
.about-community-header { margin-bottom: var(--space-lg); }
.about-community-header .section-label { color: var(--stone); }
.about-community-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.about-community .city-chips {
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

/* 9. Social proof summary */
.about-social-proof-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.about-social-proof-inner .section-title { margin-bottom: var(--space-md); }
.about-social-proof-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}
.about-social-proof-text a {
  color: var(--cta);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.about-social-proof-text a:hover { color: var(--cta-hover); }
.about-social-proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

/* 2. Why Choose Us (legacy – kept if reused elsewhere) */
.about-why { background: var(--bg-white); }
.about-why-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-xl);
}
.about-why-header .section-label { color: var(--stone); }
.about-why-header .section-intro { margin-top: var(--space-sm); }
.about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  align-items: start;
}
.about-why-card {
  text-align: center;
  padding: 0 var(--space-sm);
}
.about-why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-why-icon svg {
  width: 48px;
  height: 48px;
}
.about-why-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: var(--space-sm);
  line-height: 1.25;
}
.about-why-card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* 3. Enhance section */
.about-enhance { background: var(--bg-grey); }
.about-enhance-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.about-enhance-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-enhance-image img {
  width: 100%;
  height: auto;
  display: block;
}
.about-enhance-content .section-label { color: var(--stone); }
.about-enhance-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: var(--space-sm) 0 var(--space-lg);
}
.about-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.about-stat-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
}
.about-stat-value {
  font-weight: 700;
  color: var(--cta);
}
.about-stat-bar {
  height: 10px;
  background: var(--bg-grey-alt);
  border-radius: 99px;
  overflow: hidden;
}
.about-stat-fill {
  display: block;
  height: 100%;
  background: var(--cta);
  border-radius: 99px;
  transition: width 0.8s ease;
}

/* 4. Our Process — dark background so light text is readable */
.about-process-content .btn--outline { margin-bottom: 0; margin-right: 12px; }
.about-process.section--dark {
  background: var(--dark);
  padding: var(--space-xl) 0;
}
.about-process-content .section-title--light {
  color: #fff;
  margin-bottom: var(--space-md);
}
.about-process-text {
  margin-bottom: var(--space-lg);
  max-width: 520px;
}
.about-process-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}
.about-process-text strong {
  color: #fff;
  font-weight: 600;
}
.about-process-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.about-process-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-process-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 5. Where We Serve */
.about-areas { padding: var(--space-2xl) 0; }
.about-areas-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-lg);
}
.about-areas-header .section-intro { margin-top: var(--space-sm); }
.about-areas .city-chips {
  justify-content: center;
  margin-top: var(--space-md);
}

/* 6. CTA band (uses .cta-bottom-bg from styles.css; text colors set in styles.css for contrast on photo) */
.about-cta-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.about-cta-inner .section-title--light { margin-bottom: var(--space-sm); }
.about-cta-inner .section-intro--light { margin-bottom: var(--space-lg); }
.about-cta-inner .cta-band-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Nav current (About link active) */
.nav-links a.nav-current,
.nav-mobile a.nav-current {
  color: var(--cta);
  font-weight: 600;
}
.nav-links a.nav-current {
  border-bottom: 2px solid var(--cta);
  padding-bottom: 2px;
}

/* Responsive */
@media (max-width: 900px) {
  .about-hero-overlay {
    background: linear-gradient(
      135deg,
      rgba(26, 31, 46, 0.88) 0%,
      rgba(26, 31, 46, 0.60) 50%,
      rgba(26, 31, 46, 0.40) 100%
    );
  }
  .about-why-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .about-enhance-inner,
  .about-process-inner,
  .about-founder-inner {
    grid-template-columns: 1fr;
  }
  .about-process-image { order: -1; }
  .about-founder-image { order: -1; }
  .about-team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .about-hero {
    min-height: 260px;
    padding: var(--space-md) 0;
  }
  .about-hero-content { max-width: 100%; }
  .about-hero-title { font-size: 2rem; max-width: none; }
  .about-trust-badges {
    gap: var(--space-md) var(--space-lg);
  }
  .about-trust-item {
    font-size: 0.85rem;
  }
}
