/* =============================================================
   about.css — About / Founder page styles
   Extends /css/styles.css — do not duplicate base tokens here.
   Design authority: /project-docs/core/05_DESIGN_SYSTEM.md
   ============================================================= */


/* ─── ABOUT HERO ─────────────────────────────────────────── */
.about-hero {
  padding-block: 64px;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}
@media (min-width: 1024px) {
  .about-hero { padding-block: 84px; }
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .about-hero-inner {
    grid-template-columns: 260px 1fr;
    gap: 60px;
  }
}

.about-hero-photo img {
  border-radius: 20px;
  width: 200px;
  height: auto;
  object-fit: cover;
  box-shadow: var(--shadow-card);
  display: block;
}
@media (min-width: 768px) {
  .about-hero-photo img {
    width: 100%;
    max-width: 260px;
  }
}

.about-hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--color-body);
  line-height: 1.1;
  letter-spacing: -0.4px;
  margin-block: 10px 4px;
}

.about-founder-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-green-primary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 18px;
}

.about-hero-sub {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 22px;
}

.about-cred-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.about-cred-pill {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-green-primary);
  background: var(--color-green-soft-bg);
  border: 1px solid var(--color-border-green);
  border-radius: 100px;
  padding: 5px 14px;
  white-space: nowrap;
}

.about-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

@media (max-width: 479px) {
  .about-hero-cta .btn-primary,
  .about-hero-cta .btn-secondary {
    width: 100%;
    text-align: center;
  }
}


/* ─── ABOUT NARRATIVE (story sections) ───────────────────── */
.about-narrative {
  max-width: 760px;
  margin-inline: auto;
}

.about-narrative-heading {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--color-body);
  line-height: 1.2;
  margin-block: 10px 24px;
}

.about-narrative-body p {
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.78;
  margin-bottom: 18px;
}
.about-narrative-body p:last-child { margin-bottom: 0; }


/* ─── ABOUT STATS ROW ────────────────────────────────────── */
.about-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}
@media (min-width: 560px) {
  .about-stats-row { grid-template-columns: repeat(4, 1fr); }
}

.about-stat-value {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--color-green-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat-label {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.4;
}


/* ─── ABOUT VALUES GRID ──────────────────────────────────── */
.about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 36px;
}
@media (min-width: 560px) {
  .about-values-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .about-values-grid { grid-template-columns: repeat(4, 1fr); }
}

.about-value-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-value-icon { font-size: 26px; line-height: 1; }

.about-value-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-body);
  line-height: 1.3;
}

.about-value-desc {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  flex: 1;
}


/* ─── ABOUT CREDS BLOCK ──────────────────────────────────── */
.about-creds-block {
  max-width: 760px;
  margin-inline: auto;
}

.about-creds-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 36px;
}
@media (min-width: 560px) {
  .about-creds-list { grid-template-columns: 1fr 1fr; }
}

.about-cred-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.about-cred-check {
  color: var(--color-green-primary);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
  text-align: center;
}

.about-cred-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-body);
  line-height: 1.4;
}

.about-cred-sub {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-muted);
  margin-top: 3px;
  line-height: 1.4;
}

.about-legal-disclosure {
  margin-top: 28px;
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.65;
  padding: 16px 20px;
  background: var(--color-gray-light);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  max-width: 760px;
  margin-inline: auto;
}


/* ─── ABOUT TEAM BLOCK (Munib) ───────────────────────────── */
.about-team-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: flex-start;
  max-width: 700px;
  margin-inline: auto;
}
@media (min-width: 600px) {
  .about-team-block {
    grid-template-columns: 130px 1fr;
    gap: 36px;
  }
}

.about-team-photo img {
  border-radius: 14px;
  width: 110px;
  height: auto;
  object-fit: cover;
  box-shadow: var(--shadow-card);
}
@media (min-width: 600px) {
  .about-team-photo img { width: 100%; }
}

.about-team-name {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  color: var(--color-body);
  margin-block: 6px 4px;
}

.about-team-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-green-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.about-team-desc {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.7;
}
.about-team-desc + .about-team-desc { margin-top: 10px; }
