/* ==========================================================================
   FUNNELVALLEY — About Page Styles
   ========================================================================== */

/* ── Founder Section ───────────────────────────────────────────────────── */
.founder {
  padding-top: 0;
}

.founder__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--space-4xl);
  align-items: start;
}

/* Monogram Portrait */
.founder__portrait {
  position: sticky;
  top: 120px;
}

.founder__monogram {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--bg-alt);
  border: 2px solid var(--gold-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.founder__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

.founder__monogram::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  pointer-events: none;
  z-index: 2;
}

.founder__monogram::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(205, 159, 80, 0.06), transparent);
  pointer-events: none;
}

.founder__initials {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 8vw, 7rem);
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 0.08em;
  opacity: 0.25;
  position: relative;
  z-index: 1;
  user-select: none;
}

/* Story Editorial */
.founder__story .section-label {
  margin-bottom: var(--space-md);
}

.founder__story .section-title {
  font-size: clamp(1.5rem, 3vw, var(--text-3xl));
  line-height: var(--leading-snug);
}

.founder__story .divider {
  margin-bottom: var(--space-2xl);
}

.founder__prose {
  max-width: 60ch;
}

.founder__prose p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.founder__prose p:last-child {
  margin-bottom: 0;
}

.founder__closing {
  font-family: var(--font-heading);
  font-size: var(--text-lg) !important;
  font-style: italic;
  color: var(--text-primary) !important;
  margin-top: var(--space-xl) !important;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}


/* ── Expertise Section ─────────────────────────────────────────────────── */
.expertise {
  background: var(--bg-alt);
}

.expertise__grid .card {
  text-align: left;
}




/* ── Philosophy Section ────────────────────────────────────────────────── */
.philosophy {
  background: var(--white);
}

.philosophy__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3xl);
}

.philosophy__pillar {
  padding: var(--space-2xl) 0;
}

.philosophy__number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: var(--space-lg);
}

.philosophy__heading {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--leading-snug);
}

.philosophy__pillar .divider {
  margin-bottom: var(--space-lg);
}

.philosophy__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 40ch;
}


/* ── CTA Section ───────────────────────────────────────────────────────── */
.cta-section {
  background: var(--gold-subtle);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-section__inner {
  text-align: center;
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.cta-section__inner .section-label {
  margin-bottom: var(--space-md);
}

.cta-section__inner .section-title {
  margin-bottom: var(--space-lg);
}

.cta-section__inner .section-subtitle {
  margin: 0 auto var(--space-2xl);
}

.cta-section__inner .btn {
  margin-top: var(--space-md);
}


/* ── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 992px) {
  .founder__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .founder__portrait {
    position: static;
    max-width: 280px;
    margin: 0 auto;
  }

  .founder__story {
    text-align: left;
  }

  .philosophy__pillars {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .philosophy__pillar {
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--border);
  }

  .philosophy__pillar:last-child {
    border-bottom: none;
  }

  .philosophy__text {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .founder__portrait {
    max-width: 220px;
  }

  .founder__monogram {
    aspect-ratio: 3 / 4;
  }

  .founder__story .section-title br {
    display: none;
  }

  .founder__prose p {
    font-size: var(--text-sm);
  }

  .cta-section__inner .section-title {
    font-size: var(--text-2xl);
  }
}
