/* ==========================================================
   NINETY4MGMT — About Page Styles
   ========================================================== */

/* ── Story Section ── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-4xl);
  align-items: center;
}

.about-story__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
}

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-story__content h2 {
  margin-bottom: var(--space-lg);
}

.about-story__content p {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
  color: var(--text-muted);
}

/* ── Mission & Vision ── */
.mission-vision-card {
  height: 100%;
}

.mission-vision-card .value-card__icon {
  background: var(--orange-glow);
  color: var(--orange-mid);
}

.mission-vision-card .value-card__icon svg {
  stroke: var(--orange-mid);
}

/* ── Grid 5 ── */
.grid--5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
}

/* ── Founder Section ── */
.founder-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-3xl);
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-3xl);
  position: relative;
  overflow: hidden;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--brand-gradient-warm);
}

.founder-card__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}

.founder-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-card__title {
  font-size: var(--fs-small);
  color: var(--orange-mid);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.founder-card__bio {
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.founder-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.founder-tag {
  padding: 6px 16px;
  background: var(--orange-glow);
  border: 1px solid var(--border-orange);
  border-radius: 50px;
  font-size: var(--fs-xs);
  color: var(--gold-mid);
  font-weight: var(--fw-medium);
}

/* ── Why Choose Us ── */
.why-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.why-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Community & Network ── */
.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.community-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  transition: all var(--transition-smooth);
}

.community-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-4px);
}

.community-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--orange-glow);
  color: var(--orange-mid);
  margin-bottom: var(--space-lg);
}

.community-card h3 {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-sm);
  color: var(--text-white);
}

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

/* ── Responsive ── */
@media (max-width: 1200px) {
  .grid--5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .about-story,
  .founder-card {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .founder-card {
    padding: var(--space-2xl);
  }
}

@media (max-width: 768px) {
  .grid--5 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .community-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .grid--5 {
    grid-template-columns: 1fr;
  }
}

