/* ==========================================================================
   SMB Real Estate Brokers — About Page (about.php)
   Extends main.css (tokens/core) and home.css (steps, cta-final, social).
   Loaded after both, on about.php only.
   ========================================================================== */

/* ---------- Inner page hero ---------- */
.hero--page { min-height: 440px; padding-top: calc(var(--header-h) + 48px); padding-bottom: 56px; }
.hero--page .hero__content { max-width: 640px; }
.hero--page .hero__description { margin-bottom: 0; }

.breadcrumb { margin-bottom: 24px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.breadcrumb li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.8125rem; font-weight: 600; color: rgba(255, 255, 255, 0.65);
}
.breadcrumb li + li::before {
  content: "/"; color: rgba(255, 255, 255, 0.35); font-weight: 400;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.85); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb [aria-current="page"] { color: var(--gold); }

@media (min-width: 992px) {
  .hero--page { min-height: 520px; }
  .hero--page .hero__inner { grid-template-columns: 1fr; }
}

/* ---------- Shared split layout ---------- */
.split { display: grid; gap: 48px; align-items: center; }

.split__media { border-radius: var(--r-xl); overflow: hidden; }
.split__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

.split__text h2 { margin-bottom: 24px; }
.split__text p { margin-bottom: 20px; }
.split__text p:last-of-type { margin-bottom: 0; }

@media (min-width: 992px) {
  .split { grid-template-columns: 1.05fr 0.95fr; gap: 80px; }
  .split--media-right .split__media { order: 2; }
  .split__media img { aspect-ratio: 4 / 3.4; }
}

/* Quick facts under the introduction copy */
.intro-facts { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.intro-facts li {
  font-size: 0.8125rem; font-weight: 700; color: var(--navy);
  background: var(--bg-section-alt); border: 1px solid var(--border-light);
  border-radius: 999px; padding: 8px 18px;
}

/* ---------- Mission & vision ---------- */
.mv__grid { display: grid; gap: 24px; }

.mv-block {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--border-light); box-shadow: var(--shadow-sm);
  padding: 40px 36px;
}
.mv-block h3 { font-size: 1.25rem; margin-bottom: 14px; }
.mv-block p { font-size: 1rem; color: var(--text-main); }
.mv-block .eyebrow { margin-bottom: 12px; }

@media (min-width: 768px) { .mv__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

/* ---------- Why clients choose SMB ---------- */
.choose__grid { display: grid; gap: 48px; }

.choose__intro p { margin-bottom: 24px; }
.choose__intro .btn { margin-top: 8px; }

.choose__list { counter-reset: choose; }
.choose__list li {
  counter-increment: choose;
  display: flex; align-items: flex-start; gap: 24px;
  padding-block: 22px; border-top: 1px solid var(--border-light);
}
.choose__list li:last-child { border-bottom: 1px solid var(--border-light); }
.choose__list li::before {
  content: "0" counter(choose);
  font-size: 0.875rem; font-weight: 800; letter-spacing: 0.1em;
  color: var(--gold-dark); line-height: 1.9; flex-shrink: 0;
}
.choose__list h3 { font-size: 1.0625rem; margin-bottom: 4px; }
.choose__list p { font-size: 0.9375rem; color: var(--text-muted); }

@media (min-width: 992px) {
  .choose__grid { grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: start; }
}

/* ---------- Team ---------- */
.team__grid {
  display: grid; gap: 32px;
  max-width: 920px;
}

.team-card {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--border-light); box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }

.team-card__media {
  position: relative; aspect-ratio: 4 / 5;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  background: linear-gradient(180deg, var(--bg-section-alt) 0%, #e9ecf1 100%);
  color: var(--navy);
}
.team-card__media .icon { width: 72px; height: 72px; stroke-width: 1; opacity: 0.35; }
.team-card__media-note {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted);
}

.team-card__body { padding: 28px 28px 32px; }
.team-card__name { font-size: 1.25rem; margin-bottom: 4px; }
.team-card__role {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 16px;
}
.team-card__bio { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 20px; }

.team-card__links { display: flex; gap: 12px; }
.team-card__links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border-light); color: var(--navy);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.team-card__links a:hover { background: var(--navy-soft); border-color: transparent; }
.team-card__links .icon { width: 18px; height: 18px; }

.team-card__note {
  margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--border-light);
  font-size: 0.8125rem; font-style: italic; color: var(--text-muted);
}

@media (min-width: 700px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Commitment ---------- */
.commitment .split__text p { font-size: 1.0625rem; }
.commitment__rule {
  width: 48px; height: 3px; border-radius: 2px;
  background: var(--gold); margin-bottom: 28px;
}
