/* =============================================
   PACKTECH — FOUNDERS SECTION
   ============================================= */

.founders-section {
  position: relative;
  width: 100%;
  background: #fdfaf5; /* Subtle off-white texture feel */
  padding: 100px 0;
  overflow: hidden;
}

/* ─── Vertical Background Text ──────────────── */
.founders-vertical-text {
  position: absolute;
  right: -5.5rem;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: 'Paytone One', sans-serif;
  font-size: 186px;
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1.39px #6a2900;
  z-index: 0;
  pointer-events: none;
  line-height: 0.8;
  white-space: nowrap;
}

/* ─── Header ────────────────────────────────── */
.founders-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 80px;
}

.founders-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(90, 53, 32, 0.6);
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.founders-title-wrap {
  position: relative;
  display: inline-block;
  padding: 20px 80px;
  margin-bottom: 25px;
}

.founders-torn-title {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: -1;
}

.founders-main-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: #5a3520;
  margin: 0;
}

.founders-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
}

.found-line {
  flex: 1;
  height: 1px;
  background: rgba(90, 53, 32, 0.3);
}

.found-icon {
  color: #5a3520;
  display: flex;
}

/* ─── Grid ──────────────────────────────────── */
.founders-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: flex-start;
  gap: 0;
}

.founder-center-divider {
  width: 1px;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(to bottom, transparent, rgba(90, 53, 32, 0.3), transparent);
  margin: 0 60px;
}

.founder-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.founder-card:last-child {
  margin-top: 100px;
}

/* ─── Portrait Photo ───────────────────────── */
.founder-photo-wrap {
  position: relative;
  width: 280px;
  margin-bottom: 40px;
  transition: transform 0.5s ease;
}

.founder-card:hover .founder-photo-wrap {
  transform: translateY(-10px);
}

.founder-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}



/* ─── Info & Quote ─────────────────────────── */
.founder-role {
  font-family: 'Inter', sans-serif;
  color: #b5815b;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.founder-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #1a0d05;
  margin: 0 0 20px;
}

.founder-quote {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(26, 13, 5, 0.7);
  max-width: 360px;
  font-style: italic;
}

/* ─── Responsive ────────────────────────────── */
@media (max-width: 1024px) {
  .founders-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  
  .founder-center-divider {
    display: none;
  }
  
  .founders-vertical-text {
    opacity: 0.4;
    right: -4rem;
  }
}

@media (max-width: 768px) {
  .founders-section {
    padding: 60px 0;
  }
  
  .founders-vertical-text {
    display: none;
  }
  
  .founder-name {
    font-size: 1.8rem;
  }
  
  .founder-photo-wrap {
    width: 240px;
  }
}
