/* ── About Hero ──────────────────────────────────────────────────── */
.about-hero {
  padding: 4rem 0 3rem;
  text-align: center;
  background: var(--bg);
}
.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text);
}
.about-hero-img {
  margin: 2.5rem auto 0;
  max-width: 860px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.about-hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ── About Intro ─────────────────────────────────────────────────── */
.about-intro {
  padding: 4rem 0;
  text-align: center;
  background: var(--bg);
}
.about-intro h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto;
}
.about-intro p {
  margin: 1.5rem auto 0;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 680px;
}
.about-intro p + p { margin-top: 1.25rem; }

/* Three team photos */
.about-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (max-width: 640px) {
  .about-photos { grid-template-columns: 1fr; }
}
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── About Mission ───────────────────────────────────────────────── */
.about-mission {
  padding: 4rem 0;
  text-align: center;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-mission h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto;
}
.about-mission p {
  margin: 1.5rem auto 0;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 680px;
}
.about-mission p + p { margin-top: 1.25rem; }
.about-mission-img {
  margin: 3rem auto 0;
  max-width: 860px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.about-mission-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

/* ── Services Cards ──────────────────────────────────────────────── */
.about-services {
  padding: 5rem 0;
  background: var(--bg);
  text-align: center;
}
.about-services h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 3rem;
}
.about-service-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .about-service-grid { grid-template-columns: repeat(3, 1fr); }
}
.about-service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}
.about-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.about-service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: var(--bg-section);
  font-size: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-service-body {
  padding: 1.5rem;
}
.about-service-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}
.about-service-body p {
  margin-top: 0.625rem;
  font-size: 0.925rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.about-service-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.15s;
}
.about-service-link:hover { opacity: 0.75; }

/* CTA */
.about-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Active nav */
.nav-active { color: var(--accent) !important; font-weight: 700; }

/* ── Mobile ─────────────────────────────────────────────────────── */
@media (max-width: 767px) {
  .about-hero { padding: 2.5rem 0 2rem; }
  .about-hero-img img { height: 260px; }
  .about-intro { padding: 2.5rem 0; }
  .about-mission { padding: 2.5rem 0; }
  .about-mission-img img { height: 220px; }
  .about-services { padding: 3rem 0; }
  .about-service-img { height: 180px; }
  .about-photos { grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
}

@media (max-width: 480px) {
  .about-hero-img img { height: 200px; }
  .about-mission-img img { height: 180px; }
  .about-service-img { height: 150px; }
  .about-service-body { padding: 1.25rem; }
  .about-cta { margin-top: 2rem; }
}
