/* ==========================================================================
   About Us — Page-Specific Styles
   ========================================================================== */

/* ── Hero background position override ── */
.hero--inner .hero__bg {
  background-position: center 30%;
}

/* ── Editorial Hero — solid dark, oversized serif, orange rule ── */
.hero--editorial {
  background: var(--color-dark);
  min-height: 50vh;
}

.hero--editorial h1 {
  font-size: clamp(2.75rem, 5vw + 1rem, 5rem);
  line-height: 1.1;
}

.hero__rule {
  width: 80px;
  height: 3px;
  background: var(--color-primary);
  margin: var(--space-lg) auto;
}

/* ── Our Story: Split Text ── */
.split__text h2 {
  margin-bottom: var(--space-md);
}

.split__text p {
  color: var(--color-muted);
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  margin-bottom: var(--space-md);
}

.split__text p:last-child {
  margin-bottom: 0;
}

/* ── Editorial card treatment (split--divided) ── */
.split--divided {
  align-items: stretch;
  gap: var(--space-2xl);
}

.split--divided .split__text {
  position: relative;
  padding: var(--space-2xl) var(--space-xl);
  border-radius: 12px;
  border: 1px solid rgba(255, 99, 16, 0.12);
  background: rgba(255, 99, 16, 0.015);
  transition: all 0.4s ease;
  overflow: hidden;
}

.split--divided .split__text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-primary);
  opacity: 0.4;
  transition: opacity 0.4s ease;
}

.split--divided .split__text:hover {
  border-color: rgba(255, 99, 16, 0.3);
  background: rgba(255, 99, 16, 0.03);
  box-shadow: 0 8px 40px rgba(255, 99, 16, 0.08);
  transform: translateY(-2px);
}

.split--divided .split__text:hover::before {
  opacity: 1;
}

/* ── Founder Quote Card ── */
.founder-quote {
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-quote__card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border-top: 4px solid var(--color-primary);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.founder-quote__card blockquote {
  position: relative;
}

.founder-quote__card blockquote::before {
  content: '\201C';
  font-size: 6rem;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--color-primary);
  opacity: 0.15;
  line-height: 1;
  position: absolute;
  top: -2rem;
  left: -0.5rem;
  pointer-events: none;
}

.founder-quote__card blockquote p {
  font-size: var(--fs-body-lg);
  font-style: italic;
  line-height: var(--lh-body);
  color: var(--color-dark);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.founder-quote__card blockquote cite {
  display: block;
  font-size: var(--fs-small);
  font-style: normal;
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
}

/* ── Team Cards ── */
.team-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: all var(--transition-base);
}

.team-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.team-card__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: var(--space-lg);
  background: var(--color-dark);
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Fallback for cards still using SVG placeholder */
.team-card__image svg {
  width: 56px;
  height: 56px;
  color: var(--color-muted);
  opacity: 0.5;
}

.team-card h4 {
  font-size: var(--fs-h4);
  color: var(--color-dark);
  margin-bottom: var(--space-xs);
}

.team-card__title {
  display: block;
  font-size: var(--fs-small);
  color: var(--color-primary);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-md);
}

.team-card p {
  font-size: var(--fs-small);
  color: var(--color-muted);
  line-height: var(--lh-body);
}

/* ── FAQ Accordion Spacing ── */
.section--alt .section-header--center h2 {
  color: var(--color-dark);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid--4 .team-card {
    padding: var(--space-lg);
  }

  .team-card__image {
    height: 160px;
  }
}

@media (max-width: 768px) {
  .founder-quote__card {
    padding: var(--space-xl);
  }

  .founder-quote__card blockquote::before {
    font-size: 4rem;
    top: -1.25rem;
  }

  .team-card__image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .founder-quote__card {
    padding: var(--space-lg);
  }

  .founder-quote__card blockquote p {
    font-size: var(--fs-body);
  }
}