/*
 * ANTI-FORMULA
 * About page
 */

.about-hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 120px;
  padding-bottom: 80px;
}
.about-hero-eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark-mid);
  margin-bottom: 32px;
}
.about-hero-headline {
  max-width: 800px;
}

.about-section {
  border-top: 1px solid var(--dark-rule);
}
.about-section--light {
  background: var(--lab-white);
  color: var(--specimen-black);
  border-top-color: var(--hairline);
}
.about-section--light .section-num { color: var(--muted); }
.about-section--light .about-body p { color: var(--specimen-black); }

.about-body {
  max-width: 640px;
}
.about-body p {
  color: var(--dark-body);
  margin-bottom: 24px;
  line-height: 1.65;
}
.about-body p:last-child { margin-bottom: 0; }

.about-body strong {
  font-weight: 600;
  color: var(--lab-white);
}
.about-section--light .about-body strong {
  color: var(--specimen-black);
}

.about-pullquote {
  max-width: 640px;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-top: 48px;
  margin-bottom: 48px;
}

/* Founder */
.founder-block {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-top: 48px;
}
.founder-img {
  width: 160px;
  height: 160px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}
.founder-info {
  flex: 1;
}
.founder-name {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 4px;
}
.founder-role {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-mid);
  margin-bottom: 16px;
}
.about-section--light .founder-role { color: var(--muted); }
.founder-bio p {
  font-family: var(--f-serif);
  font-size: 16px;
  color: var(--dark-body);
  line-height: 1.65;
  margin-bottom: 16px;
}
.about-section--light .founder-bio p { color: var(--muted); }

/* Close */
.about-close {
  text-align: center;
  padding-top: 96px;
  padding-bottom: 64px;
}
.about-close-line {
  font-family: var(--f-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--dark-body);
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-hero { min-height: auto; padding-top: 100px; }
  .founder-block { flex-direction: column; gap: 24px; }
  .founder-img { width: 120px; height: 120px; }
  .about-close { text-align: left; }
  .about-close-line { margin: 0 0 24px; }
}
