/* ============================================
   R.L. SIMMONS BUILDER — About Page
   ============================================ */

/* --- Randy's Story Section --- */
.story-section {
  padding: var(--space-xl) 0;
}

.story-portrait {
  position: relative;
  max-width: 450px;
}

.story-portrait .placeholder-img {
  aspect-ratio: 3 / 4;
  position: relative;
  z-index: 1;
}

.story-portrait::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--copper);
  z-index: 0;
}

.story-text h2 {
  margin-bottom: var(--space-sm);
}

.story-text .eyebrow {
  margin-bottom: 0.5em;
}

.story-pull-quote {
  font-family: var(--font-accent);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-style: italic;
  font-weight: 500;
  color: var(--deep-moss);
  border-left: 3px solid var(--copper);
  padding-left: var(--space-sm);
  margin: var(--space-md) 0;
}

/* --- Team Section --- */
.team-section {
  padding: var(--space-xl) 0;
}

.team-section h2 {
  margin-bottom: var(--space-xs);
}

/* Team trust stats (replaces team-photo circles) */
.team-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}

@media (min-width: 768px) {
  .team-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-stat {
  text-align: center;
  padding: var(--space-md) var(--space-sm);
  background: white;
  border: 1px solid rgba(var(--creek-stone-rgb), 0.2);
  border-radius: 2px;
}

.team-stat__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 0.4em;
}

.team-stat__label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--aged-iron);
  line-height: 1.3;
}

/* --- Featured Article Section --- */
.article-feature {
  padding: var(--space-xl) 0;
}

.article-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .article-card {
    grid-template-columns: auto 1fr;
  }
}

.article-card__quote-mark {
  font-family: var(--font-display);
  font-size: 12rem;
  line-height: 0.7;
  color: var(--copper);
  opacity: 0.2;
  user-select: none;
  display: none;
}

@media (min-width: 768px) {
  .article-card__quote-mark {
    display: block;
  }
}

.article-card__content .eyebrow {
  color: var(--copper-light);
  margin-bottom: var(--space-xs);
}

.article-card__content h3 {
  color: white;
  margin-bottom: var(--space-sm);
}

.article-card__content p {
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-sm);
}

.article-card__content .link-arrow {
  color: var(--copper-light);
}
