/* Section label */
#founders .section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

/* Heading */
#founders h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

/* Subline */
#founders .section-sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* Decorative divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
}

.divider span {
  display: block;
  height: 1px;
  width: 60px;
  background: var(--border);
}

.divider::before,
.divider::after {
  display: none;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

#founders {
  width: 100%;
  max-width: 1100px;
  padding: 80px 40px 100px;
  text-align: center;
  margin: 0 auto; /* ← add this */
}

.options {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 90%;
  max-width: 1000px;
  height: 300px;
  margin: 0 auto 80px;
}

.option {
  flex: 1;
  background-image: var(--optionImage);
  background-size: cover;
  background-position: var(--optionPos, center);
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.option::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  pointer-events: none;
  z-index: 1;
}

.option.active {
    background-size: 100%;
    background-repeat: no-repeat;
  flex: 5;
}

.option:not(.active) {
  filter: brightness(0.7);
}

/* ── Full label (visible on active) ── */
.option .label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
  z-index: 2;
  white-space: nowrap;
}

.option.active .label {
  opacity: 1;
  transform: translateY(0);
}

/* ── Vertical position text on collapsed options ── */
.option .label .collapsed-name {
  display: none;
}

.option:not(.active) .label {
  opacity: 1;
  transform: none;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  justify-content: center;
  align-items: center;
}

.option:not(.active) .label .icon,
.option:not(.active) .label .info {
  display: none;
}

.option:not(.active) .label .collapsed-name {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.option .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 36px;
  min-height: 36px;
  border-radius: 50%;
  background-color: var(--orange);
  color: white;
  font-size: 0.85rem;
}

.option .info {
  display: flex;
  flex-direction: column;
}

.option .info .main {
  font-size: 1.1rem;
  font-weight: bold;
}

.option .info .sub {
  font-size: 0.78rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .options {
    flex-direction: column;
    height: 500px;
  }

  .option:not(.active) .label .collapsed-name {
    writing-mode: horizontal-tb;
  }
}
