/* ===== ABOUT PAGE — nav always solid since there's no dark hero ===== */
.nav-wrapper.scrolled .logo { color: var(--navy); }
.nav-wrapper.scrolled .nav-links a { color: var(--text-muted); }
.nav-wrapper.scrolled .nav-links a:hover { color: var(--blue); }
.nav-wrapper.scrolled .hamburger span { background: var(--navy); }

.nav-active {
  color: var(--blue) !important;
  font-weight: 600 !important;
}

/* ===== IMAGE PLACEHOLDER ===== */
.image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--blue-light);
  border: 2px dashed #93C5FD;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--blue);
}
.image-placeholder span {
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  opacity: 0.7;
}
.image-placeholder--portrait {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
}

/* ===== ABOUT HERO ===== */
.about-hero {
  padding: 140px 0 80px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.about-hero-inner {
  max-width: 720px;
}
.about-hero .section-tag {
  margin-bottom: 20px;
}
.about-hero h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 24px;
}
.about-hero p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 600px;
}

/* ===== MISSION ===== */
.about-mission {
  padding: 100px 0;
  background: var(--white);
}
.about-mission-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.mission-content .section-tag { margin-bottom: 16px; }
.mission-content h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.mission-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
.mission-values {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.value-icon {
  width: 28px;
  height: 28px;
  background: rgba(16,185,129,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}

/* ===== FOUNDERS ===== */
.founders {
  padding: 100px 0;
  background: var(--off-white);
}
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.founder-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: var(--transition);
}
.founder-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.founder-image-wrap {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.founder-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius);
  display: block;
}
.founder-info {
  padding: 24px 28px 28px;
}
.founder-info h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.founder-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 16px;
}
.founder-bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.founder-social {
  display: flex;
  gap: 10px;
}
.founder-social a {
  width: 36px;
  height: 36px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: var(--transition);
}
.founder-social a:hover {
  background: var(--blue);
  color: var(--white);
}

/* ===== WHY DFW ===== */
.why-dfw {
  padding: 100px 0;
  background: var(--white);
}
.why-dfw-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-dfw-content .section-tag { margin-bottom: 16px; }
.why-dfw-content h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.why-dfw-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-mission-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-dfw-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-dfw-image-wrap { order: -1; }
}

@media (max-width: 768px) {
  .about-hero { padding: 110px 0 60px; }
  .about-mission { padding: 60px 0; }
  .founders { padding: 60px 0; }
  .why-dfw { padding: 60px 0; }

  .founders-grid { grid-template-columns: 1fr; gap: 28px; }
  .founder-image-wrap { padding: 20px 20px 0; }
  .founder-info { padding: 18px 20px 24px; }
}

@media (max-width: 480px) {
  .about-hero h1 { font-size: 2rem; }
  .about-hero p { font-size: 16px; }
}
