/* ============================================================
   OUR STORY — ABOUT PAGE
   ============================================================ */

.about-main {
  background-color: var(--bg-app);
  min-height: 100vh;
}

/* --- Page Header ------------------------------------------- */

.about-header {
  background-color: var(--color-primary-base);
  color: var(--color-neutral-000);
  text-align: center;
  padding: 5rem var(--space-4) 3.5rem;
}

.about-header-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--space-3);
}

.about-header-subtitle {
  font-size: var(--text-lg);
  font-style: italic;
  opacity: 0.85;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Container --------------------------------------------- */

.about-container {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-8) var(--space-4) 6rem;
}

/* --- Founder Card ------------------------------------------ */

.founder-card {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  background-color: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-8);
}

.founder-photo-wrap {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--border-subtle);
}

.founder-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-name {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: var(--space-1);
}

.founder-title {
  font-size: var(--text-base);
  color: var(--color-primary-base);
  font-weight: 600;
}

/* --- Bio Sections ------------------------------------------ */

.about-sections {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.about-section {
  background-color: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.about-section-heading {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--color-primary-base);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: var(--text-sm);
}

.about-section-body {
  font-size: var(--text-base);
  color: var(--text-main);
  line-height: 1.8;
}

/* --- Responsive -------------------------------------------- */

@media (max-width: 560px) {
  .founder-card {
    flex-direction: column;
    text-align: center;
  }
}
