/* ============================================
   ABOUT PAGE — about.css
   ============================================ */

/* Page header */
.about-page-header {
  padding: 120px 0 80px;
  border-bottom: 1px solid var(--border-color);
}

.about-page-eyebrow {
  display: block;
  font-family: monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.about-page-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  margin: 0 0 32px;
  max-width: 700px;
}

.about-page-founding {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  color: var(--fg-grey);
  line-height: 1.7;
  max-width: 620px;
}

/* Founder profiles — overlapping layout */
.founders-section {
  padding: 80px 0 120px;
  border-bottom: 1px solid var(--border-color);
}

.founders-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.founder-profile {
  display: flex;
  align-items: center;
  position: relative;
}

.founder-profile--reverse {
  flex-direction: row-reverse;
}

.founder-profile-photo-wrap {
  width: 420px;
  height: 420px;
  flex-shrink: 0;
  overflow: hidden;
  border-left: 3px solid var(--orange);
}

.founder-profile--reverse .founder-profile-photo-wrap {
  border-left: none;
  border-right: 3px solid var(--orange);
}

.founder-profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.4s ease;
}

.founder-profile:hover .founder-profile-photo {
  filter: grayscale(0%);
}

.founder-profile-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-active);
  padding: 36px;
  margin-left: -80px;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.founder-profile--reverse .founder-profile-card {
  margin-left: 0;
  margin-right: -80px;
}

.founder-profile-num {
  display: block;
  font-family: monospace;
  font-size: 0.7rem;
  color: var(--orange);
  opacity: 0.5;
  margin-bottom: 4px;
}

.founder-profile-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
}

.founder-profile-title {
  display: block;
  font-family: monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 4px;
}

.founder-profile-location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  opacity: 0.75;
}

.founder-profile-bio {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--fg-grey);
  line-height: 1.7;
  margin: 8px 0 16px;
}

.founder-profile-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--bg-black);
  border: 1px solid var(--border-active);
  color: #ffffff;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.founder-profile-social:hover {
  border-color: var(--orange);
  background: rgba(255, 85, 0, 0.06);
  color: var(--orange);
}

/* Back CTA */
.about-back-section {
  padding: 80px 0;
}

.about-back-cta {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid var(--border-active);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.about-back-cta:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* Mobile */
@media (max-width: 768px) {
  .founders-list {
    gap: 48px;
  }

  .founder-profile,
  .founder-profile--reverse {
    flex-direction: column;
  }

  .founder-profile-photo-wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-left: none;
    border-right: none;
    border-bottom: 3px solid var(--orange);
  }

  .founder-profile-card,
  .founder-profile--reverse .founder-profile-card {
    margin-left: 0;
    margin-right: 0;
    margin-top: -24px;
    padding: 32px 24px;
  }

  .about-page-header {
    padding: 80px 0 60px;
  }

  .founders-section {
    padding: 60px 0 80px;
  }
}
