/* ============================================
   ABOUT PAGE
   ============================================ */

.about-page {
  background: var(--bg);
}

/* Active nav link */
.nav-active {
  color: var(--text) !important;
}

/* ===================== ABOUT HERO ===================== */
.about-hero {
  padding: 160px 0 80px;
  border-bottom: 1px solid var(--border);
}

.about-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 1rem 0 2rem;
}

.about-hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 300;
  color: rgba(245,242,236,0.65);
  line-height: 1.8;
  max-width: 600px;
}

/* ===================== FOUNDERS ===================== */
.section-founders {
  background: var(--bg-2);
}

.about-body-text {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: rgba(245,242,236,0.65);
  line-height: 1.85;
  max-width: 780px;
  margin-bottom: clamp(48px, 6vw, 80px);
}

.founders-grid-large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
}

.founder-card-large {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.founder-photo-large {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-4);
  border: 1px solid var(--border);
}

.founder-photo-large .founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.founder-photo-large .founder-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--accent);
}

.founder-info-large {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.founder-name-large {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.01em;
}

.founder-ig-large {
  font-family: var(--font-label);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  transition: opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.founder-ig-large:hover { opacity: 0.7; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .about-hero { padding: 130px 0 60px; }

  .founders-grid-large {
    grid-template-columns: 1fr;
  }

  .founder-photo-large {
    aspect-ratio: 1/1;
  }
}
