/* ============================================================
   07-about.css — about section
   Module: <section id="about">
   Two-column: text left, card/values right.
   White background. Clean, human, direct.
   ============================================================ */

#about {
  background: var(--c-white);
  border-top: 1px solid var(--c-line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-7);
  align-items: start;
}

/* ---- Left: story copy ---- */
.about-copy .eyebrow { color: var(--c-navy); }
.about-copy h2 { color: var(--c-navy); margin-bottom: var(--s-4); }
.about-copy p {
  color: var(--c-muted);
  font-size: 1rem;
  line-height: 1.75;
}
.about-copy p strong { color: var(--c-black); }

.about-values {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-top: var(--s-5);
}
.about-value {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
}
.about-value-icon {
  width: 40px; height: 40px;
  background: var(--c-navy);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.about-value-icon svg {
  width: 20px; height: 20px;
  stroke: var(--c-yellow);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-value-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-black);
  margin-bottom: 2px;
}
.about-value-text span {
  font-size: 0.88rem;
  color: var(--c-muted);
}

/* ---- Right: card with quick bio ---- */
.about-card {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: var(--s-5);
  position: sticky;
  top: 90px;
}
.about-card-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 25%;
  border-radius: var(--radius);
  display: block;
  margin: calc(var(--s-5) * -1) calc(var(--s-5) * -1) var(--s-4);
  width: calc(100% + var(--s-5) * 2);
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.about-card-name {
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--c-line);
}
.about-card-name strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-navy);
}
.about-card-name span {
  font-size: 0.82rem;
  color: var(--c-muted);
}

.about-fact-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.about-fact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--c-black-soft);
}
.about-fact-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-muted);
  min-width: 80px;
  padding-top: 2px;
  flex-shrink: 0;
}
.about-fact-value { color: var(--c-black); font-weight: 500; }

.about-card-cta {
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-line);
}
.about-card-cta .btn { width: 100%; justify-content: center; }

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .about-card { position: static; }
}
